From 268a9fee283869597224b327261b2d14f54117ec Mon Sep 17 00:00:00 2001
From: Piotr Gawron <piotr.gawron@uni.lu>
Date: Tue, 20 Feb 2018 12:07:41 +0100
Subject: [PATCH] anonymous user cannot access admin page

---
 frontend-js/src/main/js/minerva.js            | 12 +++-
 .../src/test/js/gui/CommentDialog-test.js     | 17 +++---
 .../js/gui/admin/AddProjectDialog-test.js     | 10 ++--
 frontend-js/src/test/js/helper.js             |  7 +++
 frontend-js/src/test/js/minerva-test.js       | 59 ++++++++++++-------
 .../comments/models/all/token=ADMIN_TOKEN_ID& |  1 +
 .../sample/models/all/token=ADMIN_TOKEN_ID&   |  1 +
 ...&publicOverlay=false&token=ADMIN_TOKEN_ID& |  1 +
 .../projects/sample/token=ADMIN_TOKEN_ID&     |  1 +
 .../apiCalls/projects/token=ADMIN_TOKEN_ID&   |  1 +
 frontend-js/testFiles/apiCalls/users/admin    |  1 -
 ...ad.cache-data=false&token=ADMIN_TOKEN_ID&} |  0
 ...oad.cache-data=true&token=ADMIN_TOKEN_ID&} |  0
 .../users/admin/token=ADMIN_TOKEN_ID&         |  1 +
 .../apiCalls/users/token=ADMIN_TOKEN_ID&      |  1 +
 web/src/main/webapp/admin.xhtml               |  6 +-
 16 files changed, 76 insertions(+), 43 deletions(-)
 create mode 100644 frontend-js/testFiles/apiCalls/projects/sample/comments/models/all/token=ADMIN_TOKEN_ID&
 create mode 100644 frontend-js/testFiles/apiCalls/projects/sample/models/all/token=ADMIN_TOKEN_ID&
 create mode 100644 frontend-js/testFiles/apiCalls/projects/sample/overlays/creator=admin&publicOverlay=false&token=ADMIN_TOKEN_ID&
 create mode 100644 frontend-js/testFiles/apiCalls/projects/sample/token=ADMIN_TOKEN_ID&
 create mode 100644 frontend-js/testFiles/apiCalls/projects/token=ADMIN_TOKEN_ID&
 delete mode 100644 frontend-js/testFiles/apiCalls/users/admin
 rename frontend-js/testFiles/apiCalls/users/admin.updatePreferences/{PATCH_preferences.project-upload.cache-data=false& => PATCH_preferences.project-upload.cache-data=false&token=ADMIN_TOKEN_ID&} (100%)
 rename frontend-js/testFiles/apiCalls/users/admin.updatePreferences/{PATCH_preferences.project-upload.cache-data=true& => PATCH_preferences.project-upload.cache-data=true&token=ADMIN_TOKEN_ID&} (100%)
 create mode 100644 frontend-js/testFiles/apiCalls/users/admin/token=ADMIN_TOKEN_ID&
 create mode 100644 frontend-js/testFiles/apiCalls/users/token=ADMIN_TOKEN_ID&

diff --git a/frontend-js/src/main/js/minerva.js b/frontend-js/src/main/js/minerva.js
index 6f87777123..05e30220af 100644
--- a/frontend-js/src/main/js/minerva.js
+++ b/frontend-js/src/main/js/minerva.js
@@ -367,6 +367,10 @@ function create(params) {
 
 }
 
+function createLogin(params) {
+
+}
+
 function createExport(params) {
   params = modifyParamsForTouchInterface(params);
   if (!(params instanceof CustomMapOptions)) {
@@ -402,6 +406,10 @@ function createAdmin(params) {
   params.getElement().style.display = "table";
   params.getElement().innerHTML = "<div style='vertical-align:middle;display:table-cell;text-align: center'>"
     + "<img src='resources/images/icons/ajax-loader.gif'/>" + "</div>";
+  if (ServerConnector.getSessionData(null).getLogin() === "anonymous") {
+    window.location.href = ServerConnector.getServerBaseUrl() + "login.xhtml?from=" + encodeURI(window.location.href);
+    return Promise.resolve()
+  }
 
   var result;
   // make sure that we are logged in
@@ -421,11 +429,11 @@ function createAdmin(params) {
 
 var minerva = {
   create: create,
+  createLogin: createLogin,
   createExport: createExport,
   createAdmin: createAdmin,
   ServerConnector: OriginalServerConnector,
-  GuiConnector: GuiConnector,
-  DualListbox: require('dual-listbox').DualListbox
+  GuiConnector: GuiConnector
 };
 
 module.exports = minerva;
diff --git a/frontend-js/src/test/js/gui/CommentDialog-test.js b/frontend-js/src/test/js/gui/CommentDialog-test.js
index 26932c91ec..4bf8cb9433 100644
--- a/frontend-js/src/test/js/gui/CommentDialog-test.js
+++ b/frontend-js/src/test/js/gui/CommentDialog-test.js
@@ -47,16 +47,13 @@ describe('CommentDialog', function () {
       });
     });
     it('logged user', function () {
-      var map;
-      var dialog;
-      return ServerConnector.login("admin", "admin").then(function () {
-        map = helper.createCustomMap();
-        dialog = new CommentDialog({
-          element: testDiv,
-          customMap: map
-        });
-        return dialog.open([]);
-      }).then(function () {
+      helper.loginAsAdmin();
+      var map = helper.createCustomMap();
+      var dialog = new CommentDialog({
+        element: testDiv,
+        customMap: map
+      });
+      return dialog.open([]).then(function () {
         assert.ok($(testDiv).dialog('isOpen'));
         dialog.destroy();
       });
diff --git a/frontend-js/src/test/js/gui/admin/AddProjectDialog-test.js b/frontend-js/src/test/js/gui/admin/AddProjectDialog-test.js
index 001ebcf429..79ce43f690 100644
--- a/frontend-js/src/test/js/gui/admin/AddProjectDialog-test.js
+++ b/frontend-js/src/test/js/gui/admin/AddProjectDialog-test.js
@@ -15,13 +15,12 @@ var assert = chai.assert;
 
 describe('AddProjectDialog', function () {
   it('init', function () {
+    helper.loginAsAdmin();
     var dialog = new AddProjectDialog({
       element: testDiv,
       customMap: null
     });
-    return ServerConnector.login("admin", "admin").then(function () {
-      return dialog.init();
-    }).then(function () {
+    return dialog.init().then(function () {
       assert.ok(dialog.getNotifyEmail() !== "");
       assert.equal(0, logger.getWarnings().length);
       return dialog.destroy();
@@ -29,13 +28,12 @@ describe('AddProjectDialog', function () {
   });
 
   it('onUserPreferencesChange', function () {
+    helper.loginAsAdmin();
     var dialog = new AddProjectDialog({
       element: testDiv,
       customMap: null
     });
-    return ServerConnector.login("admin", "admin").then(function () {
-      return dialog.init();
-    }).then(function () {
+    return dialog.init().then(function () {
       dialog.setCache(false);
       assert.notOk(dialog.isCache());
       dialog.setCache(true);
diff --git a/frontend-js/src/test/js/helper.js b/frontend-js/src/test/js/helper.js
index c02367b163..682e21268d 100644
--- a/frontend-js/src/test/js/helper.js
+++ b/frontend-js/src/test/js/helper.js
@@ -25,6 +25,7 @@ var Reaction = require("../../main/js/map/data/Reaction");
 var SbmlFunction = require("../../main/js/map/data/SbmlFunction");
 var SbmlParameter = require("../../main/js/map/data/SbmlParameter");
 var SearchDbOverlay = require("../../main/js/map/overlay/SearchDbOverlay");
+var ServerConnector = require("../../main/js/ServerConnector");
 var User = require("../../main/js/map/data/User");
 
 var Cookies = require('js-cookie');
@@ -436,6 +437,12 @@ Helper.prototype.createKineticLaw = function () {
   });
 };
 
+Helper.prototype.loginAsAdmin = function () {
+  ServerConnector.getSessionData().setLogin("admin");
+  ServerConnector.getSessionData().setToken("ADMIN_TOKEN_ID");
+};
+
+
 
 Helper.EPSILON = 1e-6;
 
diff --git a/frontend-js/src/test/js/minerva-test.js b/frontend-js/src/test/js/minerva-test.js
index eeb589fc2a..e9a70470e4 100644
--- a/frontend-js/src/test/js/minerva-test.js
+++ b/frontend-js/src/test/js/minerva-test.js
@@ -20,20 +20,20 @@ describe('minerva global', function () {
     global.ServerConnector = ServerConnectorMock;
   });
 
-  describe('create', function() {
-    it('default', function() {
+  describe('create', function () {
+    it('default', function () {
       var options = null;
-      return ServerConnectorMock.getProject().then(function(project) {
+      return ServerConnectorMock.getProject().then(function (project) {
         options = helper.createCustomMapOptions(project);
 
         return minerva.create(options);
-      }).then(function(result) {
+      }).then(function (result) {
         assert.ok(result);
         assert.equal(logger.getWarnings().length, 0);
         return result.destroy();
       });
     });
-    it('invalid projectId', function() {
+    it('invalid projectId', function () {
       var options = {
         projectId: "unknownId",
         element: testDiv
@@ -64,9 +64,9 @@ describe('minerva global', function () {
   });
 
 
-  it("showComments", function() {
+  it("showComments", function () {
     var options = null;
-    var map ;
+    var map;
     return ServerConnectorMock.getProject().then(function (project) {
       options = helper.createCustomMapOptions(project);
       return minerva.create(options);
@@ -75,7 +75,7 @@ describe('minerva global', function () {
       var commentCheckbox = document.getElementsByName("commentCheckbox")[0];
       commentCheckbox.checked = true;
       return commentCheckbox.onclick();
-    }).then(function() {
+    }).then(function () {
       assert.ok(ServerConnectorMock.getSessionData(options.getProject()).getShowComments());
       return map.destroy();
     });
@@ -153,7 +153,7 @@ describe('minerva global', function () {
 
   it('create restricted map', function () {
     var originalFunction = ServerConnectorMock.getProject;
-    ServerConnectorMock.getProject=function(){
+    ServerConnectorMock.getProject = function () {
       return Promise.reject(new SecurityError("Access denied."));
     };
     helper.setUrl("http://test/?id=restricted_sample");
@@ -167,14 +167,14 @@ describe('minerva global', function () {
       assert.equal(null, map);
     }).catch(function (e) {
       assert.ok(e.message.indexOf("Access denied") >= 0);
-    }).finally(function(){
+    }).finally(function () {
       ServerConnectorMock.getProject = originalFunction;
     });
   });
 
-  it('create with layout from session data', function() {
+  it('create with layout from session data', function () {
     var layout;
-    return ServerConnectorMock.getProject().then(function(project) {
+    return ServerConnectorMock.getProject().then(function (project) {
       var options = helper.createCustomMapOptions(project);
 
       layout = project.getModel().getLayouts()[1];
@@ -245,7 +245,7 @@ describe('minerva global', function () {
     return ServerConnectorMock.getProject().then(function (project) {
       var options = helper.createCustomMapOptions(project);
       options.setCustomTouchInterface(true);
-      return minerva.create(options).then(function(result) {
+      return minerva.create(options).then(function (result) {
         assert.ok(result);
         return result.destroy();
       });
@@ -265,16 +265,31 @@ describe('minerva global', function () {
     });
   });
 
-  it('create Admin', function () {
-    var options = null;
-    return ServerConnectorMock.getProject().then(function (project) {
-      options = helper.createCustomMapOptions(project);
+  describe('create Admin', function () {
+    it('as admin', function () {
+      helper.loginAsAdmin();
+      var options = null;
+      var url = window.location.href;
+      return ServerConnectorMock.getProject().then(function (project) {
+        options = helper.createCustomMapOptions(project);
 
-      return minerva.createAdmin(options);
-    }).then(function (result) {
-      assert.ok(result);
-      assert.equal(logger.getWarnings().length, 0);
-      result.destroy();
+        return minerva.createAdmin(options);
+      }).then(function (result) {
+        assert.ok(result);
+        assert.equal(logger.getWarnings().length, 0);
+        assert.equal(url, window.location.href);
+        result.destroy();
+      });
+    });
+    it('as anonymous', function () {
+      var options = null;
+      return ServerConnectorMock.getProject().then(function (project) {
+        options = helper.createCustomMapOptions(project);
+
+        return minerva.createAdmin(options);
+      }).then(function (result) {
+        assert.notOk(result);
+      });
     });
   });
   it('getProject', function () {
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/comments/models/all/token=ADMIN_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/comments/models/all/token=ADMIN_TOKEN_ID&
new file mode 100644
index 0000000000..69c32f9cf8
--- /dev/null
+++ b/frontend-js/testFiles/apiCalls/projects/sample/comments/models/all/token=ADMIN_TOKEN_ID&
@@ -0,0 +1 @@
+[{"elementId":"322.43,28.04","pinned":false,"modelId":15781,"author":"qwe","icon":"icons/comment.png","title":"Comment (coord: 322.43, 28.04)","type":"POINT","content":"","coord":{"x":322.4267578125,"y":28.037109374991598},"removed":false,"removeReason":"","id":4512,"email":"asd"},{"elementId":"1108.74,525.06","pinned":false,"modelId":15781,"author":"qwe","icon":"icons/comment.png","title":"Comment (coord: 1108.74, 525.06)","type":"POINT","content":"","coord":{"x":1108.740234375,"y":525.0585937499997},"removed":false,"removeReason":"","id":4513,"email":"asdxzf"},{"elementId":329166,"pinned":false,"modelId":15781,"author":"cnc","icon":"icons/comment.png","title":"CNC","type":"ALIAS","content":"cnc","coord":{"x":70.0,"y":269.0},"removed":false,"removeReason":"","id":4515,"email":"cnc"},{"elementId":329173,"pinned":false,"modelId":15781,"author":"s1","icon":"icons/comment.png","title":"s1","type":"ALIAS","content":"s1","coord":{"x":52.0,"y":26.0},"removed":false,"removeReason":"","id":4516,"email":""},{"elementId":329175,"pinned":false,"modelId":15781,"author":"","icon":"icons/comment.png","title":"s13","type":"ALIAS","content":"s13","coord":{"x":416.0,"y":250.0},"removed":false,"removeReason":"","id":4517,"email":"s13"},{"elementId":"241.01,372.35","pinned":true,"modelId":15781,"author":"","icon":"icons/comment.png","title":"Comment (coord: 241.01, 372.35)","type":"POINT","content":"","coord":{"x":241.00605157081114,"y":372.34797385543044},"removed":true,"removeReason":"","id":4290,"email":""},{"elementId":"216.65,370.00","pinned":false,"modelId":15781,"author":"","icon":"icons/comment.png","title":"Comment (coord: 216.65, 370.00)","type":"POINT","content":"","coord":{"x":216.65,"y":370.0},"removed":false,"removeReason":"","id":4671,"email":""},{"elementId":"214.10,368.00","pinned":true,"modelId":15781,"author":"a","icon":"icons/comment.png","title":"Comment (coord: 214.10, 368.00)","type":"POINT","content":"","coord":{"x":214.1,"y":368.0},"removed":false,"removeReason":"","id":4672,"email":"z"},{"elementId":"82.84,598.00","pinned":true,"modelId":15781,"author":"admin ","icon":"icons/comment.png","title":"Comment (coord: 82.84, 598.00)","type":"POINT","content":"cont","coord":{"x":82.84,"y":598.0},"removed":true,"removeReason":"","id":4946,"email":"piotr.gawron@uni.lu"},{"elementId":"219.20,112.00","pinned":true,"modelId":15781,"author":"admin ","icon":"icons/comment.png","title":"Comment (coord: 219.20, 112.00)","type":"POINT","content":"cont","coord":{"x":219.2,"y":112.0},"removed":true,"removeReason":"","id":4945,"email":"piotr.gawron@uni.lu"},{"elementId":"386.15,494.00","pinned":false,"modelId":15781,"author":"x","icon":"icons/comment.png","title":"Comment (coord: 386.15, 494.00)","type":"POINT","content":"","coord":{"x":386.15,"y":494.0},"removed":true,"removeReason":"","id":4944,"email":""},{"elementId":"497.02,465.00","pinned":false,"modelId":15781,"author":"x","icon":"icons/comment.png","title":"Comment (coord: 497.02, 465.00)","type":"POINT","content":"","coord":{"x":497.02,"y":465.0},"removed":true,"removeReason":"","id":4943,"email":""},{"elementId":"457.51,472.00","pinned":true,"modelId":15781,"author":"xxx3","icon":"icons/comment.png","title":"Comment (coord: 457.51, 472.00)","type":"POINT","content":"","coord":{"x":457.51,"y":472.0},"removed":true,"removeReason":"","id":4942,"email":""},{"elementId":"681.81,523.00","pinned":true,"modelId":15781,"author":"xxx3","icon":"icons/comment.png","title":"Comment (coord: 681.81, 523.00)","type":"POINT","content":"","coord":{"x":681.81,"y":523.0},"removed":true,"removeReason":"","id":4941,"email":""},{"elementId":"737.89,405.00","pinned":true,"modelId":15781,"author":"xxx3","icon":"icons/comment.png","title":"Comment (coord: 737.89, 405.00)","type":"POINT","content":"","coord":{"x":737.89,"y":405.0},"removed":true,"removeReason":"","id":4940,"email":""},{"elementId":"484.28,583.00","pinned":true,"modelId":15781,"author":"xxx2","icon":"icons/comment.png","title":"Comment (coord: 484.28, 583.00)","type":"POINT","content":"","coord":{"x":484.28,"y":583.0},"removed":true,"removeReason":"","id":4939,"email":""},{"elementId":"144.01,518.00","pinned":true,"modelId":15781,"author":"xxx","icon":"icons/comment.png","title":"Comment (coord: 144.01, 518.00)","type":"POINT","content":"","coord":{"x":144.01,"y":518.0},"removed":true,"removeReason":"","id":4938,"email":""},{"elementId":153503,"pinned":true,"modelId":15781,"author":"1","icon":"icons/comment.png","title":"Reaction re27","type":"REACTION","content":"","coord":{"x":888.3333333333334,"y":66.9999999999998},"removed":true,"removeReason":"","id":4674,"email":"2"},{"elementId":329178,"pinned":true,"modelId":15781,"author":"","icon":"icons/comment.png","title":"s23","type":"ALIAS","content":"","coord":{"x":735.0,"y":259.0},"removed":true,"removeReason":"","id":4673,"email":""},{"elementId":"224.30,556.00","pinned":false,"modelId":15781,"author":"admin ","icon":"icons/comment.png","title":"Comment (coord: 224.30, 556.00)","type":"POINT","content":"x","coord":{"x":224.3,"y":556.0},"removed":false,"removeReason":"","id":4947,"email":"piotr.gawron@uni.lu"},{"elementId":"291.84,559.00","pinned":false,"modelId":15781,"author":"admin ","icon":"icons/comment.png","title":"Comment (coord: 291.84, 559.00)","type":"POINT","content":"x","coord":{"x":291.84,"y":559.0},"removed":false,"removeReason":"","id":4948,"email":"piotr.gawron@uni.lu"},{"elementId":"345.37,546.00","pinned":false,"modelId":15781,"author":"admin ","icon":"icons/comment.png","title":"Comment (coord: 345.37, 546.00)","type":"POINT","content":"y","coord":{"x":345.37,"y":546.0},"removed":false,"removeReason":"","id":4949,"email":"piotr.gawron@uni.lu"},{"elementId":"458.79,598.00","pinned":false,"modelId":15781,"author":"admin ","icon":"icons/comment.png","title":"Comment (coord: 458.79, 598.00)","type":"POINT","content":"z","coord":{"x":458.79,"y":598.0},"removed":false,"removeReason":"","id":4950,"email":"piotr.gawron@uni.lu"},{"elementId":"786.31,586.00","pinned":false,"modelId":15781,"author":"admin ","icon":"icons/comment.png","title":"Comment (coord: 786.31, 586.00)","type":"POINT","content":"q","coord":{"x":786.31,"y":586.0},"removed":false,"removeReason":"","id":4951,"email":"piotr.gawron@uni.lu"},{"elementId":"570.94,474.00","pinned":true,"modelId":15781,"author":"admin ","icon":"icons/comment.png","title":"Comment (coord: 570.94, 474.00)","type":"POINT","content":"p","coord":{"x":570.94,"y":474.0},"removed":false,"removeReason":"","id":4952,"email":"piotr.gawron@uni.lu"},{"elementId":"607.90,463.00","pinned":true,"modelId":15781,"author":" s","icon":"icons/comment.png","title":"Comment (coord: 607.90, 463.00)","type":"POINT","content":"","coord":{"x":607.9,"y":463.0},"removed":false,"removeReason":"","id":4956,"email":""},{"elementId":"607.90,463.00","pinned":true,"modelId":15781,"author":" s","icon":"icons/comment.png","title":"Comment (coord: 607.90, 463.00)","type":"POINT","content":"","coord":{"x":607.9,"y":463.0},"removed":false,"removeReason":"","id":4957,"email":""},{"elementId":"607.90,463.00","pinned":true,"modelId":15781,"author":" s","icon":"icons/comment.png","title":"Comment (coord: 607.90, 463.00)","type":"POINT","content":"asd","coord":{"x":607.9,"y":463.0},"removed":false,"removeReason":"","id":4958,"email":""},{"elementId":"71.37,36.00","pinned":false,"modelId":15781,"author":"admin ","icon":"icons/comment.png","title":"Comment (coord: 71.37, 36.00)","type":"POINT","content":"test","coord":{"x":71.37,"y":36.0},"removed":false,"removeReason":"","id":4961,"email":"piotr.gawron@uni.lu"},{"elementId":329173,"pinned":false,"modelId":15781,"author":"admin ","icon":"icons/comment.png","title":"s1","type":"ALIAS","content":"test","coord":{"x":52.0,"y":26.0},"removed":false,"removeReason":"","id":4962,"email":""},{"elementId":329179,"pinned":false,"modelId":15781,"author":"admin ","icon":"icons/comment.png","title":"s2","type":"ALIAS","content":"test2","coord":{"x":205.0,"y":68.0},"removed":false,"removeReason":"","id":4963,"email":""},{"elementId":329157,"pinned":true,"modelId":15781,"author":"admin ","icon":"icons/comment.png","title":"s3","type":"ALIAS","content":"test3","coord":{"x":329.0,"y":59.0},"removed":false,"removeReason":"","id":4964,"email":"piotr.gawron@uni.lu"},{"elementId":153510,"pinned":false,"modelId":15781,"author":"admin ","icon":"icons/comment.png","title":"Reaction re5","type":"REACTION","content":"xxx","coord":{"x":128.5,"y":47.0},"removed":false,"removeReason":"","id":4965,"email":"piotr.gawron@uni.lu"},{"elementId":"477.91,184.00","pinned":false,"modelId":15781,"author":"","icon":"icons/comment.png","title":"Comment (coord: 477.91, 184.00)","type":"POINT","content":"","coord":{"x":477.91,"y":184.0},"removed":false,"removeReason":"","id":4966,"email":""},{"elementId":"1.00,200.00","pinned":true,"modelId":15781,"author":"test","icon":"icons/comment.png","title":"Comment (coord: 1.00, 200.00)","type":"POINT","content":"hal","coord":{"x":1.0,"y":200.0},"removed":true,"removeReason":"","id":4506,"email":"email"},{"elementId":329158,"pinned":false,"modelId":15781,"author":"complex12","icon":"icons/comment.png","title":"s12","type":"ALIAS","content":"complex12","coord":{"x":321.5,"y":289.0},"removed":true,"removeReason":"","id":4514,"email":""},{"elementId":"643.96,144.09","pinned":true,"modelId":15781,"author":"admin ","icon":"icons/comment.png","title":"Comment (coord: 643.96, 144.09)","type":"POINT","content":"dfgfdgdf","coord":{"x":643.9579684828551,"y":144.0935652248765},"removed":true,"removeReason":"","id":4291,"email":""},{"elementId":"100.00,200.00","pinned":true,"modelId":15781,"author":"test","icon":"icons/comment.png","title":"Comment (coord: 100.00, 200.00)","type":"POINT","content":"hal","coord":{"x":100.0,"y":200.0},"removed":true,"removeReason":"","id":4507,"email":"email"},{"elementId":"1.00,200.00","pinned":true,"modelId":15781,"author":"test","icon":"icons/comment.png","title":"Comment (coord: 1.00, 200.00)","type":"POINT","content":"hal","coord":{"x":1.0,"y":200.0},"removed":true,"removeReason":"","id":4508,"email":"email"},{"elementId":"1.00,200.00","pinned":true,"modelId":15781,"author":"test","icon":"icons/comment.png","title":"Comment (coord: 1.00, 200.00)","type":"POINT","content":"hal","coord":{"x":1.0,"y":200.0},"removed":true,"removeReason":"","id":4509,"email":"email"},{"elementId":"883.81,380.41","pinned":true,"modelId":15781,"author":"xxx","icon":"icons/comment.png","title":"Comment (coord: 883.81, 380.41)","type":"POINT","content":"","coord":{"x":883.81,"y":380.41},"removed":true,"removeReason":"","id":4518,"email":"xxx"},{"elementId":"1.00,200.00","pinned":true,"modelId":15781,"author":"test","icon":"icons/comment.png","title":"Comment (coord: 1.00, 200.00)","type":"POINT","content":"halo","coord":{"x":1.0,"y":200.0},"removed":true,"removeReason":"","id":4510,"email":"email"},{"elementId":"1199.22,26.00","pinned":true,"modelId":15781,"author":" x","icon":"icons/comment.png","title":"Comment (coord: 1199.22, 26.00)","type":"POINT","content":"","coord":{"x":1199.22,"y":26.0},"removed":true,"removeReason":"some reasone","id":4959,"email":""},{"elementId":"2.00,12.00","pinned":false,"modelId":15781,"author":"","icon":"icons/comment.png","title":"Comment (coord: 2.00, 12.00)","type":"POINT","content":"","coord":{"x":2.0,"y":12.0},"removed":true,"removeReason":"xxx","id":4511,"email":""}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/token=ADMIN_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/token=ADMIN_TOKEN_ID&
new file mode 100644
index 0000000000..ffb8ec95f2
--- /dev/null
+++ b/frontend-js/testFiles/apiCalls/projects/sample/models/all/token=ADMIN_TOKEN_ID&
@@ -0,0 +1 @@
+[{"version":null,"name":"UNKNOWN DISEASE MAP","idObject":15781,"tileSize":256,"width":1305,"height":473,"minZoom":2,"maxZoom":5,"layouts":[{"idObject":14081,"modelId":15781,"name":"Pathways and compartments","description":"","status":"Not available","progress":"0.00","directory":"5e8ff9bf55ba3508199d22e984129be6/_nested0","creator":"","inputDataAvailable":"false"},{"idObject":14082,"modelId":15781,"name":"Network","description":"","status":"Not available","progress":"0.00","directory":"5e8ff9bf55ba3508199d22e984129be6/_normal0","creator":"","inputDataAvailable":"false"},{"idObject":14083,"modelId":15781,"name":"Empty","description":"","status":"Not available","progress":"0.00","directory":"5e8ff9bf55ba3508199d22e984129be6/_empty0","creator":"","inputDataAvailable":"false"},{"idObject":18076,"modelId":15781,"name":"C:\\fakepath\\test.txt","description":"xxx","status":"OK","progress":"0.00","directory":"5e8ff9bf55ba3508199d22e984129be6/.18076","creator":"","inputDataAvailable":"true"},{"idObject":18077,"modelId":15781,"name":"xxx","description":"yyy","status":"OK","progress":"0.00","directory":"5e8ff9bf55ba3508199d22e984129be6/.18077","creator":"","inputDataAvailable":"true"}],"submodels":[],"centerLatLng":{"lat":79.18277721779353,"lng":-135.06093781915757},"topLeftLatLng":{"lat":85.05112877980659,"lng":-180.0},"bottomRightLatLng":{"lat":81.26928406550978,"lng":-90.0},"submodelType":"UNKNOWN"}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/overlays/creator=admin&publicOverlay=false&token=ADMIN_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/overlays/creator=admin&publicOverlay=false&token=ADMIN_TOKEN_ID&
new file mode 100644
index 0000000000..0637a088a0
--- /dev/null
+++ b/frontend-js/testFiles/apiCalls/projects/sample/overlays/creator=admin&publicOverlay=false&token=ADMIN_TOKEN_ID&
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/token=ADMIN_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/token=ADMIN_TOKEN_ID&
new file mode 100644
index 0000000000..38a0f6c48b
--- /dev/null
+++ b/frontend-js/testFiles/apiCalls/projects/sample/token=ADMIN_TOKEN_ID&
@@ -0,0 +1 @@
+{"version":"0","disease":{"resource":"D010300","link":"http://bioportal.bioontology.org/ontologies/1351?p=terms&conceptid=D010300","id":1104479,"type":"MESH_2012"},"organism":{"resource":"1570291","link":"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id=1570291","id":1104480,"type":"TAXONOMY"},"idObject":14898,"status":"Ok","progress":100.0,"notifyEmail":"","warnings":true,"errors":false,"name":"UNKNOWN DISEASE MAP","projectId":"sample","overviewImageViews":[],"topOverviewImage":null}
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/projects/token=ADMIN_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/token=ADMIN_TOKEN_ID&
new file mode 100644
index 0000000000..fe4e68c75f
--- /dev/null
+++ b/frontend-js/testFiles/apiCalls/projects/token=ADMIN_TOKEN_ID&
@@ -0,0 +1 @@
+[{"version":"","disease":null,"organism":null,"idObject":16668,"status":"Ok","progress":100.0,"notifyEmail":"","warnings":true,"errors":false,"name":"UNKNOWN DISEASE MAP","projectId":"PD_150625_3","overviewImageViews":[],"topOverviewImage":null},{"version":"","disease":null,"organism":null,"idObject":15763,"status":"Ok","progress":100.0,"notifyEmail":"","warnings":true,"errors":false,"name":"UNKNOWN DISEASE MAP","projectId":"complex_model_with_submaps","overviewImageViews":[],"topOverviewImage":null},{"version":"","disease":null,"organism":null,"idObject":15764,"status":"Ok","progress":100.0,"notifyEmail":"","warnings":true,"errors":false,"name":"UNKNOWN DISEASE MAP","projectId":"pdmap_jun16_test","overviewImageViews":[],"topOverviewImage":null},{"version":"piotr.gawron@uni.lu","disease":null,"organism":null,"idObject":19184,"status":"Ok","progress":100.0,"notifyEmail":"","warnings":true,"errors":false,"name":"UNKNOWN DISEASE MAP","projectId":"restricted_sample","overviewImageViews":[],"topOverviewImage":null},{"version":"","disease":{"resource":"D010300","annotatorClassName":"","descriptionByTypeRelation":"","descriptionByType":"","link":"http://bioportal.bioontology.org/ontologies/1351?p=terms&conceptid=D010300","id":1097678,"type":"MESH_2012"},"organism":{"resource":"9606","annotatorClassName":"","descriptionByTypeRelation":"","descriptionByType":"","link":"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id=9606","id":1097679,"type":"TAXONOMY"},"idObject":18039,"status":"Ok","progress":100.0,"notifyEmail":"","warnings":true,"errors":false,"name":"UNKNOWN DISEASE MAP","projectId":"pdmap_jan17","overviewImageViews":[{"idObject":1246,"filename":"a74b75289e6162e9cd1d41104797e361/biolayout_apoptosis.png","width":5776,"height":4040,"links":[{"idObject":2315,"polygon":[{"x":5188.0,"y":107.0},{"x":5536.0,"y":107.0},{"x":5536.0,"y":245.0},{"x":5188.0,"y":245.0}],"zoomLevel":5,"latLng":{"lat":81.15295271480684,"lng":-149.45919107818048},"modelLinkId":19308,"imageLinkId":null,"query":null,"type":"OverviewModelLink"},{"idObject":2316,"polygon":[{"x":2570.0,"y":842.0},{"x":3180.0,"y":842.0},{"x":3180.0,"y":1057.0},{"x":2570.0,"y":1057.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1247,"query":null,"type":"OverviewImageLink"},{"idObject":2323,"polygon":[{"x":4462.0,"y":107.0},{"x":4786.0,"y":107.0},{"x":4786.0,"y":245.0},{"x":4462.0,"y":245.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1250,"query":null,"type":"OverviewImageLink"},{"idObject":2333,"polygon":[{"x":4852.0,"y":107.0},{"x":5125.0,"y":107.0},{"x":5125.0,"y":245.0},{"x":4852.0,"y":245.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1252,"query":null,"type":"OverviewImageLink"}]},{"idObject":1247,"filename":"a74b75289e6162e9cd1d41104797e361/biolayout_autophagy.png","width":5776,"height":4040,"links":[{"idObject":2317,"polygon":[{"x":4852.0,"y":107.0},{"x":5125.0,"y":107.0},{"x":5125.0,"y":245.0},{"x":4852.0,"y":245.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1246,"query":null,"type":"OverviewImageLink"},{"idObject":2318,"polygon":[{"x":5188.0,"y":107.0},{"x":5536.0,"y":107.0},{"x":5536.0,"y":245.0},{"x":5188.0,"y":245.0}],"zoomLevel":5,"latLng":{"lat":82.71201888475206,"lng":-127.60455257227972},"modelLinkId":19308,"imageLinkId":null,"query":null,"type":"OverviewModelLink"},{"idObject":2324,"polygon":[{"x":4462.0,"y":107.0},{"x":4786.0,"y":107.0},{"x":4786.0,"y":245.0},{"x":4462.0,"y":245.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1250,"query":null,"type":"OverviewImageLink"}]},{"idObject":1248,"filename":"a74b75289e6162e9cd1d41104797e361/biolayout_calcium.png","width":5776,"height":4040,"links":[{"idObject":2319,"polygon":[{"x":5188.0,"y":107.0},{"x":5536.0,"y":107.0},{"x":5536.0,"y":245.0},{"x":5188.0,"y":245.0}],"zoomLevel":6,"latLng":{"lat":84.66755120013883,"lng":-151.22598632700607},"modelLinkId":19308,"imageLinkId":null,"query":null,"type":"OverviewModelLink"},{"idObject":2321,"polygon":[{"x":4462.0,"y":107.0},{"x":4786.0,"y":107.0},{"x":4786.0,"y":245.0},{"x":4462.0,"y":245.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1250,"query":null,"type":"OverviewImageLink"},{"idObject":2334,"polygon":[{"x":4852.0,"y":107.0},{"x":5125.0,"y":107.0},{"x":5125.0,"y":245.0},{"x":4852.0,"y":245.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1252,"query":null,"type":"OverviewImageLink"}]},{"idObject":1249,"filename":"a74b75289e6162e9cd1d41104797e361/biolayout_fission_fusion.png","width":5776,"height":4040,"links":[{"idObject":2320,"polygon":[{"x":5188.0,"y":107.0},{"x":5536.0,"y":107.0},{"x":5536.0,"y":245.0},{"x":5188.0,"y":245.0}],"zoomLevel":6,"latLng":{"lat":81.82366828255081,"lng":-147.1974181720964},"modelLinkId":19308,"imageLinkId":null,"query":null,"type":"OverviewModelLink"},{"idObject":2322,"polygon":[{"x":4462.0,"y":107.0},{"x":4786.0,"y":107.0},{"x":4786.0,"y":245.0},{"x":4462.0,"y":245.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1250,"query":null,"type":"OverviewImageLink"},{"idObject":2332,"polygon":[{"x":4852.0,"y":107.0},{"x":5125.0,"y":107.0},{"x":5125.0,"y":245.0},{"x":4852.0,"y":245.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1252,"query":null,"type":"OverviewImageLink"},{"idObject":2342,"polygon":[{"x":4480.0,"y":3602.0},{"x":5092.0,"y":3602.0},{"x":5092.0,"y":3818.0},{"x":4480.0,"y":3818.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1253,"query":null,"type":"OverviewImageLink"},{"idObject":2347,"polygon":[{"x":3724.0,"y":3602.0},{"x":4336.0,"y":3602.0},{"x":4336.0,"y":3818.0},{"x":3724.0,"y":3818.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1254,"query":null,"type":"OverviewImageLink"}]},{"idObject":1250,"filename":"a74b75289e6162e9cd1d41104797e361/biolayout_main.png","width":5776,"height":4040,"links":[{"idObject":2325,"polygon":[{"x":515.0,"y":2187.0},{"x":1073.0,"y":2187.0},{"x":1073.0,"y":2520.0},{"x":515.0,"y":2520.0}],"zoomLevel":4,"latLng":{"lat":82.96608629587611,"lng":-168.0621013634801},"modelLinkId":19308,"imageLinkId":null,"query":null,"type":"OverviewModelLink"},{"idObject":2326,"polygon":[{"x":2830.0,"y":497.0},{"x":3256.0,"y":497.0},{"x":3256.0,"y":832.0},{"x":2830.0,"y":832.0}],"zoomLevel":5,"latLng":{"lat":84.66946754404263,"lng":-152.22281633120727},"modelLinkId":19308,"imageLinkId":null,"query":null,"type":"OverviewModelLink"},{"idObject":2327,"polygon":[{"x":4205.0,"y":761.0},{"x":4625.0,"y":761.0},{"x":4625.0,"y":1102.0},{"x":4205.0,"y":1102.0}],"zoomLevel":5,"latLng":{"lat":79.86247529282691,"lng":-154.2611618225566},"modelLinkId":19308,"imageLinkId":null,"query":null,"type":"OverviewModelLink"},{"idObject":2331,"polygon":[{"x":2410.0,"y":1360.0},{"x":2692.0,"y":1360.0},{"x":2692.0,"y":1570.0},{"x":2410.0,"y":1570.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1252,"query":null,"type":"OverviewImageLink"},{"idObject":2349,"polygon":[{"x":3232.0,"y":2259.0},{"x":3520.0,"y":2259.0},{"x":3520.0,"y":2456.0},{"x":3232.0,"y":2456.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1254,"query":null,"type":"OverviewImageLink"},{"idObject":2356,"polygon":[{"x":4960.0,"y":1971.0},{"x":5241.0,"y":1971.0},{"x":5241.0,"y":2163.0},{"x":4960.0,"y":2163.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1255,"query":null,"type":"OverviewImageLink"}]},{"idObject":1251,"filename":"a74b75289e6162e9cd1d41104797e361/biolayout_main_root.png","width":5776,"height":4040,"links":[{"idObject":2328,"polygon":[{"x":515.0,"y":2187.0},{"x":1073.0,"y":2187.0},{"x":1073.0,"y":2520.0},{"x":515.0,"y":2520.0}],"zoomLevel":4,"latLng":{"lat":82.96608629587611,"lng":-168.0621013634801},"modelLinkId":19308,"imageLinkId":null,"query":null,"type":"OverviewModelLink"},{"idObject":2329,"polygon":[{"x":2830.0,"y":497.0},{"x":3256.0,"y":497.0},{"x":3256.0,"y":832.0},{"x":2830.0,"y":832.0}],"zoomLevel":5,"latLng":{"lat":84.66946754404263,"lng":-152.22281633120727},"modelLinkId":19308,"imageLinkId":null,"query":null,"type":"OverviewModelLink"},{"idObject":2330,"polygon":[{"x":4205.0,"y":761.0},{"x":4625.0,"y":761.0},{"x":4625.0,"y":1102.0},{"x":4205.0,"y":1102.0}],"zoomLevel":5,"latLng":{"lat":79.86247529282691,"lng":-154.2611618225566},"modelLinkId":19308,"imageLinkId":null,"query":null,"type":"OverviewModelLink"},{"idObject":2335,"polygon":[{"x":2410.0,"y":1360.0},{"x":2692.0,"y":1360.0},{"x":2692.0,"y":1570.0},{"x":2410.0,"y":1570.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1252,"query":null,"type":"OverviewImageLink"},{"idObject":2348,"polygon":[{"x":3232.0,"y":2259.0},{"x":3520.0,"y":2259.0},{"x":3520.0,"y":2456.0},{"x":3232.0,"y":2456.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1254,"query":null,"type":"OverviewImageLink"},{"idObject":2357,"polygon":[{"x":4960.0,"y":1971.0},{"x":5241.0,"y":1971.0},{"x":5241.0,"y":2163.0},{"x":4960.0,"y":2163.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1255,"query":null,"type":"OverviewImageLink"}]},{"idObject":1252,"filename":"a74b75289e6162e9cd1d41104797e361/biolayout_mitochondrion.png","width":5776,"height":4040,"links":[{"idObject":2336,"polygon":[{"x":4462.0,"y":107.0},{"x":4786.0,"y":107.0},{"x":4786.0,"y":245.0},{"x":4462.0,"y":245.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1250,"query":null,"type":"OverviewImageLink"},{"idObject":2337,"polygon":[{"x":4852.0,"y":107.0},{"x":5125.0,"y":107.0},{"x":5125.0,"y":245.0},{"x":4852.0,"y":245.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1250,"query":null,"type":"OverviewImageLink"},{"idObject":2338,"polygon":[{"x":5188.0,"y":107.0},{"x":5536.0,"y":107.0},{"x":5536.0,"y":245.0},{"x":5188.0,"y":245.0}],"zoomLevel":5,"latLng":{"lat":82.8877844915633,"lng":-148.79922086850246},"modelLinkId":19308,"imageLinkId":null,"query":null,"type":"OverviewModelLink"},{"idObject":2339,"polygon":[{"x":2453.0,"y":107.0},{"x":3178.0,"y":107.0},{"x":3178.0,"y":329.0},{"x":2453.0,"y":329.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1246,"query":null,"type":"OverviewImageLink"},{"idObject":2340,"polygon":[{"x":1049.0,"y":3716.0},{"x":1835.0,"y":3716.0},{"x":1835.0,"y":3932.0},{"x":1049.0,"y":3932.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1249,"query":null,"type":"OverviewImageLink"},{"idObject":2341,"polygon":[{"x":221.0,"y":1804.0},{"x":1097.0,"y":1804.0},{"x":1097.0,"y":2014.0},{"x":221.0,"y":2014.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1248,"query":null,"type":"OverviewImageLink"},{"idObject":2343,"polygon":[{"x":4876.0,"y":1804.0},{"x":5542.0,"y":1804.0},{"x":5542.0,"y":2014.0},{"x":4876.0,"y":2014.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1253,"query":null,"type":"OverviewImageLink"},{"idObject":2350,"polygon":[{"x":4144.0,"y":3716.0},{"x":4816.0,"y":3716.0},{"x":4816.0,"y":3932.0},{"x":4144.0,"y":3932.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1254,"query":null,"type":"OverviewImageLink"}]},{"idObject":1253,"filename":"a74b75289e6162e9cd1d41104797e361/biolayout_mitophagy.png","width":5776,"height":4040,"links":[{"idObject":2344,"polygon":[{"x":4462.0,"y":107.0},{"x":4786.0,"y":107.0},{"x":4786.0,"y":245.0},{"x":4462.0,"y":245.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1250,"query":null,"type":"OverviewImageLink"},{"idObject":2345,"polygon":[{"x":4852.0,"y":107.0},{"x":5125.0,"y":107.0},{"x":5125.0,"y":245.0},{"x":4852.0,"y":245.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1252,"query":null,"type":"OverviewImageLink"},{"idObject":2346,"polygon":[{"x":5188.0,"y":107.0},{"x":5536.0,"y":107.0},{"x":5536.0,"y":245.0},{"x":5188.0,"y":245.0}],"zoomLevel":6,"latLng":{"lat":82.23724412618809,"lng":-133.40335332085704},"modelLinkId":19308,"imageLinkId":null,"query":null,"type":"OverviewModelLink"}]},{"idObject":1254,"filename":"a74b75289e6162e9cd1d41104797e361/biolayout_motility.png","width":5776,"height":4040,"links":[{"idObject":2351,"polygon":[{"x":4462.0,"y":107.0},{"x":4786.0,"y":107.0},{"x":4786.0,"y":245.0},{"x":4462.0,"y":245.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1250,"query":null,"type":"OverviewImageLink"},{"idObject":2352,"polygon":[{"x":4852.0,"y":107.0},{"x":5125.0,"y":107.0},{"x":5125.0,"y":245.0},{"x":4852.0,"y":245.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1252,"query":null,"type":"OverviewImageLink"},{"idObject":2353,"polygon":[{"x":5188.0,"y":107.0},{"x":5536.0,"y":107.0},{"x":5536.0,"y":245.0},{"x":5188.0,"y":245.0}],"zoomLevel":5,"latLng":{"lat":84.3906903162654,"lng":-127.5186189512279},"modelLinkId":19308,"imageLinkId":null,"query":null,"type":"OverviewModelLink"},{"idObject":2354,"polygon":[{"x":311.0,"y":1234.0},{"x":935.0,"y":1234.0},{"x":935.0,"y":1462.0},{"x":311.0,"y":1462.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1250,"query":null,"type":"OverviewImageLink"},{"idObject":2355,"polygon":[{"x":4894.0,"y":2283.0},{"x":5512.0,"y":2283.0},{"x":5512.0,"y":2511.0},{"x":4894.0,"y":2511.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1255,"query":null,"type":"OverviewImageLink"}]},{"idObject":1255,"filename":"a74b75289e6162e9cd1d41104797e361/biolayout_synapse.png","width":5776,"height":4040,"links":[{"idObject":2358,"polygon":[{"x":4462.0,"y":107.0},{"x":4786.0,"y":107.0},{"x":4786.0,"y":245.0},{"x":4462.0,"y":245.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1250,"query":null,"type":"OverviewImageLink"},{"idObject":2359,"polygon":[{"x":4852.0,"y":107.0},{"x":5125.0,"y":107.0},{"x":5125.0,"y":245.0},{"x":4852.0,"y":245.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1250,"query":null,"type":"OverviewImageLink"},{"idObject":2360,"polygon":[{"x":5188.0,"y":107.0},{"x":5536.0,"y":107.0},{"x":5536.0,"y":245.0},{"x":5188.0,"y":245.0}],"zoomLevel":5,"latLng":{"lat":82.66652910471382,"lng":-104.28904250849789},"modelLinkId":19308,"imageLinkId":null,"query":null,"type":"OverviewModelLink"},{"idObject":2361,"polygon":[{"x":3352.0,"y":107.0},{"x":3970.0,"y":107.0},{"x":3970.0,"y":335.0},{"x":3352.0,"y":335.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1254,"query":null,"type":"OverviewImageLink"}]}],"topOverviewImage":{"idObject":1251,"filename":"a74b75289e6162e9cd1d41104797e361/biolayout_main_root.png","width":5776,"height":4040,"links":[{"idObject":2328,"polygon":[{"x":515.0,"y":2187.0},{"x":1073.0,"y":2187.0},{"x":1073.0,"y":2520.0},{"x":515.0,"y":2520.0}],"zoomLevel":4,"latLng":{"lat":82.96608629587611,"lng":-168.0621013634801},"modelLinkId":19308,"imageLinkId":null,"query":null,"type":"OverviewModelLink"},{"idObject":2329,"polygon":[{"x":2830.0,"y":497.0},{"x":3256.0,"y":497.0},{"x":3256.0,"y":832.0},{"x":2830.0,"y":832.0}],"zoomLevel":5,"latLng":{"lat":84.66946754404263,"lng":-152.22281633120727},"modelLinkId":19308,"imageLinkId":null,"query":null,"type":"OverviewModelLink"},{"idObject":2330,"polygon":[{"x":4205.0,"y":761.0},{"x":4625.0,"y":761.0},{"x":4625.0,"y":1102.0},{"x":4205.0,"y":1102.0}],"zoomLevel":5,"latLng":{"lat":79.86247529282691,"lng":-154.2611618225566},"modelLinkId":19308,"imageLinkId":null,"query":null,"type":"OverviewModelLink"},{"idObject":2335,"polygon":[{"x":2410.0,"y":1360.0},{"x":2692.0,"y":1360.0},{"x":2692.0,"y":1570.0},{"x":2410.0,"y":1570.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1252,"query":null,"type":"OverviewImageLink"},{"idObject":2348,"polygon":[{"x":3232.0,"y":2259.0},{"x":3520.0,"y":2259.0},{"x":3520.0,"y":2456.0},{"x":3232.0,"y":2456.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1254,"query":null,"type":"OverviewImageLink"},{"idObject":2357,"polygon":[{"x":4960.0,"y":1971.0},{"x":5241.0,"y":1971.0},{"x":5241.0,"y":2163.0},{"x":4960.0,"y":2163.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1255,"query":null,"type":"OverviewImageLink"}]}},{"version":"","disease":null,"organism":null,"idObject":18115,"status":"Ok","progress":100.0,"notifyEmail":"","warnings":true,"errors":false,"name":"UNKNOWN DISEASE MAP","projectId":"complex_model_with_images","overviewImageViews":[{"idObject":1261,"filename":"fbdbe43de73fe38f62889b89cb863adb/sub_image.png","width":963,"height":639,"links":[{"idObject":2369,"polygon":[{"x":200.0,"y":200.0},{"x":200.0,"y":400.0},{"x":400.0,"y":400.0},{"x":400.0,"y":200.0}],"zoomLevel":1,"latLng":{"lat":84.89177465079632,"lng":-161.8181818181818},"modelLinkId":19397,"imageLinkId":null,"query":null,"type":"OverviewModelLink"}]},{"idObject":1262,"filename":"fbdbe43de73fe38f62889b89cb863adb/test.png","width":963,"height":639,"links":[{"idObject":2370,"polygon":[{"x":10.0,"y":10.0},{"x":100.0,"y":10.0},{"x":100.0,"y":100.0},{"x":10.0,"y":100.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1261,"query":null,"type":"OverviewImageLink"},{"idObject":2371,"polygon":[{"x":200.0,"y":200.0},{"x":200.0,"y":400.0},{"x":400.0,"y":400.0},{"x":400.0,"y":200.0}],"zoomLevel":0,"latLng":{"lat":84.89177465079632,"lng":-178.1818181818182},"modelLinkId":19397,"imageLinkId":null,"query":null,"type":"OverviewModelLink"}]}],"topOverviewImage":{"idObject":1262,"filename":"fbdbe43de73fe38f62889b89cb863adb/test.png","width":963,"height":639,"links":[{"idObject":2370,"polygon":[{"x":10.0,"y":10.0},{"x":100.0,"y":10.0},{"x":100.0,"y":100.0},{"x":10.0,"y":100.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1261,"query":null,"type":"OverviewImageLink"},{"idObject":2371,"polygon":[{"x":200.0,"y":200.0},{"x":200.0,"y":400.0},{"x":400.0,"y":400.0},{"x":400.0,"y":200.0}],"zoomLevel":0,"latLng":{"lat":84.89177465079632,"lng":-178.1818181818182},"modelLinkId":19397,"imageLinkId":null,"query":null,"type":"OverviewModelLink"}]}},{"version":"","disease":{"resource":"D010300","annotatorClassName":"","descriptionByTypeRelation":"","descriptionByType":"","link":"http://bioportal.bioontology.org/ontologies/1351?p=terms&conceptid=D010300","id":933416,"type":"MESH_2012"},"organism":null,"idObject":17051,"status":"Ok","progress":100.0,"notifyEmail":"","warnings":true,"errors":false,"name":"UNKNOWN DISEASE MAP","projectId":"GSTP1_subnetwork_220214","overviewImageViews":[],"topOverviewImage":null},{"version":"","disease":null,"organism":null,"idObject":19103,"status":"Ok","progress":100.0,"notifyEmail":"","warnings":true,"errors":false,"name":"UNKNOWN DISEASE MAP","projectId":"CDlayerin_v2-semantic","overviewImageViews":[],"topOverviewImage":null},{"version":"piotr.gawron@uni.lu","disease":null,"organism":{"resource":"9606","annotatorClassName":"","descriptionByTypeRelation":"","descriptionByType":"","link":"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id=9606","id":1104514,"type":"TAXONOMY"},"idObject":19186,"status":"Ok","progress":100.0,"notifyEmail":"","warnings":true,"errors":false,"name":"UNKNOWN DISEASE MAP","projectId":"drug_target_sample","overviewImageViews":[],"topOverviewImage":null},{"version":"piotr.gawron@uni.lu","disease":null,"organism":null,"idObject":19187,"status":"Ok","progress":100.0,"notifyEmail":"","warnings":true,"errors":false,"name":"UNKNOWN DISEASE MAP","projectId":"empty","overviewImageViews":[],"topOverviewImage":null},{"version":"23","disease":{"resource":"D000544","annotatorClassName":"","descriptionByTypeRelation":"","descriptionByType":"","link":"http://bioportal.bioontology.org/ontologies/1351?p=terms&conceptid=D000544","id":1113075,"type":"MESH_2012"},"organism":{"resource":"9606","annotatorClassName":"","descriptionByTypeRelation":"","descriptionByType":"","link":"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id=9606","id":1113076,"type":"TAXONOMY"},"idObject":19102,"status":"Ok","progress":100.0,"notifyEmail":"","warnings":true,"errors":false,"name":"xxx","projectId":"CDlayerin_v2","overviewImageViews":[],"topOverviewImage":null},{"version":null,"disease":null,"organism":null,"idObject":20604,"status":"Ok","progress":100.0,"notifyEmail":null,"warnings":true,"errors":false,"name":"test","projectId":"xxx","overviewImageViews":[],"topOverviewImage":null},{"version":null,"disease":null,"organism":null,"idObject":20603,"status":"Ok","progress":100.0,"notifyEmail":null,"warnings":true,"errors":false,"name":"test","projectId":"xxxy","overviewImageViews":[],"topOverviewImage":null},{"version":null,"disease":null,"organism":null,"idObject":20620,"status":"Ok","progress":100.0,"notifyEmail":"piotr.gawron@uni.lu","warnings":true,"errors":false,"name":"UNKNOWN DISEASE MAP","projectId":"complex_model_with_layouts","overviewImageViews":[],"topOverviewImage":null},{"version":"0","disease":{"resource":"D010300","annotatorClassName":"","descriptionByTypeRelation":"","descriptionByType":"","link":"http://bioportal.bioontology.org/ontologies/1351?p=terms&conceptid=D010300","id":1104479,"type":"MESH_2012"},"organism":{"resource":"1570291","annotatorClassName":"","descriptionByTypeRelation":"","descriptionByType":"","link":"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id=1570291","id":1104480,"type":"TAXONOMY"},"idObject":14898,"status":"Ok","progress":100.0,"notifyEmail":"","warnings":true,"errors":false,"name":"UNKNOWN DISEASE MAP","projectId":"sample","overviewImageViews":[],"topOverviewImage":null},{"version":null,"disease":null,"organism":null,"idObject":20812,"status":"Ok","progress":100.0,"notifyEmail":"piotr.gawron@uni.lu","warnings":true,"errors":false,"name":"UNKNOWN DISEASE MAP","projectId":"images","overviewImageViews":[{"idObject":1396,"filename":"6c06cbfd0b675f7b5ab0dd188d3ff4ef/sub_image.png","width":963,"height":639,"links":[{"idObject":2565,"polygon":[{"x":200.0,"y":200.0},{"x":200.0,"y":400.0},{"x":400.0,"y":400.0},{"x":400.0,"y":200.0}],"zoomLevel":1,"latLng":{"lat":84.89177465079632,"lng":-161.8181818181818},"modelLinkId":22341,"imageLinkId":null,"query":null,"type":"OverviewModelLink"}]},{"idObject":1397,"filename":"6c06cbfd0b675f7b5ab0dd188d3ff4ef/test.png","width":963,"height":639,"links":[{"idObject":2566,"polygon":[{"x":10.0,"y":10.0},{"x":100.0,"y":10.0},{"x":100.0,"y":100.0},{"x":10.0,"y":100.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1396,"query":null,"type":"OverviewImageLink"},{"idObject":2567,"polygon":[{"x":200.0,"y":200.0},{"x":200.0,"y":400.0},{"x":400.0,"y":400.0},{"x":400.0,"y":200.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":null,"query":"s1","type":"OverviewSearchLink"}]}],"topOverviewImage":{"idObject":1397,"filename":"6c06cbfd0b675f7b5ab0dd188d3ff4ef/test.png","width":963,"height":639,"links":[{"idObject":2566,"polygon":[{"x":10.0,"y":10.0},{"x":100.0,"y":10.0},{"x":100.0,"y":100.0},{"x":10.0,"y":100.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":1396,"query":null,"type":"OverviewImageLink"},{"idObject":2567,"polygon":[{"x":200.0,"y":200.0},{"x":200.0,"y":400.0},{"x":400.0,"y":400.0},{"x":400.0,"y":200.0}],"zoomLevel":null,"latLng":null,"modelLinkId":null,"imageLinkId":null,"query":"s1","type":"OverviewSearchLink"}]}},{"version":null,"disease":null,"organism":null,"idObject":21113,"status":"Ok","progress":100.0,"notifyEmail":"piotr.gawron@uni.lu","warnings":true,"errors":false,"name":"UNKNOWN DISEASE MAP","projectId":"doi","overviewImageViews":[],"topOverviewImage":null},{"version":null,"disease":null,"organism":null,"idObject":21417,"status":"Ok","progress":100.0,"notifyEmail":"","warnings":false,"errors":false,"name":"","projectId":"parameter","overviewImageViews":[],"topOverviewImage":null},{"version":null,"disease":null,"organism":null,"idObject":21424,"status":"Ok","progress":100.0,"notifyEmail":"piotr.gawron@uni.lu","warnings":false,"errors":false,"name":"UNKNOWN DISEASE MAP","projectId":"kinteics_test","overviewImageViews":[],"topOverviewImage":null},{"version":"","disease":null,"organism":null,"idObject":21966,"status":"Ok","progress":100.0,"notifyEmail":"piotr.gawron@uni.lu","warnings":false,"errors":false,"name":"UNKNOWN DISEASE MAP","projectId":"c","overviewImageViews":[],"topOverviewImage":null},{"version":"","disease":null,"organism":null,"idObject":21968,"status":"Ok","progress":100.0,"notifyEmail":"piotr.gawron@uni.lu","warnings":true,"errors":false,"name":"UNKNOWN DISEASE MAP","projectId":"ASTHMA_V40_Test9x","overviewImageViews":[],"topOverviewImage":null},{"version":"","disease":null,"organism":{"resource":"9606","annotatorClassName":"","descriptionByTypeRelation":"","descriptionByType":"","link":"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id=9606","id":1119594,"type":"TAXONOMY"},"idObject":21430,"status":"Ok","progress":100.0,"notifyEmail":"piotr.gawron@uni.lu","warnings":false,"errors":false,"name":"UNKNOWN DISEASE MAP","projectId":"ASTHMA_V40_Test9","overviewImageViews":[],"topOverviewImage":null},{"version":null,"disease":null,"organism":null,"idObject":21432,"status":"Ok","progress":100.0,"notifyEmail":"","warnings":false,"errors":false,"name":"","projectId":"species_with_boundary_cond","overviewImageViews":[],"topOverviewImage":null}]
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/users/admin b/frontend-js/testFiles/apiCalls/users/admin
deleted file mode 100644
index 7a0b8dd1ba..0000000000
--- a/frontend-js/testFiles/apiCalls/users/admin
+++ /dev/null
@@ -1 +0,0 @@
-{"simpleColor":null,"privileges":[{"type":"VIEW_PROJECT","value":1,"objectId":14898},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":19103},{"type":"ADD_MAP","value":1},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":15764},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":19184},{"type":"VIEW_PROJECT","value":1,"objectId":6},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":17051},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":19102},{"type":"VIEW_PROJECT","value":1,"objectId":21113},{"type":"VIEW_PROJECT","value":1,"objectId":19187},{"type":"VIEW_PROJECT","value":1,"objectId":16668},{"type":"VIEW_PROJECT","value":1,"objectId":18115},{"type":"VIEW_PROJECT","value":1,"objectId":18039},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":14898},{"type":"VIEW_PROJECT","value":1,"objectId":20},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":6},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":15763},{"type":"VIEW_PROJECT","value":1,"objectId":20620},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":14898},{"type":"VIEW_PROJECT","value":1,"objectId":19},{"type":"CUSTOM_LAYOUTS","value":100},{"type":"MANAGE_GENOMES","value":1},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":20812},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":10},{"type":"VIEW_PROJECT","value":1,"objectId":21417},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":21},{"type":"VIEW_PROJECT","value":1,"objectId":22},{"type":"VIEW_PROJECT","value":1,"objectId":20605},{"type":"VIEW_PROJECT","value":1,"objectId":9},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":21113},{"type":"VIEW_PROJECT","value":1,"objectId":17},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":18039},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":19186},{"type":"USER_MANAGEMENT","value":1},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":11},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":20603},{"type":"VIEW_PROJECT","value":1,"objectId":1},{"type":"VIEW_PROJECT","value":1,"objectId":18},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":21424},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":19103},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":21432},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":20603},{"type":"VIEW_PROJECT","value":1,"objectId":15764},{"type":"VIEW_PROJECT","value":1,"objectId":19103},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":21417},{"type":"VIEW_PROJECT","value":1,"objectId":15763},{"type":"PROJECT_MANAGEMENT","value":1},{"type":"VIEW_PROJECT","value":1,"objectId":21424},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":21430},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":19},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":16668},{"type":"VIEW_PROJECT","value":1,"objectId":11},{"type":"VIEW_PROJECT","value":1,"objectId":17051},{"type":"CONFIGURATION_MANAGE","value":1},{"type":"VIEW_PROJECT","value":1,"objectId":21},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":19187},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":22},{"type":"VIEW_PROJECT","value":1,"objectId":10},{"type":"VIEW_PROJECT","value":1,"objectId":20812},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":1},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":20620},{"type":"VIEW_PROJECT","value":1,"objectId":21430},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":20620},{"type":"VIEW_PROJECT","value":1,"objectId":8},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":15764},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":7},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":21430},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":18},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":21424},{"type":"VIEW_PROJECT","value":1,"objectId":20603},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":20812},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":18115},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":20605},{"type":"VIEW_PROJECT","value":1,"objectId":20604},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":21432},{"type":"VIEW_PROJECT","value":1,"objectId":21432},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":16668},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":9},{"type":"VIEW_PROJECT","value":1,"objectId":7},{"type":"VIEW_PROJECT","value":1,"objectId":19184},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":19186},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":18039},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":8},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":20604},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":17051},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":21417},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":20605},{"type":"VIEW_PROJECT","value":1,"objectId":19186},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":19102},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":19184},{"type":"VIEW_PROJECT","value":1,"objectId":19102},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":20604},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":21113},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":18115},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":15763},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":19187},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":17},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":20},{"type":"VIEW_PROJECT","value":1,"objectId":null},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":null},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":null},{"type":"CUSTOM_LAYOUTS_AVAILABLE","value":86}],"preferences":{"element-required-annotations":{"lcsb.mapviewer.model.map.reaction.type.UnknownReducedTriggerReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.compartment.BottomSquareCompartment":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.ReducedPhysicalStimulationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.Chemical":{"require-at-least-one":true,"annotation-list":["CHEBI","PUBCHEM","PUBCHEM_SUBSTANCE"]},"lcsb.mapviewer.model.map.species.Degraded":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.compartment.PathwayCompartment":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.SimpleMolecule":{"require-at-least-one":true,"annotation-list":["CHEBI","PUBCHEM","PUBCHEM_SUBSTANCE"]},"lcsb.mapviewer.model.map.reaction.type.BooleanLogicGateReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.ReceptorProtein":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.reaction.type.UnknownTransitionReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.TranscriptionReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.Gene":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.compartment.OvalCompartment":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.PositiveInfluenceReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.ReducedTriggerReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.Protein":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.reaction.type.UnknownReducedPhysicalStimulationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.BioEntity":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.GenericProtein":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.reaction.type.TransportReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.IonChannelProtein":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.reaction.type.UnknownReducedModulationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.Phenotype":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Drug":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Element":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.DissociationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.compartment.SquareCompartment":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Ion":{"require-at-least-one":true,"annotation-list":["CHEBI","PUBCHEM","PUBCHEM_SUBSTANCE"]},"lcsb.mapviewer.model.map.reaction.Reaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.HeterodimerAssociationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.compartment.RightSquareCompartment":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.TranslationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.UnknownPositiveInfluenceReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.ReducedModulationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.AntisenseRna":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Complex":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Unknown":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.TruncationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.compartment.LeftSquareCompartment":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.UnknownNegativeInfluenceReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.NegativeInfluenceReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.TruncatedProtein":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL","CHEMBL_COMPOUND"]},"lcsb.mapviewer.model.map.compartment.Compartment":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.compartment.TopSquareCompartment":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Species":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Rna":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.reaction.type.KnownTransitionOmittedReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.StateTransitionReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]}},"element-valid-annotations":{"lcsb.mapviewer.model.map.reaction.type.UnknownReducedTriggerReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.compartment.BottomSquareCompartment":["GO","MESH_2012","PUBMED"],"lcsb.mapviewer.model.map.reaction.type.ReducedPhysicalStimulationReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.species.Chemical":["CHEBI","HMDB","KEGG_COMPOUND","PUBCHEM","PUBCHEM_SUBSTANCE","PUBMED"],"lcsb.mapviewer.model.map.species.Degraded":["PUBMED"],"lcsb.mapviewer.model.map.compartment.PathwayCompartment":["GO","MESH_2012","PUBMED"],"lcsb.mapviewer.model.map.species.SimpleMolecule":["CHEBI","HMDB","KEGG_COMPOUND","PUBCHEM","PUBCHEM_SUBSTANCE","PUBMED"],"lcsb.mapviewer.model.map.reaction.type.BooleanLogicGateReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.species.ReceptorProtein":["CHEMBL_TARGET","EC","ENSEMBL","ENTREZ","HGNC","HGNC_SYMBOL","INTERPRO","KEGG_GENES","MGD","PANTHER","PUBMED","REFSEQ","UNIPROT","UNIPROT_ISOFORM"],"lcsb.mapviewer.model.map.reaction.type.UnknownTransitionReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.reaction.type.TranscriptionReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.species.Gene":["ENSEMBL","ENTREZ","HGNC","HGNC_SYMBOL","KEGG_GENES","MGD","PANTHER","PUBMED","REFSEQ","UNIPROT"],"lcsb.mapviewer.model.map.compartment.OvalCompartment":["GO","MESH_2012","PUBMED"],"lcsb.mapviewer.model.map.reaction.type.PositiveInfluenceReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.reaction.type.ReducedTriggerReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.species.Protein":["CHEMBL_TARGET","EC","ENSEMBL","ENTREZ","HGNC","HGNC_SYMBOL","INTERPRO","KEGG_GENES","MGD","PANTHER","PUBMED","REFSEQ","UNIPROT","UNIPROT_ISOFORM","CHEMBL_COMPOUND"],"lcsb.mapviewer.model.map.reaction.type.UnknownReducedPhysicalStimulationReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.BioEntity":["PUBMED"],"lcsb.mapviewer.model.map.species.GenericProtein":["CHEMBL_TARGET","EC","ENSEMBL","ENTREZ","HGNC","HGNC_SYMBOL","INTERPRO","KEGG_GENES","MGD","PANTHER","PUBMED","REFSEQ","UNIPROT","UNIPROT_ISOFORM"],"lcsb.mapviewer.model.map.reaction.type.TransportReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.species.IonChannelProtein":["CHEMBL_TARGET","EC","ENSEMBL","ENTREZ","HGNC","HGNC_SYMBOL","INTERPRO","KEGG_GENES","MGD","PANTHER","PUBMED","REFSEQ","UNIPROT","UNIPROT_ISOFORM"],"lcsb.mapviewer.model.map.reaction.type.UnknownReducedModulationReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.species.Phenotype":["GO","MESH_2012","OMIM","PUBMED"],"lcsb.mapviewer.model.map.species.Drug":["CHEBI","CHEMBL_COMPOUND","DRUGBANK","HMDB","PUBMED"],"lcsb.mapviewer.model.map.species.Element":["PUBMED"],"lcsb.mapviewer.model.map.reaction.type.DissociationReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.compartment.SquareCompartment":["GO","MESH_2012","PUBMED"],"lcsb.mapviewer.model.map.species.Ion":["CHEBI","HMDB","KEGG_COMPOUND","PUBCHEM","PUBCHEM_SUBSTANCE","PUBMED"],"lcsb.mapviewer.model.map.reaction.Reaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.reaction.type.HeterodimerAssociationReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.compartment.RightSquareCompartment":["GO","MESH_2012","PUBMED"],"lcsb.mapviewer.model.map.reaction.type.TranslationReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.reaction.type.UnknownPositiveInfluenceReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.reaction.type.ReducedModulationReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.species.AntisenseRna":["PUBMED"],"lcsb.mapviewer.model.map.species.Complex":["CHEMBL_TARGET","EC","GO","INTERPRO","MESH_2012","PUBMED"],"lcsb.mapviewer.model.map.species.Unknown":["PUBMED"],"lcsb.mapviewer.model.map.reaction.type.TruncationReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.compartment.LeftSquareCompartment":["GO","MESH_2012","PUBMED"],"lcsb.mapviewer.model.map.reaction.type.UnknownNegativeInfluenceReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.reaction.type.NegativeInfluenceReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.species.TruncatedProtein":["CHEMBL_TARGET","EC","ENSEMBL","ENTREZ","HGNC","HGNC_SYMBOL","INTERPRO","KEGG_GENES","MGD","PANTHER","PUBMED","REFSEQ","UNIPROT","UNIPROT_ISOFORM","CHEMBL_COMPOUND"],"lcsb.mapviewer.model.map.compartment.Compartment":["GO","MESH_2012","PUBMED"],"lcsb.mapviewer.model.map.compartment.TopSquareCompartment":["GO","MESH_2012","PUBMED"],"lcsb.mapviewer.model.map.species.Species":["PUBMED"],"lcsb.mapviewer.model.map.species.Rna":["ENSEMBL","ENTREZ","HGNC","HGNC_SYMBOL","KEGG_GENES","MGD","PANTHER","PUBMED","REFSEQ","UNIPROT"],"lcsb.mapviewer.model.map.reaction.type.KnownTransitionOmittedReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.reaction.type.StateTransitionReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"]},"element-annotators":{"lcsb.mapviewer.model.map.reaction.type.UnknownReducedTriggerReaction":[],"lcsb.mapviewer.model.map.compartment.BottomSquareCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.reaction.type.ReducedPhysicalStimulationReaction":[],"lcsb.mapviewer.model.map.species.Chemical":["Chebi"],"lcsb.mapviewer.model.map.species.Degraded":[],"lcsb.mapviewer.model.map.compartment.PathwayCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.species.SimpleMolecule":["Chebi"],"lcsb.mapviewer.model.map.reaction.type.BooleanLogicGateReaction":[],"lcsb.mapviewer.model.map.species.ReceptorProtein":["Biocompendium","HGNC"],"lcsb.mapviewer.model.map.reaction.type.UnknownTransitionReaction":[],"lcsb.mapviewer.model.map.reaction.type.TranscriptionReaction":[],"lcsb.mapviewer.model.map.species.Gene":["HGNC"],"lcsb.mapviewer.model.map.compartment.OvalCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.reaction.type.PositiveInfluenceReaction":[],"lcsb.mapviewer.model.map.reaction.type.ReducedTriggerReaction":[],"lcsb.mapviewer.model.map.species.Protein":["Biocompendium","HGNC"],"lcsb.mapviewer.model.map.reaction.type.UnknownReducedPhysicalStimulationReaction":[],"lcsb.mapviewer.model.map.BioEntity":[],"lcsb.mapviewer.model.map.species.GenericProtein":["Biocompendium","HGNC"],"lcsb.mapviewer.model.map.reaction.type.TransportReaction":[],"lcsb.mapviewer.model.map.species.IonChannelProtein":["Biocompendium","HGNC"],"lcsb.mapviewer.model.map.reaction.type.UnknownReducedModulationReaction":[],"lcsb.mapviewer.model.map.species.Phenotype":["Gene Ontology"],"lcsb.mapviewer.model.map.species.Drug":[],"lcsb.mapviewer.model.map.species.Element":[],"lcsb.mapviewer.model.map.reaction.type.DissociationReaction":[],"lcsb.mapviewer.model.map.compartment.SquareCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.species.Ion":["Chebi"],"lcsb.mapviewer.model.map.reaction.Reaction":[],"lcsb.mapviewer.model.map.reaction.type.HeterodimerAssociationReaction":[],"lcsb.mapviewer.model.map.compartment.RightSquareCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.reaction.type.TranslationReaction":[],"lcsb.mapviewer.model.map.reaction.type.UnknownPositiveInfluenceReaction":[],"lcsb.mapviewer.model.map.reaction.type.ReducedModulationReaction":[],"lcsb.mapviewer.model.map.species.AntisenseRna":[],"lcsb.mapviewer.model.map.species.Complex":["Gene Ontology"],"lcsb.mapviewer.model.map.species.Unknown":[],"lcsb.mapviewer.model.map.reaction.type.TruncationReaction":[],"lcsb.mapviewer.model.map.compartment.LeftSquareCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.reaction.type.UnknownNegativeInfluenceReaction":[],"lcsb.mapviewer.model.map.reaction.type.NegativeInfluenceReaction":[],"lcsb.mapviewer.model.map.species.TruncatedProtein":["Biocompendium","HGNC"],"lcsb.mapviewer.model.map.compartment.Compartment":["Gene Ontology"],"lcsb.mapviewer.model.map.compartment.TopSquareCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.species.Species":[],"lcsb.mapviewer.model.map.species.Rna":["HGNC"],"lcsb.mapviewer.model.map.reaction.type.KnownTransitionOmittedReaction":[],"lcsb.mapviewer.model.map.reaction.type.StateTransitionReaction":[]},"project-upload":{"auto-resize":true,"sbgn":false,"cache-data":false,"semantic-zooming":false,"annotate-model":false,"validate-miriam":true}},"removed":false,"surname":"","minColor":null,"name":"admin","neutralColor":null,"maxColor":null,"id":1,"login":"admin","email":"piotr.gawron@uni.lu"}
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/users/admin.updatePreferences/PATCH_preferences.project-upload.cache-data=false& b/frontend-js/testFiles/apiCalls/users/admin.updatePreferences/PATCH_preferences.project-upload.cache-data=false&token=ADMIN_TOKEN_ID&
similarity index 100%
rename from frontend-js/testFiles/apiCalls/users/admin.updatePreferences/PATCH_preferences.project-upload.cache-data=false&
rename to frontend-js/testFiles/apiCalls/users/admin.updatePreferences/PATCH_preferences.project-upload.cache-data=false&token=ADMIN_TOKEN_ID&
diff --git a/frontend-js/testFiles/apiCalls/users/admin.updatePreferences/PATCH_preferences.project-upload.cache-data=true& b/frontend-js/testFiles/apiCalls/users/admin.updatePreferences/PATCH_preferences.project-upload.cache-data=true&token=ADMIN_TOKEN_ID&
similarity index 100%
rename from frontend-js/testFiles/apiCalls/users/admin.updatePreferences/PATCH_preferences.project-upload.cache-data=true&
rename to frontend-js/testFiles/apiCalls/users/admin.updatePreferences/PATCH_preferences.project-upload.cache-data=true&token=ADMIN_TOKEN_ID&
diff --git a/frontend-js/testFiles/apiCalls/users/admin/token=ADMIN_TOKEN_ID& b/frontend-js/testFiles/apiCalls/users/admin/token=ADMIN_TOKEN_ID&
new file mode 100644
index 0000000000..80096aa952
--- /dev/null
+++ b/frontend-js/testFiles/apiCalls/users/admin/token=ADMIN_TOKEN_ID&
@@ -0,0 +1 @@
+{"simpleColor":null,"privileges":[{"type":"VIEW_PROJECT","value":1,"objectId":21424},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":21432},{"type":"VIEW_PROJECT","value":1,"objectId":21432},{"type":"VIEW_PROJECT","value":1,"objectId":21113},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":7},{"type":"VIEW_PROJECT","value":1,"objectId":6},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":19186},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":21424},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":15764},{"type":"PROJECT_MANAGEMENT","value":1},{"type":"ADD_MAP","value":1},{"type":"VIEW_PROJECT","value":1,"objectId":15764},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":21113},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":19},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":19103},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":15763},{"type":"VIEW_PROJECT","value":1,"objectId":19186},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":6},{"type":"VIEW_PROJECT","value":1,"objectId":1},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":21968},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":21968},{"type":"VIEW_PROJECT","value":1,"objectId":9},{"type":"VIEW_PROJECT","value":1,"objectId":17051},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":19187},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":19184},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":21424},{"type":"VIEW_PROJECT","value":1,"objectId":21417},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":18039},{"type":"VIEW_PROJECT","value":1,"objectId":10},{"type":"VIEW_PROJECT","value":1,"objectId":19184},{"type":"VIEW_PROJECT","value":1,"objectId":20604},{"type":"VIEW_PROJECT","value":1,"objectId":21},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":19187},{"type":"VIEW_PROJECT","value":1,"objectId":19103},{"type":"VIEW_PROJECT","value":1,"objectId":20},{"type":"VIEW_PROJECT","value":1,"objectId":21430},{"type":"VIEW_PROJECT","value":1,"objectId":20812},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":19184},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":21432},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":17},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":20620},{"type":"VIEW_PROJECT","value":1,"objectId":19},{"type":"VIEW_PROJECT","value":1,"objectId":22},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":1},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":21},{"type":"VIEW_PROJECT","value":1,"objectId":19102},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":20603},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":20620},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":21966},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":19102},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":18115},{"type":"VIEW_PROJECT","value":1,"objectId":8},{"type":"VIEW_PROJECT","value":1,"objectId":15763},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":15764},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":9},{"type":"CONFIGURATION_MANAGE","value":1},{"type":"VIEW_PROJECT","value":1,"objectId":21968},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":18039},{"type":"VIEW_PROJECT","value":1,"objectId":11},{"type":"VIEW_PROJECT","value":1,"objectId":18},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":20812},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":11},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":14898},{"type":"VIEW_PROJECT","value":1,"objectId":21966},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":17051},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":20812},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":17051},{"type":"VIEW_PROJECT","value":1,"objectId":17},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":21417},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":21113},{"type":"USER_MANAGEMENT","value":1},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":22},{"type":"VIEW_PROJECT","value":1,"objectId":16668},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":21430},{"type":"VIEW_PROJECT","value":1,"objectId":14898},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":20604},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":19103},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":8},{"type":"VIEW_PROJECT","value":1,"objectId":19187},{"type":"CUSTOM_LAYOUTS","value":100},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":21430},{"type":"VIEW_PROJECT","value":1,"objectId":18115},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":18},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":16668},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":20},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":18115},{"type":"VIEW_PROJECT","value":1,"objectId":20620},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":20603},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":20604},{"type":"MANAGE_GENOMES","value":1},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":14898},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":16668},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":21966},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":21417},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":19186},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":15763},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":10},{"type":"VIEW_PROJECT","value":1,"objectId":18039},{"type":"VIEW_PROJECT","value":1,"objectId":7},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":19102},{"type":"VIEW_PROJECT","value":1,"objectId":20603},{"type":"VIEW_PROJECT","value":1,"objectId":null},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":null},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":null},{"type":"CUSTOM_LAYOUTS_AVAILABLE","value":86}],"preferences":{"element-required-annotations":{"lcsb.mapviewer.model.map.reaction.type.UnknownReducedTriggerReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.compartment.BottomSquareCompartment":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.ReducedPhysicalStimulationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.Chemical":{"require-at-least-one":true,"annotation-list":["CHEBI","PUBCHEM","PUBCHEM_SUBSTANCE"]},"lcsb.mapviewer.model.map.species.Degraded":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.compartment.PathwayCompartment":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.SimpleMolecule":{"require-at-least-one":true,"annotation-list":["CHEBI","PUBCHEM","PUBCHEM_SUBSTANCE"]},"lcsb.mapviewer.model.map.reaction.type.BooleanLogicGateReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.ReceptorProtein":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.reaction.type.UnknownTransitionReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.TranscriptionReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.Gene":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.compartment.OvalCompartment":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.PositiveInfluenceReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.ReducedTriggerReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.Protein":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.reaction.type.UnknownReducedPhysicalStimulationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.BioEntity":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.GenericProtein":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.reaction.type.TransportReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.IonChannelProtein":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.reaction.type.UnknownReducedModulationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.Phenotype":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Drug":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Element":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.DissociationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.compartment.SquareCompartment":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Ion":{"require-at-least-one":true,"annotation-list":["CHEBI","PUBCHEM","PUBCHEM_SUBSTANCE"]},"lcsb.mapviewer.model.map.reaction.Reaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.HeterodimerAssociationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.compartment.RightSquareCompartment":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.TranslationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.UnknownPositiveInfluenceReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.ReducedModulationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.AntisenseRna":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Complex":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Unknown":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.TruncationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.compartment.LeftSquareCompartment":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.UnknownNegativeInfluenceReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.NegativeInfluenceReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.TruncatedProtein":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL","CHEMBL_COMPOUND"]},"lcsb.mapviewer.model.map.compartment.Compartment":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.compartment.TopSquareCompartment":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Species":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Rna":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.reaction.type.KnownTransitionOmittedReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.StateTransitionReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]}},"element-valid-annotations":{"lcsb.mapviewer.model.map.reaction.type.UnknownReducedTriggerReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.compartment.BottomSquareCompartment":["GO","MESH_2012","PUBMED"],"lcsb.mapviewer.model.map.reaction.type.ReducedPhysicalStimulationReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.species.Chemical":["CHEBI","HMDB","KEGG_COMPOUND","PUBCHEM","PUBCHEM_SUBSTANCE","PUBMED"],"lcsb.mapviewer.model.map.species.Degraded":["PUBMED"],"lcsb.mapviewer.model.map.compartment.PathwayCompartment":["GO","MESH_2012","PUBMED"],"lcsb.mapviewer.model.map.species.SimpleMolecule":["CHEBI","HMDB","KEGG_COMPOUND","PUBCHEM","PUBCHEM_SUBSTANCE","PUBMED"],"lcsb.mapviewer.model.map.reaction.type.BooleanLogicGateReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.species.ReceptorProtein":["CHEMBL_TARGET","EC","ENSEMBL","ENTREZ","HGNC","HGNC_SYMBOL","INTERPRO","KEGG_GENES","MGD","PANTHER","PUBMED","REFSEQ","UNIPROT","UNIPROT_ISOFORM"],"lcsb.mapviewer.model.map.reaction.type.UnknownTransitionReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.reaction.type.TranscriptionReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.species.Gene":["ENSEMBL","ENTREZ","HGNC","HGNC_SYMBOL","KEGG_GENES","MGD","PANTHER","PUBMED","REFSEQ","UNIPROT"],"lcsb.mapviewer.model.map.compartment.OvalCompartment":["GO","MESH_2012","PUBMED"],"lcsb.mapviewer.model.map.reaction.type.PositiveInfluenceReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.reaction.type.ReducedTriggerReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.species.Protein":["CHEMBL_TARGET","EC","ENSEMBL","ENTREZ","HGNC","HGNC_SYMBOL","INTERPRO","KEGG_GENES","MGD","PANTHER","PUBMED","REFSEQ","UNIPROT","UNIPROT_ISOFORM","CHEMBL_COMPOUND"],"lcsb.mapviewer.model.map.reaction.type.UnknownReducedPhysicalStimulationReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.BioEntity":["PUBMED"],"lcsb.mapviewer.model.map.species.GenericProtein":["CHEMBL_TARGET","EC","ENSEMBL","ENTREZ","HGNC","HGNC_SYMBOL","INTERPRO","KEGG_GENES","MGD","PANTHER","PUBMED","REFSEQ","UNIPROT","UNIPROT_ISOFORM"],"lcsb.mapviewer.model.map.reaction.type.TransportReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.species.IonChannelProtein":["CHEMBL_TARGET","EC","ENSEMBL","ENTREZ","HGNC","HGNC_SYMBOL","INTERPRO","KEGG_GENES","MGD","PANTHER","PUBMED","REFSEQ","UNIPROT","UNIPROT_ISOFORM"],"lcsb.mapviewer.model.map.reaction.type.UnknownReducedModulationReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.species.Phenotype":["GO","MESH_2012","OMIM","PUBMED"],"lcsb.mapviewer.model.map.species.Drug":["CHEBI","CHEMBL_COMPOUND","DRUGBANK","HMDB","PUBMED"],"lcsb.mapviewer.model.map.species.Element":["PUBMED"],"lcsb.mapviewer.model.map.reaction.type.DissociationReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.compartment.SquareCompartment":["GO","MESH_2012","PUBMED"],"lcsb.mapviewer.model.map.species.Ion":["CHEBI","HMDB","KEGG_COMPOUND","PUBCHEM","PUBCHEM_SUBSTANCE","PUBMED"],"lcsb.mapviewer.model.map.reaction.Reaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.reaction.type.HeterodimerAssociationReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.compartment.RightSquareCompartment":["GO","MESH_2012","PUBMED"],"lcsb.mapviewer.model.map.reaction.type.TranslationReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.reaction.type.UnknownPositiveInfluenceReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.reaction.type.ReducedModulationReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.species.AntisenseRna":["PUBMED"],"lcsb.mapviewer.model.map.species.Complex":["CHEMBL_TARGET","EC","GO","INTERPRO","MESH_2012","PUBMED"],"lcsb.mapviewer.model.map.species.Unknown":["PUBMED"],"lcsb.mapviewer.model.map.reaction.type.TruncationReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.compartment.LeftSquareCompartment":["GO","MESH_2012","PUBMED"],"lcsb.mapviewer.model.map.reaction.type.UnknownNegativeInfluenceReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.reaction.type.NegativeInfluenceReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.species.TruncatedProtein":["CHEMBL_TARGET","EC","ENSEMBL","ENTREZ","HGNC","HGNC_SYMBOL","INTERPRO","KEGG_GENES","MGD","PANTHER","PUBMED","REFSEQ","UNIPROT","UNIPROT_ISOFORM","CHEMBL_COMPOUND"],"lcsb.mapviewer.model.map.compartment.Compartment":["GO","MESH_2012","PUBMED"],"lcsb.mapviewer.model.map.compartment.TopSquareCompartment":["GO","MESH_2012","PUBMED"],"lcsb.mapviewer.model.map.species.Species":["PUBMED"],"lcsb.mapviewer.model.map.species.Rna":["ENSEMBL","ENTREZ","HGNC","HGNC_SYMBOL","KEGG_GENES","MGD","PANTHER","PUBMED","REFSEQ","UNIPROT"],"lcsb.mapviewer.model.map.reaction.type.KnownTransitionOmittedReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.reaction.type.StateTransitionReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"]},"element-annotators":{"lcsb.mapviewer.model.map.reaction.type.UnknownReducedTriggerReaction":[],"lcsb.mapviewer.model.map.compartment.BottomSquareCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.reaction.type.ReducedPhysicalStimulationReaction":[],"lcsb.mapviewer.model.map.species.Chemical":["Chebi"],"lcsb.mapviewer.model.map.species.Degraded":[],"lcsb.mapviewer.model.map.compartment.PathwayCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.species.SimpleMolecule":["Chebi"],"lcsb.mapviewer.model.map.reaction.type.BooleanLogicGateReaction":[],"lcsb.mapviewer.model.map.species.ReceptorProtein":["Biocompendium","HGNC"],"lcsb.mapviewer.model.map.reaction.type.UnknownTransitionReaction":[],"lcsb.mapviewer.model.map.reaction.type.TranscriptionReaction":[],"lcsb.mapviewer.model.map.species.Gene":["HGNC"],"lcsb.mapviewer.model.map.compartment.OvalCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.reaction.type.PositiveInfluenceReaction":[],"lcsb.mapviewer.model.map.reaction.type.ReducedTriggerReaction":[],"lcsb.mapviewer.model.map.species.Protein":["Biocompendium","HGNC"],"lcsb.mapviewer.model.map.reaction.type.UnknownReducedPhysicalStimulationReaction":[],"lcsb.mapviewer.model.map.BioEntity":[],"lcsb.mapviewer.model.map.species.GenericProtein":["Biocompendium","HGNC"],"lcsb.mapviewer.model.map.reaction.type.TransportReaction":[],"lcsb.mapviewer.model.map.species.IonChannelProtein":["Biocompendium","HGNC"],"lcsb.mapviewer.model.map.reaction.type.UnknownReducedModulationReaction":[],"lcsb.mapviewer.model.map.species.Phenotype":["Gene Ontology"],"lcsb.mapviewer.model.map.species.Drug":[],"lcsb.mapviewer.model.map.species.Element":[],"lcsb.mapviewer.model.map.reaction.type.DissociationReaction":[],"lcsb.mapviewer.model.map.compartment.SquareCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.species.Ion":["Chebi"],"lcsb.mapviewer.model.map.reaction.Reaction":[],"lcsb.mapviewer.model.map.reaction.type.HeterodimerAssociationReaction":[],"lcsb.mapviewer.model.map.compartment.RightSquareCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.reaction.type.TranslationReaction":[],"lcsb.mapviewer.model.map.reaction.type.UnknownPositiveInfluenceReaction":[],"lcsb.mapviewer.model.map.reaction.type.ReducedModulationReaction":[],"lcsb.mapviewer.model.map.species.AntisenseRna":[],"lcsb.mapviewer.model.map.species.Complex":["Gene Ontology"],"lcsb.mapviewer.model.map.species.Unknown":[],"lcsb.mapviewer.model.map.reaction.type.TruncationReaction":[],"lcsb.mapviewer.model.map.compartment.LeftSquareCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.reaction.type.UnknownNegativeInfluenceReaction":[],"lcsb.mapviewer.model.map.reaction.type.NegativeInfluenceReaction":[],"lcsb.mapviewer.model.map.species.TruncatedProtein":["Biocompendium","HGNC"],"lcsb.mapviewer.model.map.compartment.Compartment":["Gene Ontology"],"lcsb.mapviewer.model.map.compartment.TopSquareCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.species.Species":[],"lcsb.mapviewer.model.map.species.Rna":["HGNC"],"lcsb.mapviewer.model.map.reaction.type.KnownTransitionOmittedReaction":[],"lcsb.mapviewer.model.map.reaction.type.StateTransitionReaction":[]},"project-upload":{"auto-resize":true,"sbgn":false,"cache-data":false,"semantic-zooming":false,"annotate-model":false,"validate-miriam":true},"annotators-parameters":{}},"removed":false,"surname":"","minColor":null,"name":"admin","neutralColor":null,"maxColor":null,"id":1,"login":"admin","email":"piotr.gawron@uni.lu"}
\ No newline at end of file
diff --git a/frontend-js/testFiles/apiCalls/users/token=ADMIN_TOKEN_ID& b/frontend-js/testFiles/apiCalls/users/token=ADMIN_TOKEN_ID&
new file mode 100644
index 0000000000..276e2108f4
--- /dev/null
+++ b/frontend-js/testFiles/apiCalls/users/token=ADMIN_TOKEN_ID&
@@ -0,0 +1 @@
+[{"simpleColor":null,"privileges":[{"type":"EDIT_COMMENTS_PROJECT","value":0,"objectId":19184},{"type":"VIEW_PROJECT","value":0,"objectId":19184},{"type":"VIEW_PROJECT","value":1,"objectId":21432},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":21968},{"type":"VIEW_PROJECT","value":1,"objectId":16668},{"type":"EDIT_COMMENTS_PROJECT","value":0,"objectId":18039},{"type":"VIEW_PROJECT","value":1,"objectId":18},{"type":"EDIT_COMMENTS_PROJECT","value":0,"objectId":17051},{"type":"USER_MANAGEMENT","value":0},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":19102},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":21966},{"type":"EDIT_COMMENTS_PROJECT","value":0,"objectId":16668},{"type":"EDIT_COMMENTS_PROJECT","value":0,"objectId":19187},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":19103},{"type":"VIEW_PROJECT","value":1,"objectId":19103},{"type":"VIEW_PROJECT","value":1,"objectId":19},{"type":"VIEW_PROJECT","value":1,"objectId":21113},{"type":"ADD_MAP","value":0},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":21968},{"type":"VIEW_PROJECT","value":1,"objectId":9},{"type":"VIEW_PROJECT","value":1,"objectId":11},{"type":"CUSTOM_LAYOUTS","value":0},{"type":"EDIT_COMMENTS_PROJECT","value":0,"objectId":14898},{"type":"VIEW_PROJECT","value":1,"objectId":20812},{"type":"VIEW_PROJECT","value":1,"objectId":7},{"type":"CONFIGURATION_MANAGE","value":0},{"type":"MANAGE_GENOMES","value":1},{"type":"VIEW_PROJECT","value":1,"objectId":21417},{"type":"VIEW_PROJECT","value":1,"objectId":20},{"type":"VIEW_PROJECT","value":1,"objectId":22},{"type":"EDIT_COMMENTS_PROJECT","value":0,"objectId":19102},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":18039},{"type":"VIEW_PROJECT","value":1,"objectId":14898},{"type":"VIEW_PROJECT","value":1,"objectId":21},{"type":"VIEW_PROJECT","value":1,"objectId":10},{"type":"VIEW_PROJECT","value":1,"objectId":20604},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":15764},{"type":"VIEW_PROJECT","value":1,"objectId":1},{"type":"VIEW_PROJECT","value":1,"objectId":17051},{"type":"EDIT_COMMENTS_PROJECT","value":0,"objectId":15763},{"type":"VIEW_PROJECT","value":1,"objectId":21424},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":16668},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":19186},{"type":"VIEW_PROJECT","value":1,"objectId":8},{"type":"VIEW_PROJECT","value":1,"objectId":19102},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":19184},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":17051},{"type":"VIEW_PROJECT","value":1,"objectId":15763},{"type":"VIEW_PROJECT","value":1,"objectId":18305},{"type":"VIEW_PROJECT","value":1,"objectId":18115},{"type":"VIEW_PROJECT","value":1,"objectId":20620},{"type":"EDIT_COMMENTS_PROJECT","value":0,"objectId":18115},{"type":"EDIT_COMMENTS_PROJECT","value":0,"objectId":15764},{"type":"VIEW_PROJECT","value":1,"objectId":18039},{"type":"VIEW_PROJECT","value":1,"objectId":19187},{"type":"PROJECT_MANAGEMENT","value":0},{"type":"VIEW_PROJECT","value":1,"objectId":21430},{"type":"EDIT_COMMENTS_PROJECT","value":0,"objectId":19186},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":15763},{"type":"VIEW_PROJECT","value":1,"objectId":17},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":19187},{"type":"VIEW_PROJECT","value":1,"objectId":19186},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":14898},{"type":"VIEW_PROJECT","value":1,"objectId":6},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":21966},{"type":"VIEW_PROJECT","value":1,"objectId":21968},{"type":"VIEW_PROJECT","value":1,"objectId":15764},{"type":"VIEW_PROJECT","value":1,"objectId":20603},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":18115},{"type":"VIEW_PROJECT","value":1,"objectId":21966},{"type":"EDIT_COMMENTS_PROJECT","value":0,"objectId":19103},{"type":"VIEW_PROJECT","value":1,"objectId":null},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":null},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":null},{"type":"CUSTOM_LAYOUTS_AVAILABLE","value":0}],"preferences":{"element-required-annotations":{"lcsb.mapviewer.model.map.reaction.type.UnknownReducedTriggerReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.compartment.BottomSquareCompartment":{"require-at-least-one":false,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.ReducedPhysicalStimulationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.Chemical":{"require-at-least-one":true,"annotation-list":["PUBCHEM_SUBSTANCE","PUBCHEM","CHEBI"]},"lcsb.mapviewer.model.map.species.Degraded":{"require-at-least-one":false,"annotation-list":[]},"lcsb.mapviewer.model.map.compartment.PathwayCompartment":{"require-at-least-one":false,"annotation-list":[]},"lcsb.mapviewer.model.map.species.SimpleMolecule":{"require-at-least-one":true,"annotation-list":["PUBCHEM_SUBSTANCE","PUBCHEM","CHEBI"]},"lcsb.mapviewer.model.map.reaction.type.BooleanLogicGateReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.ReceptorProtein":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.reaction.type.UnknownTransitionReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.TranscriptionReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.Gene":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.compartment.OvalCompartment":{"require-at-least-one":false,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.PositiveInfluenceReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.ReducedTriggerReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.Protein":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.reaction.type.UnknownReducedPhysicalStimulationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.BioEntity":{"require-at-least-one":false,"annotation-list":[]},"lcsb.mapviewer.model.map.species.GenericProtein":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.reaction.type.TransportReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.IonChannelProtein":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.reaction.type.UnknownReducedModulationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.Phenotype":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Drug":{"require-at-least-one":false,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Element":{"require-at-least-one":false,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.DissociationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.compartment.SquareCompartment":{"require-at-least-one":false,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Ion":{"require-at-least-one":true,"annotation-list":["PUBCHEM_SUBSTANCE","PUBCHEM","CHEBI"]},"lcsb.mapviewer.model.map.reaction.Reaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.HeterodimerAssociationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.compartment.RightSquareCompartment":{"require-at-least-one":false,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.TranslationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.UnknownPositiveInfluenceReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.ReducedModulationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.AntisenseRna":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Complex":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Unknown":{"require-at-least-one":false,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.TruncationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.compartment.LeftSquareCompartment":{"require-at-least-one":false,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.UnknownNegativeInfluenceReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.NegativeInfluenceReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.TruncatedProtein":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.compartment.Compartment":{"require-at-least-one":false,"annotation-list":[]},"lcsb.mapviewer.model.map.compartment.TopSquareCompartment":{"require-at-least-one":false,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Species":{"require-at-least-one":false,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Rna":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.reaction.type.KnownTransitionOmittedReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.StateTransitionReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]}},"element-valid-annotations":{"lcsb.mapviewer.model.map.reaction.type.UnknownReducedTriggerReaction":["PUBMED","COG","KEGG_REACTION","REACTOME","KEGG_PATHWAY"],"lcsb.mapviewer.model.map.compartment.BottomSquareCompartment":["PUBMED","GO","MESH_2012"],"lcsb.mapviewer.model.map.reaction.type.ReducedPhysicalStimulationReaction":["PUBMED","COG","KEGG_REACTION","REACTOME","KEGG_PATHWAY"],"lcsb.mapviewer.model.map.species.Chemical":["PUBCHEM_SUBSTANCE","PUBMED","PUBCHEM","HMDB","CHEBI","KEGG_COMPOUND"],"lcsb.mapviewer.model.map.species.Degraded":["PUBMED"],"lcsb.mapviewer.model.map.compartment.PathwayCompartment":["PUBMED","GO","MESH_2012"],"lcsb.mapviewer.model.map.species.SimpleMolecule":["PUBCHEM_SUBSTANCE","PUBMED","PUBCHEM","HMDB","CHEBI","KEGG_COMPOUND"],"lcsb.mapviewer.model.map.reaction.type.BooleanLogicGateReaction":["PUBMED","COG","KEGG_REACTION","REACTOME","KEGG_PATHWAY"],"lcsb.mapviewer.model.map.species.ReceptorProtein":["KEGG_GENES","INTERPRO","HGNC_SYMBOL","UNIPROT","CHEMBL_TARGET","ENSEMBL","PANTHER","EC","REFSEQ","PUBMED","HGNC","ENTREZ","MGD","UNIPROT_ISOFORM"],"lcsb.mapviewer.model.map.reaction.type.UnknownTransitionReaction":["PUBMED","COG","KEGG_REACTION","REACTOME","KEGG_PATHWAY"],"lcsb.mapviewer.model.map.reaction.type.TranscriptionReaction":["PUBMED","COG","KEGG_REACTION","REACTOME","KEGG_PATHWAY"],"lcsb.mapviewer.model.map.species.Gene":["KEGG_GENES","REFSEQ","PUBMED","HGNC","HGNC_SYMBOL","UNIPROT","ENSEMBL","PANTHER","ENTREZ","MGD"],"lcsb.mapviewer.model.map.compartment.OvalCompartment":["PUBMED","GO","MESH_2012"],"lcsb.mapviewer.model.map.reaction.type.PositiveInfluenceReaction":["PUBMED","COG","KEGG_REACTION","REACTOME","KEGG_PATHWAY"],"lcsb.mapviewer.model.map.reaction.type.ReducedTriggerReaction":["PUBMED","COG","KEGG_REACTION","REACTOME","KEGG_PATHWAY"],"lcsb.mapviewer.model.map.species.Protein":["KEGG_GENES","INTERPRO","HGNC_SYMBOL","UNIPROT","CHEMBL_TARGET","ENSEMBL","PANTHER","EC","REFSEQ","PUBMED","HGNC","ENTREZ","MGD","UNIPROT_ISOFORM"],"lcsb.mapviewer.model.map.reaction.type.UnknownReducedPhysicalStimulationReaction":["PUBMED","COG","KEGG_REACTION","REACTOME","KEGG_PATHWAY"],"lcsb.mapviewer.model.map.BioEntity":["PUBMED"],"lcsb.mapviewer.model.map.species.GenericProtein":["KEGG_GENES","INTERPRO","HGNC_SYMBOL","UNIPROT","CHEMBL_TARGET","ENSEMBL","PANTHER","EC","REFSEQ","PUBMED","HGNC","ENTREZ","MGD","UNIPROT_ISOFORM"],"lcsb.mapviewer.model.map.reaction.type.TransportReaction":["PUBMED","COG","KEGG_REACTION","REACTOME","KEGG_PATHWAY"],"lcsb.mapviewer.model.map.species.IonChannelProtein":["KEGG_GENES","INTERPRO","HGNC_SYMBOL","UNIPROT","CHEMBL_TARGET","ENSEMBL","PANTHER","EC","REFSEQ","PUBMED","HGNC","ENTREZ","MGD","UNIPROT_ISOFORM"],"lcsb.mapviewer.model.map.reaction.type.UnknownReducedModulationReaction":["PUBMED","COG","KEGG_REACTION","REACTOME","KEGG_PATHWAY"],"lcsb.mapviewer.model.map.species.Phenotype":["PUBMED","OMIM","GO","MESH_2012"],"lcsb.mapviewer.model.map.species.Drug":["CHEMBL_COMPOUND","DRUGBANK","PUBMED","HMDB","CHEBI"],"lcsb.mapviewer.model.map.species.Element":["PUBMED"],"lcsb.mapviewer.model.map.reaction.type.DissociationReaction":["PUBMED","COG","KEGG_REACTION","REACTOME","KEGG_PATHWAY"],"lcsb.mapviewer.model.map.compartment.SquareCompartment":["PUBMED","GO","MESH_2012"],"lcsb.mapviewer.model.map.species.Ion":["PUBCHEM_SUBSTANCE","PUBMED","PUBCHEM","HMDB","CHEBI","KEGG_COMPOUND"],"lcsb.mapviewer.model.map.reaction.Reaction":["PUBMED","COG","KEGG_REACTION","REACTOME","KEGG_PATHWAY"],"lcsb.mapviewer.model.map.reaction.type.HeterodimerAssociationReaction":["PUBMED","COG","KEGG_REACTION","REACTOME","KEGG_PATHWAY"],"lcsb.mapviewer.model.map.compartment.RightSquareCompartment":["PUBMED","GO","MESH_2012"],"lcsb.mapviewer.model.map.reaction.type.TranslationReaction":["PUBMED","COG","KEGG_REACTION","REACTOME","KEGG_PATHWAY"],"lcsb.mapviewer.model.map.reaction.type.UnknownPositiveInfluenceReaction":["PUBMED","COG","KEGG_REACTION","REACTOME","KEGG_PATHWAY"],"lcsb.mapviewer.model.map.reaction.type.ReducedModulationReaction":["PUBMED","COG","KEGG_REACTION","REACTOME","KEGG_PATHWAY"],"lcsb.mapviewer.model.map.species.AntisenseRna":["PUBMED"],"lcsb.mapviewer.model.map.species.Complex":["EC","PUBMED","INTERPRO","CHEMBL_TARGET","GO","MESH_2012"],"lcsb.mapviewer.model.map.species.Unknown":["PUBMED"],"lcsb.mapviewer.model.map.reaction.type.TruncationReaction":["PUBMED","COG","KEGG_REACTION","REACTOME","KEGG_PATHWAY"],"lcsb.mapviewer.model.map.compartment.LeftSquareCompartment":["PUBMED","GO","MESH_2012"],"lcsb.mapviewer.model.map.reaction.type.UnknownNegativeInfluenceReaction":["PUBMED","COG","KEGG_REACTION","REACTOME","KEGG_PATHWAY"],"lcsb.mapviewer.model.map.reaction.type.NegativeInfluenceReaction":["PUBMED","COG","KEGG_REACTION","REACTOME","KEGG_PATHWAY"],"lcsb.mapviewer.model.map.species.TruncatedProtein":["KEGG_GENES","INTERPRO","HGNC_SYMBOL","UNIPROT","CHEMBL_TARGET","ENSEMBL","PANTHER","EC","REFSEQ","PUBMED","HGNC","ENTREZ","MGD","UNIPROT_ISOFORM"],"lcsb.mapviewer.model.map.compartment.Compartment":["PUBMED","GO","MESH_2012"],"lcsb.mapviewer.model.map.compartment.TopSquareCompartment":["PUBMED","GO","MESH_2012"],"lcsb.mapviewer.model.map.species.Species":["PUBMED"],"lcsb.mapviewer.model.map.species.Rna":["KEGG_GENES","REFSEQ","PUBMED","HGNC","HGNC_SYMBOL","UNIPROT","ENSEMBL","PANTHER","ENTREZ","MGD"],"lcsb.mapviewer.model.map.reaction.type.KnownTransitionOmittedReaction":["PUBMED","COG","KEGG_REACTION","REACTOME","KEGG_PATHWAY"],"lcsb.mapviewer.model.map.reaction.type.StateTransitionReaction":["PUBMED","COG","KEGG_REACTION","REACTOME","KEGG_PATHWAY"]},"element-annotators":{"lcsb.mapviewer.model.map.reaction.type.UnknownReducedTriggerReaction":[],"lcsb.mapviewer.model.map.compartment.BottomSquareCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.reaction.type.ReducedPhysicalStimulationReaction":[],"lcsb.mapviewer.model.map.species.Chemical":["Chebi"],"lcsb.mapviewer.model.map.species.Degraded":[],"lcsb.mapviewer.model.map.compartment.PathwayCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.species.SimpleMolecule":["Chebi"],"lcsb.mapviewer.model.map.reaction.type.BooleanLogicGateReaction":[],"lcsb.mapviewer.model.map.species.ReceptorProtein":["Biocompendium","HGNC"],"lcsb.mapviewer.model.map.reaction.type.UnknownTransitionReaction":[],"lcsb.mapviewer.model.map.reaction.type.TranscriptionReaction":[],"lcsb.mapviewer.model.map.species.Gene":["HGNC"],"lcsb.mapviewer.model.map.compartment.OvalCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.reaction.type.PositiveInfluenceReaction":[],"lcsb.mapviewer.model.map.reaction.type.ReducedTriggerReaction":[],"lcsb.mapviewer.model.map.species.Protein":["Biocompendium","HGNC"],"lcsb.mapviewer.model.map.reaction.type.UnknownReducedPhysicalStimulationReaction":[],"lcsb.mapviewer.model.map.BioEntity":[],"lcsb.mapviewer.model.map.species.GenericProtein":["Biocompendium","HGNC"],"lcsb.mapviewer.model.map.reaction.type.TransportReaction":[],"lcsb.mapviewer.model.map.species.IonChannelProtein":["Biocompendium","HGNC"],"lcsb.mapviewer.model.map.reaction.type.UnknownReducedModulationReaction":[],"lcsb.mapviewer.model.map.species.Phenotype":["Gene Ontology"],"lcsb.mapviewer.model.map.species.Drug":[],"lcsb.mapviewer.model.map.species.Element":[],"lcsb.mapviewer.model.map.reaction.type.DissociationReaction":[],"lcsb.mapviewer.model.map.compartment.SquareCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.species.Ion":["Chebi"],"lcsb.mapviewer.model.map.reaction.Reaction":[],"lcsb.mapviewer.model.map.reaction.type.HeterodimerAssociationReaction":[],"lcsb.mapviewer.model.map.compartment.RightSquareCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.reaction.type.TranslationReaction":[],"lcsb.mapviewer.model.map.reaction.type.UnknownPositiveInfluenceReaction":[],"lcsb.mapviewer.model.map.reaction.type.ReducedModulationReaction":[],"lcsb.mapviewer.model.map.species.AntisenseRna":[],"lcsb.mapviewer.model.map.species.Complex":["Gene Ontology"],"lcsb.mapviewer.model.map.species.Unknown":[],"lcsb.mapviewer.model.map.reaction.type.TruncationReaction":[],"lcsb.mapviewer.model.map.compartment.LeftSquareCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.reaction.type.UnknownNegativeInfluenceReaction":[],"lcsb.mapviewer.model.map.reaction.type.NegativeInfluenceReaction":[],"lcsb.mapviewer.model.map.species.TruncatedProtein":["Biocompendium","HGNC"],"lcsb.mapviewer.model.map.compartment.Compartment":["Gene Ontology"],"lcsb.mapviewer.model.map.compartment.TopSquareCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.species.Species":[],"lcsb.mapviewer.model.map.species.Rna":["HGNC"],"lcsb.mapviewer.model.map.reaction.type.KnownTransitionOmittedReaction":[],"lcsb.mapviewer.model.map.reaction.type.StateTransitionReaction":[]},"project-upload":{"auto-resize":true,"sbgn":false,"cache-data":false,"semantic-zooming":false,"annotate-model":false,"validate-miriam":false},"annotators-parameters":{}},"removed":false,"surname":"","minColor":null,"name":"","neutralColor":null,"maxColor":null,"id":3,"login":"anonymous","email":""},{"simpleColor":null,"privileges":[{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":10},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":6},{"type":"VIEW_PROJECT","value":1,"objectId":10},{"type":"USER_MANAGEMENT","value":1},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":18},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":14898},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":20603},{"type":"VIEW_PROJECT","value":1,"objectId":18115},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":20812},{"type":"VIEW_PROJECT","value":1,"objectId":21432},{"type":"VIEW_PROJECT","value":1,"objectId":15764},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":17051},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":19},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":7},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":15763},{"type":"VIEW_PROJECT","value":1,"objectId":9},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":21417},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":19103},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":21432},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":21966},{"type":"VIEW_PROJECT","value":1,"objectId":19187},{"type":"VIEW_PROJECT","value":1,"objectId":20812},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":19187},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":20604},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":21430},{"type":"VIEW_PROJECT","value":1,"objectId":17},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":20620},{"type":"VIEW_PROJECT","value":1,"objectId":19186},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":19102},{"type":"CUSTOM_LAYOUTS","value":100},{"type":"VIEW_PROJECT","value":1,"objectId":19103},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":20620},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":21113},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":19187},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":16668},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":19186},{"type":"VIEW_PROJECT","value":1,"objectId":21},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":15764},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":19103},{"type":"VIEW_PROJECT","value":1,"objectId":20603},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":19184},{"type":"VIEW_PROJECT","value":1,"objectId":19102},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":1},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":9},{"type":"CONFIGURATION_MANAGE","value":1},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":21417},{"type":"MANAGE_GENOMES","value":1},{"type":"VIEW_PROJECT","value":1,"objectId":18039},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":20812},{"type":"VIEW_PROJECT","value":1,"objectId":21968},{"type":"VIEW_PROJECT","value":1,"objectId":14898},{"type":"VIEW_PROJECT","value":1,"objectId":20},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":18039},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":19102},{"type":"VIEW_PROJECT","value":1,"objectId":21966},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":17},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":20},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":21113},{"type":"PROJECT_MANAGEMENT","value":1},{"type":"VIEW_PROJECT","value":1,"objectId":21417},{"type":"VIEW_PROJECT","value":1,"objectId":6},{"type":"VIEW_PROJECT","value":1,"objectId":19},{"type":"VIEW_PROJECT","value":1,"objectId":19184},{"type":"VIEW_PROJECT","value":1,"objectId":21424},{"type":"VIEW_PROJECT","value":1,"objectId":22},{"type":"VIEW_PROJECT","value":1,"objectId":18},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":14898},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":15763},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":17051},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":21424},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":11},{"type":"VIEW_PROJECT","value":1,"objectId":20604},{"type":"VIEW_PROJECT","value":1,"objectId":15763},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":21430},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":15764},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":18115},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":21},{"type":"ADD_MAP","value":1},{"type":"VIEW_PROJECT","value":1,"objectId":21430},{"type":"VIEW_PROJECT","value":1,"objectId":1},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":19186},{"type":"VIEW_PROJECT","value":1,"objectId":16668},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":16668},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":21432},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":21966},{"type":"VIEW_PROJECT","value":1,"objectId":7},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":22},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":20603},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":8},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":21424},{"type":"VIEW_PROJECT","value":1,"objectId":21113},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":19184},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":18115},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":21968},{"type":"VIEW_PROJECT","value":1,"objectId":17051},{"type":"VIEW_PROJECT","value":1,"objectId":20620},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":20604},{"type":"LAYOUT_MANAGEMENT","value":1,"objectId":21968},{"type":"VIEW_PROJECT","value":1,"objectId":11},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":18039},{"type":"VIEW_PROJECT","value":1,"objectId":8},{"type":"VIEW_PROJECT","value":1,"objectId":null},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":null},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":null},{"type":"CUSTOM_LAYOUTS_AVAILABLE","value":94}],"preferences":{"element-required-annotations":{"lcsb.mapviewer.model.map.reaction.type.UnknownReducedTriggerReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.compartment.BottomSquareCompartment":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.ReducedPhysicalStimulationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.Chemical":{"require-at-least-one":true,"annotation-list":["CHEBI","PUBCHEM","PUBCHEM_SUBSTANCE"]},"lcsb.mapviewer.model.map.species.Degraded":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.compartment.PathwayCompartment":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.SimpleMolecule":{"require-at-least-one":true,"annotation-list":["CHEBI","PUBCHEM","PUBCHEM_SUBSTANCE"]},"lcsb.mapviewer.model.map.reaction.type.BooleanLogicGateReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.ReceptorProtein":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.reaction.type.UnknownTransitionReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.TranscriptionReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.Gene":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.compartment.OvalCompartment":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.PositiveInfluenceReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.ReducedTriggerReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.Protein":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.reaction.type.UnknownReducedPhysicalStimulationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.BioEntity":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.GenericProtein":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.reaction.type.TransportReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.IonChannelProtein":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.reaction.type.UnknownReducedModulationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.Phenotype":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Drug":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Element":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.DissociationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.compartment.SquareCompartment":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Ion":{"require-at-least-one":true,"annotation-list":["CHEBI","PUBCHEM","PUBCHEM_SUBSTANCE"]},"lcsb.mapviewer.model.map.reaction.Reaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.HeterodimerAssociationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.compartment.RightSquareCompartment":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.TranslationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.UnknownPositiveInfluenceReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.ReducedModulationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.AntisenseRna":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Complex":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Unknown":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.TruncationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.compartment.LeftSquareCompartment":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.UnknownNegativeInfluenceReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.NegativeInfluenceReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.TruncatedProtein":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL","CHEMBL_COMPOUND"]},"lcsb.mapviewer.model.map.compartment.Compartment":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.compartment.TopSquareCompartment":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Species":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Rna":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.reaction.type.KnownTransitionOmittedReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.StateTransitionReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]}},"element-valid-annotations":{"lcsb.mapviewer.model.map.reaction.type.UnknownReducedTriggerReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.compartment.BottomSquareCompartment":["GO","MESH_2012","PUBMED"],"lcsb.mapviewer.model.map.reaction.type.ReducedPhysicalStimulationReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.species.Chemical":["CHEBI","HMDB","KEGG_COMPOUND","PUBCHEM","PUBCHEM_SUBSTANCE","PUBMED"],"lcsb.mapviewer.model.map.species.Degraded":["PUBMED"],"lcsb.mapviewer.model.map.compartment.PathwayCompartment":["GO","MESH_2012","PUBMED"],"lcsb.mapviewer.model.map.species.SimpleMolecule":["CHEBI","HMDB","KEGG_COMPOUND","PUBCHEM","PUBCHEM_SUBSTANCE","PUBMED"],"lcsb.mapviewer.model.map.reaction.type.BooleanLogicGateReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.species.ReceptorProtein":["CHEMBL_TARGET","EC","ENSEMBL","ENTREZ","HGNC","HGNC_SYMBOL","INTERPRO","KEGG_GENES","MGD","PANTHER","PUBMED","REFSEQ","UNIPROT","UNIPROT_ISOFORM"],"lcsb.mapviewer.model.map.reaction.type.UnknownTransitionReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.reaction.type.TranscriptionReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.species.Gene":["ENSEMBL","ENTREZ","HGNC","HGNC_SYMBOL","KEGG_GENES","MGD","PANTHER","PUBMED","REFSEQ","UNIPROT"],"lcsb.mapviewer.model.map.compartment.OvalCompartment":["GO","MESH_2012","PUBMED"],"lcsb.mapviewer.model.map.reaction.type.PositiveInfluenceReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.reaction.type.ReducedTriggerReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.species.Protein":["CHEMBL_TARGET","EC","ENSEMBL","ENTREZ","HGNC","HGNC_SYMBOL","INTERPRO","KEGG_GENES","MGD","PANTHER","PUBMED","REFSEQ","UNIPROT","UNIPROT_ISOFORM","CHEMBL_COMPOUND"],"lcsb.mapviewer.model.map.reaction.type.UnknownReducedPhysicalStimulationReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.BioEntity":["PUBMED"],"lcsb.mapviewer.model.map.species.GenericProtein":["CHEMBL_TARGET","EC","ENSEMBL","ENTREZ","HGNC","HGNC_SYMBOL","INTERPRO","KEGG_GENES","MGD","PANTHER","PUBMED","REFSEQ","UNIPROT","UNIPROT_ISOFORM"],"lcsb.mapviewer.model.map.reaction.type.TransportReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.species.IonChannelProtein":["CHEMBL_TARGET","EC","ENSEMBL","ENTREZ","HGNC","HGNC_SYMBOL","INTERPRO","KEGG_GENES","MGD","PANTHER","PUBMED","REFSEQ","UNIPROT","UNIPROT_ISOFORM"],"lcsb.mapviewer.model.map.reaction.type.UnknownReducedModulationReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.species.Phenotype":["GO","MESH_2012","OMIM","PUBMED"],"lcsb.mapviewer.model.map.species.Drug":["CHEBI","CHEMBL_COMPOUND","DRUGBANK","HMDB","PUBMED"],"lcsb.mapviewer.model.map.species.Element":["PUBMED"],"lcsb.mapviewer.model.map.reaction.type.DissociationReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.compartment.SquareCompartment":["GO","MESH_2012","PUBMED"],"lcsb.mapviewer.model.map.species.Ion":["CHEBI","HMDB","KEGG_COMPOUND","PUBCHEM","PUBCHEM_SUBSTANCE","PUBMED"],"lcsb.mapviewer.model.map.reaction.Reaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.reaction.type.HeterodimerAssociationReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.compartment.RightSquareCompartment":["GO","MESH_2012","PUBMED"],"lcsb.mapviewer.model.map.reaction.type.TranslationReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.reaction.type.UnknownPositiveInfluenceReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.reaction.type.ReducedModulationReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.species.AntisenseRna":["PUBMED"],"lcsb.mapviewer.model.map.species.Complex":["CHEMBL_TARGET","EC","GO","INTERPRO","MESH_2012","PUBMED"],"lcsb.mapviewer.model.map.species.Unknown":["PUBMED"],"lcsb.mapviewer.model.map.reaction.type.TruncationReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.compartment.LeftSquareCompartment":["GO","MESH_2012","PUBMED"],"lcsb.mapviewer.model.map.reaction.type.UnknownNegativeInfluenceReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.reaction.type.NegativeInfluenceReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.species.TruncatedProtein":["CHEMBL_TARGET","EC","ENSEMBL","ENTREZ","HGNC","HGNC_SYMBOL","INTERPRO","KEGG_GENES","MGD","PANTHER","PUBMED","REFSEQ","UNIPROT","UNIPROT_ISOFORM","CHEMBL_COMPOUND"],"lcsb.mapviewer.model.map.compartment.Compartment":["GO","MESH_2012","PUBMED"],"lcsb.mapviewer.model.map.compartment.TopSquareCompartment":["GO","MESH_2012","PUBMED"],"lcsb.mapviewer.model.map.species.Species":["PUBMED"],"lcsb.mapviewer.model.map.species.Rna":["ENSEMBL","ENTREZ","HGNC","HGNC_SYMBOL","KEGG_GENES","MGD","PANTHER","PUBMED","REFSEQ","UNIPROT"],"lcsb.mapviewer.model.map.reaction.type.KnownTransitionOmittedReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"],"lcsb.mapviewer.model.map.reaction.type.StateTransitionReaction":["KEGG_PATHWAY","KEGG_REACTION","PUBMED","REACTOME"]},"element-annotators":{"lcsb.mapviewer.model.map.reaction.type.UnknownReducedTriggerReaction":[],"lcsb.mapviewer.model.map.compartment.BottomSquareCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.reaction.type.ReducedPhysicalStimulationReaction":[],"lcsb.mapviewer.model.map.species.Chemical":["Chebi"],"lcsb.mapviewer.model.map.species.Degraded":[],"lcsb.mapviewer.model.map.compartment.PathwayCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.species.SimpleMolecule":["Chebi"],"lcsb.mapviewer.model.map.reaction.type.BooleanLogicGateReaction":[],"lcsb.mapviewer.model.map.species.ReceptorProtein":["Biocompendium","HGNC"],"lcsb.mapviewer.model.map.reaction.type.UnknownTransitionReaction":[],"lcsb.mapviewer.model.map.reaction.type.TranscriptionReaction":[],"lcsb.mapviewer.model.map.species.Gene":["HGNC"],"lcsb.mapviewer.model.map.compartment.OvalCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.reaction.type.PositiveInfluenceReaction":[],"lcsb.mapviewer.model.map.reaction.type.ReducedTriggerReaction":[],"lcsb.mapviewer.model.map.species.Protein":["Biocompendium","HGNC"],"lcsb.mapviewer.model.map.reaction.type.UnknownReducedPhysicalStimulationReaction":[],"lcsb.mapviewer.model.map.BioEntity":[],"lcsb.mapviewer.model.map.species.GenericProtein":["Biocompendium","HGNC"],"lcsb.mapviewer.model.map.reaction.type.TransportReaction":[],"lcsb.mapviewer.model.map.species.IonChannelProtein":["Biocompendium","HGNC"],"lcsb.mapviewer.model.map.reaction.type.UnknownReducedModulationReaction":[],"lcsb.mapviewer.model.map.species.Phenotype":["Gene Ontology"],"lcsb.mapviewer.model.map.species.Drug":[],"lcsb.mapviewer.model.map.species.Element":[],"lcsb.mapviewer.model.map.reaction.type.DissociationReaction":[],"lcsb.mapviewer.model.map.compartment.SquareCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.species.Ion":["Chebi"],"lcsb.mapviewer.model.map.reaction.Reaction":[],"lcsb.mapviewer.model.map.reaction.type.HeterodimerAssociationReaction":[],"lcsb.mapviewer.model.map.compartment.RightSquareCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.reaction.type.TranslationReaction":[],"lcsb.mapviewer.model.map.reaction.type.UnknownPositiveInfluenceReaction":[],"lcsb.mapviewer.model.map.reaction.type.ReducedModulationReaction":[],"lcsb.mapviewer.model.map.species.AntisenseRna":[],"lcsb.mapviewer.model.map.species.Complex":["Gene Ontology"],"lcsb.mapviewer.model.map.species.Unknown":[],"lcsb.mapviewer.model.map.reaction.type.TruncationReaction":[],"lcsb.mapviewer.model.map.compartment.LeftSquareCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.reaction.type.UnknownNegativeInfluenceReaction":[],"lcsb.mapviewer.model.map.reaction.type.NegativeInfluenceReaction":[],"lcsb.mapviewer.model.map.species.TruncatedProtein":["Biocompendium","HGNC"],"lcsb.mapviewer.model.map.compartment.Compartment":["Gene Ontology"],"lcsb.mapviewer.model.map.compartment.TopSquareCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.species.Species":[],"lcsb.mapviewer.model.map.species.Rna":["HGNC"],"lcsb.mapviewer.model.map.reaction.type.KnownTransitionOmittedReaction":[],"lcsb.mapviewer.model.map.reaction.type.StateTransitionReaction":[]},"project-upload":{"auto-resize":true,"sbgn":false,"cache-data":false,"semantic-zooming":false,"annotate-model":false,"validate-miriam":true},"annotators-parameters":{}},"removed":false,"surname":"","minColor":null,"name":"admin","neutralColor":null,"maxColor":null,"id":1,"login":"admin","email":"piotr.gawron@uni.lu"},{"simpleColor":null,"privileges":[{"type":"EDIT_COMMENTS_PROJECT","value":0,"objectId":21968},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":19187},{"type":"PROJECT_MANAGEMENT","value":0},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":17051},{"type":"USER_MANAGEMENT","value":0},{"type":"VIEW_PROJECT","value":0,"objectId":19186},{"type":"EDIT_COMMENTS_PROJECT","value":0,"objectId":21966},{"type":"MANAGE_GENOMES","value":0},{"type":"EDIT_COMMENTS_PROJECT","value":0,"objectId":14898},{"type":"VIEW_PROJECT","value":0,"objectId":17051},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":null},{"type":"EDIT_COMMENTS_PROJECT","value":0,"objectId":19186},{"type":"VIEW_PROJECT","value":1,"objectId":21968},{"type":"CONFIGURATION_MANAGE","value":0},{"type":"VIEW_PROJECT","value":0,"objectId":18115},{"type":"EDIT_COMMENTS_PROJECT","value":0,"objectId":18039},{"type":"EDIT_COMMENTS_PROJECT","value":0,"objectId":19187},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":15764},{"type":"EDIT_COMMENTS_PROJECT","value":0,"objectId":16668},{"type":"EDIT_COMMENTS_PROJECT","value":0,"objectId":null},{"type":"VIEW_PROJECT","value":0,"objectId":16668},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":19103},{"type":"CUSTOM_LAYOUTS","value":1},{"type":"VIEW_PROJECT","value":0,"objectId":15764},{"type":"VIEW_PROJECT","value":0,"objectId":19184},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":19102},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":16668},{"type":"VIEW_PROJECT","value":0,"objectId":15763},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":14898},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":21966},{"type":"VIEW_PROJECT","value":1,"objectId":null},{"type":"VIEW_PROJECT","value":0,"objectId":14898},{"type":"VIEW_PROJECT","value":1,"objectId":21430},{"type":"VIEW_PROJECT","value":1,"objectId":19103},{"type":"EDIT_COMMENTS_PROJECT","value":1,"objectId":21430},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":18115},{"type":"EDIT_COMMENTS_PROJECT","value":0,"objectId":17051},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":15763},{"type":"ADD_MAP","value":0},{"type":"EDIT_COMMENTS_PROJECT","value":0,"objectId":19103},{"type":"EDIT_COMMENTS_PROJECT","value":0,"objectId":19184},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":19184},{"type":"EDIT_COMMENTS_PROJECT","value":0,"objectId":15763},{"type":"VIEW_PROJECT","value":0,"objectId":18039},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":19186},{"type":"VIEW_PROJECT","value":1,"objectId":21966},{"type":"EDIT_COMMENTS_PROJECT","value":0,"objectId":19102},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":18039},{"type":"LAYOUT_MANAGEMENT","value":0,"objectId":21968},{"type":"VIEW_PROJECT","value":0,"objectId":19187},{"type":"EDIT_COMMENTS_PROJECT","value":0,"objectId":15764},{"type":"VIEW_PROJECT","value":1,"objectId":19102},{"type":"EDIT_COMMENTS_PROJECT","value":0,"objectId":18115},{"type":"CUSTOM_LAYOUTS_AVAILABLE","value":1}],"preferences":{"element-required-annotations":{"lcsb.mapviewer.model.map.reaction.type.UnknownReducedTriggerReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.compartment.BottomSquareCompartment":{"require-at-least-one":false,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.ReducedPhysicalStimulationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.Chemical":{"require-at-least-one":true,"annotation-list":["CHEBI","PUBCHEM_SUBSTANCE","PUBCHEM"]},"lcsb.mapviewer.model.map.species.Degraded":{"require-at-least-one":false,"annotation-list":[]},"lcsb.mapviewer.model.map.compartment.PathwayCompartment":{"require-at-least-one":false,"annotation-list":[]},"lcsb.mapviewer.model.map.species.SimpleMolecule":{"require-at-least-one":true,"annotation-list":["CHEBI","PUBCHEM_SUBSTANCE","PUBCHEM"]},"lcsb.mapviewer.model.map.reaction.type.BooleanLogicGateReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.ReceptorProtein":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.reaction.type.UnknownTransitionReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.TranscriptionReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.Gene":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.compartment.OvalCompartment":{"require-at-least-one":false,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.PositiveInfluenceReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.ReducedTriggerReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.Protein":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.reaction.type.UnknownReducedPhysicalStimulationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.BioEntity":{"require-at-least-one":false,"annotation-list":[]},"lcsb.mapviewer.model.map.species.GenericProtein":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.reaction.type.TransportReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.IonChannelProtein":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.reaction.type.UnknownReducedModulationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.Phenotype":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Drug":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Element":{"require-at-least-one":false,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.DissociationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.compartment.SquareCompartment":{"require-at-least-one":false,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Ion":{"require-at-least-one":true,"annotation-list":["CHEBI","PUBCHEM_SUBSTANCE","PUBCHEM"]},"lcsb.mapviewer.model.map.reaction.Reaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.HeterodimerAssociationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.compartment.RightSquareCompartment":{"require-at-least-one":false,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.TranslationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.UnknownPositiveInfluenceReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.ReducedModulationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.AntisenseRna":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Complex":{"require-at-least-one":true,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Unknown":{"require-at-least-one":false,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.TruncationReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.compartment.LeftSquareCompartment":{"require-at-least-one":false,"annotation-list":[]},"lcsb.mapviewer.model.map.reaction.type.UnknownNegativeInfluenceReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.NegativeInfluenceReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.species.TruncatedProtein":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.compartment.Compartment":{"require-at-least-one":false,"annotation-list":[]},"lcsb.mapviewer.model.map.compartment.TopSquareCompartment":{"require-at-least-one":false,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Species":{"require-at-least-one":false,"annotation-list":[]},"lcsb.mapviewer.model.map.species.Rna":{"require-at-least-one":true,"annotation-list":["HGNC","HGNC_SYMBOL"]},"lcsb.mapviewer.model.map.reaction.type.KnownTransitionOmittedReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]},"lcsb.mapviewer.model.map.reaction.type.StateTransitionReaction":{"require-at-least-one":true,"annotation-list":["PUBMED"]}},"element-valid-annotations":{"lcsb.mapviewer.model.map.reaction.type.UnknownReducedTriggerReaction":["KEGG_REACTION","PUBMED","COG","KEGG_PATHWAY","REACTOME"],"lcsb.mapviewer.model.map.compartment.BottomSquareCompartment":["MESH_2012","PUBMED","GO"],"lcsb.mapviewer.model.map.reaction.type.ReducedPhysicalStimulationReaction":["KEGG_REACTION","PUBMED","COG","KEGG_PATHWAY","REACTOME"],"lcsb.mapviewer.model.map.species.Chemical":["KEGG_COMPOUND","PUBMED","CHEBI","HMDB","PUBCHEM_SUBSTANCE","PUBCHEM"],"lcsb.mapviewer.model.map.species.Degraded":["PUBMED"],"lcsb.mapviewer.model.map.compartment.PathwayCompartment":["MESH_2012","PUBMED","GO"],"lcsb.mapviewer.model.map.species.SimpleMolecule":["KEGG_COMPOUND","PUBMED","CHEBI","HMDB","PUBCHEM_SUBSTANCE","PUBCHEM"],"lcsb.mapviewer.model.map.reaction.type.BooleanLogicGateReaction":["KEGG_REACTION","PUBMED","COG","KEGG_PATHWAY","REACTOME"],"lcsb.mapviewer.model.map.species.ReceptorProtein":["HGNC","KEGG_GENES","REFSEQ","INTERPRO","MGD","PUBMED","CHEMBL_TARGET","UNIPROT_ISOFORM","ENTREZ","HGNC_SYMBOL","ENSEMBL","PANTHER","EC","UNIPROT"],"lcsb.mapviewer.model.map.reaction.type.UnknownTransitionReaction":["KEGG_REACTION","PUBMED","COG","KEGG_PATHWAY","REACTOME"],"lcsb.mapviewer.model.map.reaction.type.TranscriptionReaction":["KEGG_REACTION","PUBMED","COG","KEGG_PATHWAY","REACTOME"],"lcsb.mapviewer.model.map.species.Gene":["HGNC","KEGG_GENES","ENTREZ","REFSEQ","MGD","PUBMED","HGNC_SYMBOL","ENSEMBL","PANTHER","UNIPROT"],"lcsb.mapviewer.model.map.compartment.OvalCompartment":["MESH_2012","PUBMED","GO"],"lcsb.mapviewer.model.map.reaction.type.PositiveInfluenceReaction":["KEGG_REACTION","PUBMED","COG","KEGG_PATHWAY","REACTOME"],"lcsb.mapviewer.model.map.reaction.type.ReducedTriggerReaction":["KEGG_REACTION","PUBMED","COG","KEGG_PATHWAY","REACTOME"],"lcsb.mapviewer.model.map.species.Protein":["HGNC","KEGG_GENES","REFSEQ","INTERPRO","MGD","PUBMED","CHEMBL_TARGET","UNIPROT_ISOFORM","ENTREZ","HGNC_SYMBOL","ENSEMBL","PANTHER","EC","UNIPROT"],"lcsb.mapviewer.model.map.reaction.type.UnknownReducedPhysicalStimulationReaction":["KEGG_REACTION","PUBMED","COG","KEGG_PATHWAY","REACTOME"],"lcsb.mapviewer.model.map.BioEntity":["PUBMED"],"lcsb.mapviewer.model.map.species.GenericProtein":["HGNC","KEGG_GENES","REFSEQ","INTERPRO","MGD","PUBMED","CHEMBL_TARGET","UNIPROT_ISOFORM","ENTREZ","HGNC_SYMBOL","ENSEMBL","PANTHER","EC","UNIPROT"],"lcsb.mapviewer.model.map.reaction.type.TransportReaction":["KEGG_REACTION","PUBMED","COG","KEGG_PATHWAY","REACTOME"],"lcsb.mapviewer.model.map.species.IonChannelProtein":["HGNC","KEGG_GENES","REFSEQ","INTERPRO","MGD","PUBMED","CHEMBL_TARGET","UNIPROT_ISOFORM","ENTREZ","HGNC_SYMBOL","ENSEMBL","PANTHER","EC","UNIPROT"],"lcsb.mapviewer.model.map.reaction.type.UnknownReducedModulationReaction":["KEGG_REACTION","PUBMED","COG","KEGG_PATHWAY","REACTOME"],"lcsb.mapviewer.model.map.species.Phenotype":["MESH_2012","PUBMED","OMIM","GO"],"lcsb.mapviewer.model.map.species.Drug":["CHEMBL_COMPOUND","DRUGBANK","PUBMED","CHEBI","HMDB"],"lcsb.mapviewer.model.map.species.Element":["PUBMED"],"lcsb.mapviewer.model.map.reaction.type.DissociationReaction":["KEGG_REACTION","PUBMED","COG","KEGG_PATHWAY","REACTOME"],"lcsb.mapviewer.model.map.compartment.SquareCompartment":["MESH_2012","PUBMED","GO"],"lcsb.mapviewer.model.map.species.Ion":["KEGG_COMPOUND","PUBMED","CHEBI","HMDB","PUBCHEM_SUBSTANCE","PUBCHEM"],"lcsb.mapviewer.model.map.reaction.Reaction":["KEGG_REACTION","PUBMED","COG","KEGG_PATHWAY","REACTOME"],"lcsb.mapviewer.model.map.reaction.type.HeterodimerAssociationReaction":["KEGG_REACTION","PUBMED","COG","KEGG_PATHWAY","REACTOME"],"lcsb.mapviewer.model.map.compartment.RightSquareCompartment":["MESH_2012","PUBMED","GO"],"lcsb.mapviewer.model.map.reaction.type.TranslationReaction":["KEGG_REACTION","PUBMED","COG","KEGG_PATHWAY","REACTOME"],"lcsb.mapviewer.model.map.reaction.type.UnknownPositiveInfluenceReaction":["KEGG_REACTION","PUBMED","COG","KEGG_PATHWAY","REACTOME"],"lcsb.mapviewer.model.map.reaction.type.ReducedModulationReaction":["KEGG_REACTION","PUBMED","COG","KEGG_PATHWAY","REACTOME"],"lcsb.mapviewer.model.map.species.AntisenseRna":["PUBMED"],"lcsb.mapviewer.model.map.species.Complex":["INTERPRO","MESH_2012","PUBMED","EC","CHEMBL_TARGET","GO"],"lcsb.mapviewer.model.map.species.Unknown":["PUBMED"],"lcsb.mapviewer.model.map.reaction.type.TruncationReaction":["KEGG_REACTION","PUBMED","COG","KEGG_PATHWAY","REACTOME"],"lcsb.mapviewer.model.map.compartment.LeftSquareCompartment":["MESH_2012","PUBMED","GO"],"lcsb.mapviewer.model.map.reaction.type.UnknownNegativeInfluenceReaction":["KEGG_REACTION","PUBMED","COG","KEGG_PATHWAY","REACTOME"],"lcsb.mapviewer.model.map.reaction.type.NegativeInfluenceReaction":["KEGG_REACTION","PUBMED","COG","KEGG_PATHWAY","REACTOME"],"lcsb.mapviewer.model.map.species.TruncatedProtein":["HGNC","KEGG_GENES","REFSEQ","INTERPRO","MGD","PUBMED","CHEMBL_TARGET","UNIPROT_ISOFORM","ENTREZ","HGNC_SYMBOL","ENSEMBL","PANTHER","EC","UNIPROT"],"lcsb.mapviewer.model.map.compartment.Compartment":["MESH_2012","PUBMED","GO"],"lcsb.mapviewer.model.map.compartment.TopSquareCompartment":["MESH_2012","PUBMED","GO"],"lcsb.mapviewer.model.map.species.Species":["PUBMED"],"lcsb.mapviewer.model.map.species.Rna":["HGNC","KEGG_GENES","ENTREZ","REFSEQ","MGD","PUBMED","HGNC_SYMBOL","ENSEMBL","PANTHER","UNIPROT"],"lcsb.mapviewer.model.map.reaction.type.KnownTransitionOmittedReaction":["KEGG_REACTION","PUBMED","COG","KEGG_PATHWAY","REACTOME"],"lcsb.mapviewer.model.map.reaction.type.StateTransitionReaction":["KEGG_REACTION","PUBMED","COG","KEGG_PATHWAY","REACTOME"]},"element-annotators":{"lcsb.mapviewer.model.map.reaction.type.UnknownReducedTriggerReaction":[],"lcsb.mapviewer.model.map.compartment.BottomSquareCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.reaction.type.ReducedPhysicalStimulationReaction":[],"lcsb.mapviewer.model.map.species.Chemical":["Chebi"],"lcsb.mapviewer.model.map.species.Degraded":[],"lcsb.mapviewer.model.map.compartment.PathwayCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.species.SimpleMolecule":["Chebi"],"lcsb.mapviewer.model.map.reaction.type.BooleanLogicGateReaction":[],"lcsb.mapviewer.model.map.species.ReceptorProtein":["Biocompendium","HGNC"],"lcsb.mapviewer.model.map.reaction.type.UnknownTransitionReaction":[],"lcsb.mapviewer.model.map.reaction.type.TranscriptionReaction":[],"lcsb.mapviewer.model.map.species.Gene":["HGNC"],"lcsb.mapviewer.model.map.compartment.OvalCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.reaction.type.PositiveInfluenceReaction":[],"lcsb.mapviewer.model.map.reaction.type.ReducedTriggerReaction":[],"lcsb.mapviewer.model.map.species.Protein":["Biocompendium","HGNC"],"lcsb.mapviewer.model.map.reaction.type.UnknownReducedPhysicalStimulationReaction":[],"lcsb.mapviewer.model.map.BioEntity":[],"lcsb.mapviewer.model.map.species.GenericProtein":["Biocompendium","HGNC"],"lcsb.mapviewer.model.map.reaction.type.TransportReaction":[],"lcsb.mapviewer.model.map.species.IonChannelProtein":["Biocompendium","HGNC"],"lcsb.mapviewer.model.map.reaction.type.UnknownReducedModulationReaction":[],"lcsb.mapviewer.model.map.species.Phenotype":["Gene Ontology"],"lcsb.mapviewer.model.map.species.Drug":[],"lcsb.mapviewer.model.map.species.Element":[],"lcsb.mapviewer.model.map.reaction.type.DissociationReaction":[],"lcsb.mapviewer.model.map.compartment.SquareCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.species.Ion":["Chebi"],"lcsb.mapviewer.model.map.reaction.Reaction":[],"lcsb.mapviewer.model.map.reaction.type.HeterodimerAssociationReaction":[],"lcsb.mapviewer.model.map.compartment.RightSquareCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.reaction.type.TranslationReaction":[],"lcsb.mapviewer.model.map.reaction.type.UnknownPositiveInfluenceReaction":[],"lcsb.mapviewer.model.map.reaction.type.ReducedModulationReaction":[],"lcsb.mapviewer.model.map.species.AntisenseRna":[],"lcsb.mapviewer.model.map.species.Complex":["Gene Ontology"],"lcsb.mapviewer.model.map.species.Unknown":[],"lcsb.mapviewer.model.map.reaction.type.TruncationReaction":[],"lcsb.mapviewer.model.map.compartment.LeftSquareCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.reaction.type.UnknownNegativeInfluenceReaction":[],"lcsb.mapviewer.model.map.reaction.type.NegativeInfluenceReaction":[],"lcsb.mapviewer.model.map.species.TruncatedProtein":["Biocompendium","HGNC"],"lcsb.mapviewer.model.map.compartment.Compartment":["Gene Ontology"],"lcsb.mapviewer.model.map.compartment.TopSquareCompartment":["Gene Ontology"],"lcsb.mapviewer.model.map.species.Species":[],"lcsb.mapviewer.model.map.species.Rna":["HGNC"],"lcsb.mapviewer.model.map.reaction.type.KnownTransitionOmittedReaction":[],"lcsb.mapviewer.model.map.reaction.type.StateTransitionReaction":[]},"project-upload":{"auto-resize":true,"sbgn":false,"cache-data":false,"semantic-zooming":false,"annotate-model":false,"validate-miriam":false},"annotators-parameters":{}},"removed":false,"surname":"","minColor":null,"name":"","neutralColor":null,"maxColor":null,"id":16736,"login":"t.t","email":""}]
\ No newline at end of file
diff --git a/web/src/main/webapp/admin.xhtml b/web/src/main/webapp/admin.xhtml
index 1cce7a8d8d..cb45340c66 100644
--- a/web/src/main/webapp/admin.xhtml
+++ b/web/src/main/webapp/admin.xhtml
@@ -38,8 +38,10 @@ function initMap(){
   return minerva.createAdmin({
 		element : element, 
 	}).then(function(result){
-		customMap = result;
-		document.title = result.getProject().getName();
+		if (result!==undefined) {
+		  customMap = result;
+		  document.title = result.getProject().getName();
+		}
 	}).catch(function(rejectReason){
 		minerva.GuiConnector.alert(rejectReason);
 	});
-- 
GitLab