diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ed926716482a19dc9ac0f6f51b58875763b74588..e2ab1d425c3c63d38277f9acf6476eaba3fb0350 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -101,12 +101,39 @@ maven_registry:
     - mvn versions:commit
     - mvn deploy -Pmia -s ci-settings.xml
 
+npm_test:
+  image: cypress/browsers:node17.8.0-chrome99-ff97-slim
+  stage: test
+  script:
+    # install dependencies
+    - cd ui
+    - npm ci
+    - export NODE_OPTIONS=--openssl-legacy-provider
+    # start the server in the background
+    - npm run serve >/dev/null 2>file.txt &
+    - npm run i18n:report
+    - npm run lint
+    # run Cypress tests
+    - export NODE_OPTIONS=''
+    - npx cypress run --browser firefox
+  artifacts:
+    when: always
+    paths:
+      - ui/cypress/videos/**/*.mp4
+      - ui/cypress/screenshots/**/*.png
+    expire_in: 1 day
+
 npm:
   image: node:12-alpine
   stage: package
+  needs: ["maven_test_rest_1","maven_test_rest_others"]
   script:
     - cd ui
     - npm ci
     - npm run build
   tags:
-    - docker
\ No newline at end of file
+    - docker
+  artifacts:
+    when: always
+    paths:
+      - ui/dist
\ No newline at end of file
diff --git a/src/test/java/fr/inra/oresing/rest/ApplicationConfigurationServiceTest.java b/src/test/java/fr/inra/oresing/rest/ApplicationConfigurationServiceTest.java
index dc5437bf410cab1caccb183aa21a9c90bb67cdb8..8945b9b9f971ba1f9c3f58eb455dd21ee08ec62f 100644
--- a/src/test/java/fr/inra/oresing/rest/ApplicationConfigurationServiceTest.java
+++ b/src/test/java/fr/inra/oresing/rest/ApplicationConfigurationServiceTest.java
@@ -54,7 +54,7 @@ public class ApplicationConfigurationServiceTest {
         final Map<String, ConfigurationParsingResult> collect = configurationParsingResults.entrySet()
                 .stream().filter(e -> !e.getValue().getConfigurationParsingResult().isValid())
                 .collect(Collectors.toMap(Map.Entry::getKey, e -> e.getValue().getConfigurationParsingResult()));
-        final String errorsAsString = new ObjectMapper().writeValueAsString(collect);
+        final String errorsAsString = new ObjectMapper().writerWithDefaultPrettyPrinter().writeValueAsString(collect);
         File errorsFile = new File("ui/cypress/fixtures/applications/errors/errors.json");
         log.debug(errorsFile.getAbsolutePath());
         BufferedWriter writer = new BufferedWriter(new FileWriter(errorsFile));
diff --git a/src/test/java/fr/inra/oresing/rest/OreSiResourcesTest.java b/src/test/java/fr/inra/oresing/rest/OreSiResourcesTest.java
index e0c99a49e366abfa1ddc095acac001df2791fac4..8d33ec78e20a88b90aa5e666a1ae5b73c72ae034 100644
--- a/src/test/java/fr/inra/oresing/rest/OreSiResourcesTest.java
+++ b/src/test/java/fr/inra/oresing/rest/OreSiResourcesTest.java
@@ -45,8 +45,7 @@ import org.springframework.test.web.servlet.result.MockMvcResultMatchers;
 import org.springframework.web.util.NestedServletException;
 
 import javax.servlet.http.Cookie;
-import java.io.IOException;
-import java.io.InputStream;
+import java.io.*;
 import java.net.URL;
 import java.nio.charset.StandardCharsets;
 import java.nio.file.Path;
@@ -322,6 +321,36 @@ public class OreSiResourcesTest {
             Assert.assertTrue("Il faut mentionner les lignes en erreur", response.contains("142"));
             Assert.assertTrue("Il faut mentionner les lignes en erreur", response.contains("143"));
         }
+        final String getMonsoere = mockMvc.perform(get("/api/v1/applications/monsore")
+                        .cookie(authCookie)
+                        .accept(MediaType.APPLICATION_JSON))
+                .andReturn().getResponse().getContentAsString();
+        final String getSites = mockMvc.perform(get("/api/v1/applications/monsore/references/sites")
+                        .cookie(authCookie)
+                        .accept(MediaType.APPLICATION_JSON))
+                .andReturn().getResponse().getContentAsString();
+        final String getTypeSites = mockMvc.perform(get("/api/v1/applications/monsore/references/type_de_sites")
+                        .cookie(authCookie)
+                        .accept(MediaType.APPLICATION_JSON))
+                .andReturn().getResponse().getContentAsString();
+        final String getProjet = mockMvc.perform(get("/api/v1/applications/monsore/references/projet")
+                        .cookie(authCookie)
+                        .accept(MediaType.APPLICATION_JSON))
+                .andReturn().getResponse().getContentAsString();
+        final String getPem = mockMvc.perform(get("/api/v1/applications/monsore/data/pem")
+                        .cookie(authCookie)
+                        .accept(MediaType.APPLICATION_JSON))
+                .andReturn().getResponse().getContentAsString();
+        final String getGrantable = mockMvc.perform(get("/api/v1/applications/monsore/dataType/pem/grantable")
+                        .cookie(authCookie)
+                        .accept(MediaType.APPLICATION_JSON))
+                .andReturn().getResponse().getContentAsString();
+        registerFile("ui/cypress/fixtures/applications/ore/monsore/monsoere.json", getMonsoere);
+        registerFile("ui/cypress/fixtures/applications/ore/monsore/datatypes/pem.json", getPem);
+        registerFile("ui/cypress/fixtures/applications/ore/monsore/references/type_de_sites.json", getTypeSites);
+        registerFile("ui/cypress/fixtures/applications/ore/monsore/references/sites.json", getSites);
+        registerFile("ui/cypress/fixtures/applications/ore/monsore/references/projet.json", getProjet);
+        registerFile("ui/cypress/fixtures/applications/ore/monsore/datatypes/authorisation/grantable.json", getGrantable);
 
 //        // restitution de data json
 //        resource = getClass().getResource("/data/compare/export.json");
@@ -398,6 +427,14 @@ public class OreSiResourcesTest {
 
         // changement du fichier de config avec un mauvais (qui ne permet pas d'importer les fichiers
     }
+    public  void registerFile(String filePath, String jsonContent) throws IOException {
+        jsonContent = new ObjectMapper().writerWithDefaultPrettyPrinter().writeValueAsString(jsonContent);
+        File errorsFile = new File(filePath);
+        log.debug(errorsFile.getAbsolutePath());
+        BufferedWriter writer = new BufferedWriter(new FileWriter(errorsFile));
+        writer.write(jsonContent);
+        writer.close();
+    }
 
 
     @Test
diff --git a/ui/.gitignore b/ui/.gitignore
index 7bf753e0a5967f31a7f3f4dafece04ae78540d12..8b90ea902aad6409b1096dbc3cfeb1596e35d0ee 100644
--- a/ui/.gitignore
+++ b/ui/.gitignore
@@ -27,3 +27,4 @@ ui/cypress/videos
 ui/cypress/screenshots
 ui/cypress/downloads
 /public/files/
+/cypress/videos/
diff --git a/ui/cypress.json b/ui/cypress.json
index 831dbf6e36622c4a8ddadfd8d9d7aed89b509b7b..aeb7477eb3f25da3582527d00eeb285b0638a543 100644
--- a/ui/cypress.json
+++ b/ui/cypress.json
@@ -1,12 +1,15 @@
 {
-    "baseUrl": "http://localhost:8080",
-    "env": {
-        "home_url": "/",
-        "login_url": "/login",
-        "applications_url": "/applications",
-        "applicationCreation_url": "/applicationCreation",
-        "monsore_new_authorization_url": "/applications/monsore/dataTypes/pem/authorizations/new",
-        "monsore_table_authorization_url": "/applications/monsore/dataTypes/pem/authorizations",
-        "dataType_monsore_url": "/applications/monsore/dataTypes"
-    }
+  "baseUrl": "http://localhost:8080",
+  "env": {
+    "home_url": "/",
+    "login_url": "/login",
+    "applications_url": "/applications",
+    "applicationCreation_url": "/applicationCreation",
+    "monsore_new_authorization_url": "/applications/monsore/dataTypes/pem/authorizations/new",
+    "monsore_table_authorization_url": "/applications/monsore/dataTypes/pem/authorizations",
+    "dataType_monsore_url": "/applications/monsore/dataTypes"
+  },
+  "videoUploadOnPasses": false,
+  "video": true,
+  "videoCompression": false
 }
\ No newline at end of file
diff --git a/ui/cypress/fixtures/applications/ore/monsore/datatypes/authorisation/grantable.json b/ui/cypress/fixtures/applications/ore/monsore/datatypes/authorisation/grantable.json
new file mode 100644
index 0000000000000000000000000000000000000000..3ab67221b73877ac3dc351359fc1aa0f3cb7efce
--- /dev/null
+++ b/ui/cypress/fixtures/applications/ore/monsore/datatypes/authorisation/grantable.json
@@ -0,0 +1 @@
+"{\"users\":[{\"id\":\"bbe52302-302b-4b25-9bfd-78773fb99444\",\"label\":\"poussin\"},{\"id\":\"653feeba-e4c8-4cc3-b329-aecedc491ced\",\"label\":\"lambda\"}],\"dataGroups\":[{\"id\":\"qualitatif\",\"label\":\"Données qualitatives\"},{\"id\":\"quantitatif\",\"label\":\"Données quantitatives\"},{\"id\":\"referentiel\",\"label\":\"Référentiel\"}],\"authorizationScopes\":[{\"id\":\"localization\",\"label\":\"localization\",\"options\":[{\"id\":\"bassin_versant\",\"label\":\"bassin_versant\",\"children\":[{\"id\":\"bassin_versant.nivelle\",\"label\":\"bassin_versant.nivelle\",\"children\":[]},{\"id\":\"bassin_versant.oir\",\"label\":\"bassin_versant.oir\",\"children\":[]},{\"id\":\"bassin_versant.scarff\",\"label\":\"bassin_versant.scarff\",\"children\":[]}]},{\"id\":\"plateforme\",\"label\":\"plateforme\",\"children\":[{\"id\":\"plateforme.nivelle.nivelle__p1\",\"label\":\"plateforme.nivelle.nivelle__p1\",\"children\":[]},{\"id\":\"plateforme.oir.oir__p1\",\"label\":\"plateforme.oir.oir__p1\",\"children\":[]},{\"id\":\"plateforme.oir.oir__p1.oir__p1__a\",\"label\":\"plateforme.oir.oir__p1.oir__p1__a\",\"children\":[]},{\"id\":\"plateforme.oir.oir__p1.oir__p1__b\",\"label\":\"plateforme.oir.oir__p1.oir__p1__b\",\"children\":[]},{\"id\":\"plateforme.oir.oir__p2\",\"label\":\"plateforme.oir.oir__p2\",\"children\":[]},{\"id\":\"plateforme.scarff.scarff__p1\",\"label\":\"plateforme.scarff.scarff__p1\",\"children\":[]}]}]},{\"id\":\"projet\",\"label\":\"projet\",\"options\":[{\"id\":\"projet_atlantique\",\"label\":\"projet_atlantique\",\"children\":[]},{\"id\":\"projet_manche\",\"label\":\"projet_manche\",\"children\":[]}]}]}"
\ No newline at end of file
diff --git a/ui/cypress/fixtures/authorisation/monsore/new_authorization_request.json b/ui/cypress/fixtures/applications/ore/monsore/datatypes/authorisation/new_authorization_request.json
similarity index 100%
rename from ui/cypress/fixtures/authorisation/monsore/new_authorization_request.json
rename to ui/cypress/fixtures/applications/ore/monsore/datatypes/authorisation/new_authorization_request.json
diff --git a/ui/cypress/fixtures/authorisation/monsore/new_authorization_response.json b/ui/cypress/fixtures/applications/ore/monsore/datatypes/authorisation/new_authorization_response.json
similarity index 100%
rename from ui/cypress/fixtures/authorisation/monsore/new_authorization_response.json
rename to ui/cypress/fixtures/applications/ore/monsore/datatypes/authorisation/new_authorization_response.json
diff --git a/ui/cypress/fixtures/applications/ore/monsore/datatypes/authorisation/post_authorization.json b/ui/cypress/fixtures/applications/ore/monsore/datatypes/authorisation/post_authorization.json
new file mode 100644
index 0000000000000000000000000000000000000000..109567cc0e2206ffa93ab25e83ba2f59cc97eed5
--- /dev/null
+++ b/ui/cypress/fixtures/applications/ore/monsore/datatypes/authorisation/post_authorization.json
@@ -0,0 +1 @@
+{"authorizationId":"aac1171a-9b2b-4c06-9aff-c3b0a00fbe32"}
\ No newline at end of file
diff --git a/ui/cypress/fixtures/applications/ore/monsore/datatypes/authorisation/show_authorization_table.json b/ui/cypress/fixtures/applications/ore/monsore/datatypes/authorisation/show_authorization_table.json
new file mode 100644
index 0000000000000000000000000000000000000000..e3e2d48ef9ec5c9fa5eaa25d0ca6fe2e42aaaf4d
--- /dev/null
+++ b/ui/cypress/fixtures/applications/ore/monsore/datatypes/authorisation/show_authorization_table.json
@@ -0,0 +1,39 @@
+[
+  {
+    "id": "6be968bf-f440-4d0a-aaec-34da8d78b876",
+    "name": null,
+    "users": [
+      {
+        "id": "5a4dbd41-3fc9-4b3e-b593-a46bc888a7f9",
+        "creationDate": 1652693250300,
+        "updateDate": 1652693250300,
+        "login": "poussin",
+        "password": "$2a$12$4gAH34ZwgvgQNS0pbR5dGem1Nle0AT/.UwrZWfqtqMiJ0hXeYMvUG"
+      }
+    ],
+    "application": "4d3eaacb-f661-4187-8236-7e0e2bc78a2c",
+    "dataType": "pem",
+    "authorizations": {
+      "depot": [
+        {
+          "dataGroup": [],
+          "requiredauthorizations": {
+            "projet": "projet_atlantique"
+          },
+          "fromDay": null,
+          "toDay": null
+        }
+      ],
+      "extraction": [
+        {
+          "dataGroup": [],
+          "requiredauthorizations": {
+            "projet": "projet_atlantique"
+          },
+          "fromDay": null,
+          "toDay": null
+        }
+      ]
+    }
+  }
+]
\ No newline at end of file
diff --git a/ui/cypress/fixtures/applications/ore/monsore/datatypes/pem.json b/ui/cypress/fixtures/applications/ore/monsore/datatypes/pem.json
new file mode 100644
index 0000000000000000000000000000000000000000..b561599479ad879834db2d8e9f473f3820990e3f
--- /dev/null
+++ b/ui/cypress/fixtures/applications/ore/monsore/datatypes/pem.json
@@ -0,0 +1 @@
+"{\"variables\":[\"date\",\"projet\",\"site\",\"Couleur des individus\",\"Nombre d'individus\",\"espece\"],\"rows\":[{\"rowId\":\"fcc0803c-076e-4c88-b7a7-040974bac302\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"39\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":268},{\"rowId\":\"6d62c4e8-d9c2-49cb-9ec9-6b22452eca1e\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"38\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":119},{\"rowId\":\"5c719980-9d70-4c50-b119-0a8f9485c0dc\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"15\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":92},{\"rowId\":\"4e9a3e44-6dd3-499e-ad9c-d45ff4ccd271\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":71},{\"rowId\":\"49c7b930-2088-4eb1-89b1-bd4d3c26c321\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"18\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":65},{\"rowId\":\"34875349-2260-40e2-a845-54ad56d6be6e\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":43},{\"rowId\":\"dbed4b9a-a962-474c-990d-c7470df46780\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"54\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":231},{\"rowId\":\"25c06cc1-bf82-42d2-b225-e3f5684cb2d9\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"54\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":29},{\"rowId\":\"f5fb51c1-c40c-4459-96bc-7abb7588047b\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"15\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":260},{\"rowId\":\"20d8a2d2-a0a4-45ed-8edf-a9ca24e269f7\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"38\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":21},{\"rowId\":\"f12cd4f9-7879-44a5-9703-9f9b952d1a6f\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":253},{\"rowId\":\"ef0e5f3f-16bf-4675-9382-6d8da337a15c\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"39\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":249},{\"rowId\":\"39aec31e-df86-4ed0-9c70-8195d1bf2a39\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"18\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":48},{\"rowId\":\"822e05bd-339d-4b8d-9b02-c2bac15f1fb3\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":134},{\"rowId\":\"df8f09bf-f0ac-4ca9-957e-202d4a34ddb6\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"54\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":233},{\"rowId\":\"90887e85-f0ad-41ea-a6c5-213e1a2bb64c\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"39\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":156},{\"rowId\":\"7cf67481-b61f-4c51-9763-c19f6f978134\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"15\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":131},{\"rowId\":\"55cb227a-6201-4b45-974a-f1ec16a6394b\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"18\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":80},{\"rowId\":\"9ab33975-ca6d-4236-bd03-fbb5c5e4f252\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":164},{\"rowId\":\"57325f18-2da3-4fe2-b78a-5ccbd32e209a\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"38\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":85},{\"rowId\":\"ee0c2309-a9f1-4c37-9303-d3983b012501\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":247},{\"rowId\":\"584952cc-e7bc-4e6d-bc2b-97c4f0119d23\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":86},{\"rowId\":\"31ed3fd0-d228-42ef-9703-fa1ec42a4e07\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"15\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":42},{\"rowId\":\"7005a536-0791-4a5e-86d8-dab70c6b13d6\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"54\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":123},{\"rowId\":\"9e2faa2f-7337-470b-b3c9-4128cf9b1787\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"39\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":168},{\"rowId\":\"a4800f79-dde4-447e-8f9e-f5c207c00aac\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"18\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":177},{\"rowId\":\"aff93477-cdf2-4cce-a896-bae893718351\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"38\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":185},{\"rowId\":\"2935b956-6487-4373-9706-e174ed9ccdaf\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":36},{\"rowId\":\"9ed9343d-e8a6-432c-8ad4-2cedc341ce7d\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"39\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":169},{\"rowId\":\"f446325d-86f0-4268-9c6c-104a42949519\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"54\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":259},{\"rowId\":\"35154762-778b-4c79-af06-345db8333295\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":44},{\"rowId\":\"d5dca07a-b4b9-4baa-aa0e-29bb8c494cbb\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"38\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":218},{\"rowId\":\"05fc1fc6-5fd1-49a1-87c6-dfed0f130403\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"15\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":5},{\"rowId\":\"8a905c86-096a-4e60-a6e1-5b9c75dafa00\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"18\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":145},{\"rowId\":\"0ef1a76a-f50c-4fc5-9c8c-8d860e904e8c\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":10},{\"rowId\":\"685750f9-e1c4-489c-b634-d81b7dc9e5f1\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"38\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":113},{\"rowId\":\"7114610c-f79a-4fcf-b5c7-002aab0abd79\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"39\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":124},{\"rowId\":\"e25281be-7880-4e24-bb02-29b51297cfe1\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":236},{\"rowId\":\"d970fb1a-d5b0-4d40-8265-903609ed34c4\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"18\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":225},{\"rowId\":\"cd11137d-a250-4a79-bc65-18339a1749c7\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":210},{\"rowId\":\"c319a667-5d25-416f-9e04-8e30e5c68cc9\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"54\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":202},{\"rowId\":\"c12c630f-1052-4b41-9cdc-44ec7fee03f8\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"15\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":200},{\"rowId\":\"a1f34bfa-9633-43fc-96ca-3347adc6ed8e\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":172},{\"rowId\":\"905558cf-0ec8-43bb-852e-f17d8bfa6d17\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"54\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":155},{\"rowId\":\"d02770b4-2f43-4d9d-af64-4f70771d375b\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"18\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":212},{\"rowId\":\"6246f065-582f-4936-b048-f824fa86d8e0\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"15\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":104},{\"rowId\":\"d6471479-24ea-417e-895a-7b53a79fdb6d\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":219},{\"rowId\":\"a069d36d-f380-4f7e-9c6f-0e307cddb5b9\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"38\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":171},{\"rowId\":\"dad8251a-dae3-4268-a3a4-957f948c507a\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"39\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":229},{\"rowId\":\"2c4cfc35-2588-4f77-8bd1-597cc50e795a\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"18\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":39},{\"rowId\":\"f1263637-2a0e-4702-96a4-4cc0241c5462\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":252},{\"rowId\":\"5482ae80-2adf-4ffa-8460-9cc195eccc7b\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"15\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":78},{\"rowId\":\"f88cf320-1324-4d15-b80c-e9ef863f3c4a\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"38\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":263},{\"rowId\":\"f9ae8c74-bf72-4791-89b8-87b31fef7cf0\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"54\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":266},{\"rowId\":\"b536bb59-25d1-496e-aae0-38e083526cd9\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"39\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":190},{\"rowId\":\"a6906794-f0b5-4af1-8555-69c8295e31a0\",\"values\":{\"date\":{\"value\":\"date:1984-01-01T00:00:00:01/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":179},{\"rowId\":\"4df8896a-402e-4c90-b4f0-25b3dc92827c\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"14\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":70},{\"rowId\":\"e1a43435-314b-4775-aee5-21a16976b072\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":235},{\"rowId\":\"d71bd7c0-cc2f-4fd0-9a3b-05a7af7b7ae4\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":220},{\"rowId\":\"04bd1060-2d78-46ee-b1cd-caf9b28a7c64\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"18\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":4},{\"rowId\":\"9bf9161f-5bc2-4da9-a05d-438aa5bc3907\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"15\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":166},{\"rowId\":\"585fb7ce-8c1b-4de2-a16e-e27c838cb579\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":87},{\"rowId\":\"4a57110a-cf73-4b3b-8985-1d0a98f42ac2\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"32\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":67},{\"rowId\":\"0319ecf4-7f4a-476a-89e6-203cc734e805\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"32\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":2},{\"rowId\":\"f2fc2752-bbe2-41de-ad83-d6d04736c88b\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"15\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":258},{\"rowId\":\"222814e4-ed8c-4d5a-a1d2-b267413176ef\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":24},{\"rowId\":\"638de61b-d835-4f05-925c-464b29133f8a\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"18\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":106},{\"rowId\":\"86e6a900-cc65-4c61-b6cd-d58db2146fa3\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":140},{\"rowId\":\"8e2c447c-f41a-42fc-a132-c7ba2ff89ba6\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":153},{\"rowId\":\"f232c370-9809-4424-b23b-8fe6d9567db1\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"14\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":255},{\"rowId\":\"a9a29b1b-c307-4a16-bcd4-dad1e0e386ea\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"18\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":182},{\"rowId\":\"f25bc6ae-cd27-4dec-8d94-19e340509b4f\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":257},{\"rowId\":\"4a265068-ee6d-4b17-9a2d-e843b877c11a\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"14\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":66},{\"rowId\":\"a32e7d63-5704-42c4-8036-04e546181f4d\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":175},{\"rowId\":\"5cc23bc6-3552-42e9-af9f-0970aa866584\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"32\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":93},{\"rowId\":\"f9492675-3ef0-46ee-95c1-5e96ebe3643d\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":265},{\"rowId\":\"f83857af-5c83-4b56-af38-c4ec75760ef7\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"15\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":262},{\"rowId\":\"ff773801-2379-4795-9ab0-681cf31ff6c2\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":272},{\"rowId\":\"8acba8e5-b3dd-4852-bd08-5b30e81f3cbe\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":146},{\"rowId\":\"c3228460-a371-422a-beab-e0f82d2a8fad\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"32\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":203},{\"rowId\":\"0ed49e0a-d9d7-4f32-9651-1990570fac60\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"14\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":9},{\"rowId\":\"556b6416-a6a7-4ada-9c0e-7ef9fb31e97e\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":79},{\"rowId\":\"f07e7f2a-384a-4b38-9c89-be94a1a376e9\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"15\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":251},{\"rowId\":\"6d66275f-96e8-45c5-a59e-a05d3305d2d7\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"18\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":120},{\"rowId\":\"60fdf86a-0582-4b52-9a51-721f22533b54\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":102},{\"rowId\":\"263f9489-0bbe-4928-afaf-e5e3e5650099\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"32\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":31},{\"rowId\":\"8799c682-d927-440d-b837-013dc410dea8\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":142},{\"rowId\":\"bd52a64b-772f-42fc-a7ca-616fdfe29577\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"15\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":197},{\"rowId\":\"8c2f8f66-4030-4aee-93fd-969efd6e59b6\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"14\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":150},{\"rowId\":\"5679682c-7ea2-41d9-b684-e3f1af42e0af\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"18\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":83},{\"rowId\":\"3e0877b2-cf7b-4627-b105-e943d7137a20\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":55},{\"rowId\":\"ba969f97-f82a-4b71-aff9-e4b5d0c00b79\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"50\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":195},{\"rowId\":\"caac60de-3026-4ccf-ac63-340fd34b9f39\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"18\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":207},{\"rowId\":\"0c4ce948-6f86-48c1-b07d-466b6cb59d5f\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":6},{\"rowId\":\"da95fcdc-f5e4-4026-ab68-309fbe2cbeac\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"32\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":228},{\"rowId\":\"e42a5068-4625-4c11-8bb8-a3958743533b\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":237},{\"rowId\":\"79e5a174-c0ec-47b4-a585-799036bbe0ae\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"15\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":129},{\"rowId\":\"4ebad0eb-bafc-4be6-a51a-55f5c0cc1fe1\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"14\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":73},{\"rowId\":\"91c05b50-8c67-43e1-a6ca-7d405a43d23b\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":158},{\"rowId\":\"02c9aa11-7acb-4d4c-9686-c0b5555b52fc\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"18\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":1},{\"rowId\":\"25f58751-9314-4058-bd23-f590e3e92b55\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"32\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":30},{\"rowId\":\"92223a26-6c08-472c-8943-affa04c75a51\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"14\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":160},{\"rowId\":\"bad7ee17-ebb0-4dd4-b65e-4cbe027ab1c9\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"15\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":196},{\"rowId\":\"8bbd9c7e-f3ae-4db9-a965-c3f7076645a3\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":148},{\"rowId\":\"1aca031d-5c98-4b84-b230-08ef34874645\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":16},{\"rowId\":\"0d9e8859-90ea-4fc0-a6e6-1f9eebb482e2\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"14\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":7},{\"rowId\":\"84b8de1f-1f22-435f-9fe3-19d63c2bd05a\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":137},{\"rowId\":\"ef7c1678-988f-45d8-a0e0-c56c1a794ed5\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"18\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":250},{\"rowId\":\"971a08ff-83cf-4661-b818-e88dd25e12d8\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":163},{\"rowId\":\"d955c7f4-bfe6-4119-bd64-02fce8a1b6a1\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":224},{\"rowId\":\"46929d2c-e26c-43f6-9fb3-ea3df8e1f10b\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"15\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":61},{\"rowId\":\"7b1fb10e-5eb7-42cc-b109-42411905a118\",\"values\":{\"date\":{\"value\":\"date:1984-01-02T00:00:00:02/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"32\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":130},{\"rowId\":\"c4eb02d6-5243-42a5-861a-2221c86b69a6\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":204},{\"rowId\":\"54355a0a-0ad2-4fdc-a980-ce1a031e7b0f\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"41\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":77},{\"rowId\":\"691888e8-3e5d-4ba8-b940-7068330d1725\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":115},{\"rowId\":\"8b2d57ec-9cde-4cdc-b15a-7e86f524247e\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"16\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":147},{\"rowId\":\"91f5336d-ea86-406a-a321-6c87c0f371ef\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":159},{\"rowId\":\"93bfc8e5-06e3-4e7a-a4b9-937892bf5eb7\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"45\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":162},{\"rowId\":\"5ea27ab4-ab56-4cfa-b7ef-bd02094a414c\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"45\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":97},{\"rowId\":\"718309e4-af8d-4d34-ad94-f817c73284e9\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":125},{\"rowId\":\"f8f1bfdd-a42e-49eb-89a1-46274a10e3dc\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":264},{\"rowId\":\"4f640a01-09c2-4cda-a459-52d6167cd5fa\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"41\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":74},{\"rowId\":\"5fc16cea-3fa4-41b7-8054-4eaff4843a1b\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":101},{\"rowId\":\"1f249178-396b-44bb-bc5c-f1194aa66979\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"16\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":19},{\"rowId\":\"5fa332ed-f895-403e-b2a5-c6e47913f564\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":98},{\"rowId\":\"744cadd6-291e-4011-895c-c9671a78a027\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"16\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":126},{\"rowId\":\"3b612edf-8039-499b-8e0c-583c1d948657\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":53},{\"rowId\":\"12a5f782-523f-487b-af5a-8d9a2d948d7b\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"41\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":12},{\"rowId\":\"a5a47b32-f0ac-4fca-9bc7-9ded89cb6359\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"45\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":178},{\"rowId\":\"5de3613a-df63-4fea-9c5f-99fa0b44da4f\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":95},{\"rowId\":\"d8fb82cc-2e85-4730-83d1-3855f424fc58\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"16\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":223},{\"rowId\":\"e96c3ebf-3195-484c-90d9-cccf5acfee02\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":242},{\"rowId\":\"593b2c71-7276-485a-90a8-8ea83966947d\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":88},{\"rowId\":\"682e6343-f82b-4bbc-a6e5-5fbf422124bd\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"45\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":112},{\"rowId\":\"493019e4-5c28-4c9c-9a89-da3a25134c93\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"41\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":64},{\"rowId\":\"81c1cf70-4ad1-4eb1-8b06-9440a1377f05\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":133},{\"rowId\":\"42b3742d-1ca2-49db-b1ce-9818bcecccca\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":60},{\"rowId\":\"3b5b4ef7-5819-49f2-af05-a67022eedcc2\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"45\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":52},{\"rowId\":\"c5b35744-e1e1-463c-afca-4a391068f069\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"16\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":205},{\"rowId\":\"1fa50d2f-8641-4506-8c26-e28698b400db\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"41\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":20},{\"rowId\":\"8ddcb326-eac4-4909-a5b7-73aef4174559\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":151},{\"rowId\":\"c0d18520-5c39-4084-b617-d870c5e479d7\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":199},{\"rowId\":\"84f45374-72ef-4d5b-9c12-c46873e5932a\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"41\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":138},{\"rowId\":\"8fcaf54d-7702-4c98-a926-ccc29c30b754\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"16\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":154},{\"rowId\":\"cacaae25-6736-4e73-8fec-8c8375e763b8\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":208},{\"rowId\":\"89812cd2-980c-4e59-9fe1-b0aef93c76e5\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"20\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":144},{\"rowId\":\"8672ada4-ba3a-4dba-9bb0-7ddd1470bc2e\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"20\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":139},{\"rowId\":\"59de9ea1-885b-47e9-8369-09ff9a62dc06\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"45\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":89},{\"rowId\":\"ce5d3aa0-b83b-4f10-8293-2ae30cf2a1bb\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"16\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":211},{\"rowId\":\"412b523f-6305-4624-926c-676c63f85739\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"45\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":59},{\"rowId\":\"839a1103-b148-4186-954f-22ccde3085f5\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":135},{\"rowId\":\"e8593828-570b-4c91-b98f-de6b0a7a891c\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"41\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":241},{\"rowId\":\"b4d4a570-48bf-404a-97f5-52998235ff2c\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":189},{\"rowId\":\"48943e17-0c80-40ba-9dde-473965425cf9\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":63},{\"rowId\":\"fa8752d6-ad59-4063-afee-11369b47ca3a\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"16\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":267},{\"rowId\":\"1b2ac508-33da-4249-8064-1b900fe73990\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":17},{\"rowId\":\"3c98e1f4-1423-42a9-b94e-185ea79d0e02\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"45\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":54},{\"rowId\":\"7891a86a-1555-4ddf-b98d-a1a08c5e5f17\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":128},{\"rowId\":\"278aad71-9b45-4164-a752-84c9c58ea40b\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":33},{\"rowId\":\"2803a8ac-81a1-4d32-ab3e-081b6199c3be\",\"values\":{\"date\":{\"value\":\"date:1984-01-03T00:00:00:03/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"41\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":34},{\"rowId\":\"275ded3b-a0cc-4ccc-b067-6545f2a7bfbf\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":32},{\"rowId\":\"ea0d9b00-5f63-4890-aa9a-0ece5a6e946c\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"24\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":244},{\"rowId\":\"a24edd51-ee60-4812-afe3-85a28cb1043f\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"51\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":173},{\"rowId\":\"b469bc7f-73cc-42d0-8c70-aa4997a9623f\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"22\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":188},{\"rowId\":\"6d41fdde-d46a-43e1-84e5-387e7db672fc\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"43\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":118},{\"rowId\":\"d0e9df41-74f5-4d12-b2a8-11a633e9d27c\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":213},{\"rowId\":\"7fa07991-c733-4b9e-a092-61130fa0e943\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"15\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":132},{\"rowId\":\"258a2a48-1247-479f-8f21-0b33cadf670c\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":28},{\"rowId\":\"9d995382-4ed1-49c4-86f4-3c6fca7289a0\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":167},{\"rowId\":\"2eab6bda-3244-4e05-a752-f9191f359c19\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"22\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":41},{\"rowId\":\"6221571e-fe6d-4624-a6d8-a28e71ff9a53\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"43\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":103},{\"rowId\":\"83c19adf-8b24-4a97-a312-658b4153e0b3\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"15\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":136},{\"rowId\":\"d761cd4b-d88d-4b5c-a99e-20552b45f462\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"51\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":221},{\"rowId\":\"c6518071-8c58-4663-a45a-eb584c75519a\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"24\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":206},{\"rowId\":\"66aa0e50-4b93-4fba-bccb-5af8bdc5e467\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"51\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":110},{\"rowId\":\"8779fe8d-1dc0-4048-b15d-6c52021d6319\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"24\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":141},{\"rowId\":\"b347b5ba-e373-4e22-b261-e35bc1543273\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"22\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":187},{\"rowId\":\"88baf2f1-1e8d-4529-ade5-4211c2f36e7e\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":143},{\"rowId\":\"8be53794-56cf-4031-beaa-5dc25ad72077\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"15\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":149},{\"rowId\":\"918c7339-7f05-43ec-b39c-80e73b1bc309\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":157},{\"rowId\":\"22cf896f-dc07-471a-a710-e3afd1985be5\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"43\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":25},{\"rowId\":\"6df2f660-9aa6-4d51-ba94-2d94c20f963a\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"43\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":121},{\"rowId\":\"39b51f2b-1566-4fb4-8430-b67635e870b0\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":49},{\"rowId\":\"d1f32e2a-23bb-4eff-b5a2-03ab6e79bddb\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":214},{\"rowId\":\"da4280e3-5b14-42e0-bf52-e148a4336326\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"24\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":227},{\"rowId\":\"fef60adc-81da-48cc-b6d4-3d68a63560b0\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"22\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":269},{\"rowId\":\"8e0ab629-b476-448f-bd86-07cab0c0a2ca\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"51\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":152},{\"rowId\":\"649c96b4-f04a-4ea2-b9e2-d927a13826f0\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"15\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":108},{\"rowId\":\"d3762d8a-acad-4ca6-8bc7-036d6a69cc4f\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":215},{\"rowId\":\"786527ed-32ea-4a45-a654-cfbb16f5f02b\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"43\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":127},{\"rowId\":\"ff599769-307d-4df5-820e-6e7b6ab8175f\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"51\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":271},{\"rowId\":\"9261e9a4-868e-4b46-afd6-e25b749fcf6d\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"22\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":161},{\"rowId\":\"043c7fba-e1fc-479f-9785-81f90df3de9a\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"15\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":3},{\"rowId\":\"4ea81963-60b0-420b-ab55-faea56237843\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":72},{\"rowId\":\"ea50094a-a8d1-47e4-ad76-e052eba1bbb4\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"24\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":245},{\"rowId\":\"6a5810e2-1ba9-47a1-aa6b-360368c7a1d9\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"43\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":116},{\"rowId\":\"a2aa3123-64ca-4c32-a7c5-8b268fbf27f7\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"15\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":174},{\"rowId\":\"d9adf282-8a6b-4754-b97b-7113d38ba9da\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"51\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":226},{\"rowId\":\"2e8cfd55-abb4-4e28-9a57-8cbb55216cbc\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"24\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":40},{\"rowId\":\"5d7a6fc5-8782-4ab4-b8f0-837a89e9fe18\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":94},{\"rowId\":\"e754cae2-4617-4ee8-a170-343f70ff8f28\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"22\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":240},{\"rowId\":\"f251359d-20fd-4b87-be82-b7b7450c4164\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"20\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":256},{\"rowId\":\"b5bc1441-ccec-4f69-909d-3e3a7abc1889\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"15\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":191},{\"rowId\":\"39b8cb3f-c50c-45af-bce5-d3fe4d8b0533\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"51\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":50},{\"rowId\":\"4030bc5b-888b-4b76-b677-f74e5f0f392f\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"43\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":57},{\"rowId\":\"572c7c23-c08e-40ae-af54-81226455a225\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":84},{\"rowId\":\"ee70d907-4674-4df1-9dac-0f8c25719b4a\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"24\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":248},{\"rowId\":\"3b3e7813-cf45-4b36-b4e4-0c497718b4ac\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":51},{\"rowId\":\"bd997f97-01df-4879-aaee-fa3ce848bc38\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"22\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":198},{\"rowId\":\"22184135-65ed-47d4-b9f9-c4072507f468\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"22\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":23},{\"rowId\":\"21cb6379-cd16-4211-bdb4-eb56b57b4f29\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"24\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":22},{\"rowId\":\"b69cea3d-78e6-48ed-b70d-7bf8182d59e2\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":192},{\"rowId\":\"cb80f368-a0ae-4330-bdaf-bc2b11e28896\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"51\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":209},{\"rowId\":\"40aed02f-2f59-49f3-8aab-4dea9cfe85d5\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"43\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":58},{\"rowId\":\"5fb7d3bc-db36-482e-8445-fde7256c0f66\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":100},{\"rowId\":\"5fb64d20-de19-46e6-86bf-0fc261310185\",\"values\":{\"date\":{\"value\":\"date:1984-01-04T00:00:00:04/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"15\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":99},{\"rowId\":\"54072f2c-7833-41c3-948b-83c3ca752604\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"24\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":76},{\"rowId\":\"0e29930e-d581-41a3-8ee0-f43d79e8b435\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"17\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":8},{\"rowId\":\"a95cdbe9-6867-46cd-b9e4-6b2fb9f7d1a4\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":181},{\"rowId\":\"14c2b210-2634-45ff-8557-a35f7fd74224\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"59\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":13},{\"rowId\":\"ed362de2-6ac1-4e8a-8880-786c7d454b09\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":246},{\"rowId\":\"2ac0750e-b3a5-4200-a3f9-2b094f5911c1\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"49\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":38},{\"rowId\":\"563b77f6-9818-43a5-be1e-98db948b771a\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"21\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":82},{\"rowId\":\"4d229043-cd63-404c-b626-14de22869b88\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"49\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":68},{\"rowId\":\"a82eaae2-7a78-4f60-aa16-61d7e54911d8\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":180},{\"rowId\":\"562e8452-84e1-4a98-a7f9-3bff5f8c9621\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":81},{\"rowId\":\"b2d497fe-bb0c-49bb-8d77-0818b4be321c\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"17\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":186},{\"rowId\":\"47cd594f-5217-4802-bfc7-3a10924e0faf\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"21\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":62},{\"rowId\":\"28866f30-ac28-47cb-a991-f6f04a42dbc2\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"59\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":35},{\"rowId\":\"3e3080ae-9b1a-4a01-8908-ec191d10010f\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"oir__p1\",\"chemin\":\"plateforme.oir.oir__p1.oir__p1__a\",\"plateforme\":\"a\",\"site_bassin\":\"plateforme.oir.oir__p1\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"24\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"plateforme\":null,\"site_bassin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":56},{\"rowId\":\"b8d1f940-02dd-4143-a4bc-0b099f5de631\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"49\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":193},{\"rowId\":\"5e779bd3-4978-4f63-aa46-7ffba556317f\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"24\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":96},{\"rowId\":\"deb0bf0a-5be3-4176-9bee-6899f6e2b866\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"59\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":232},{\"rowId\":\"d39e6347-99fa-419e-9c6f-5094c768d319\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"17\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":216},{\"rowId\":\"af3ae7a2-5573-47e3-ad55-90258b9f19b4\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":184},{\"rowId\":\"e9fd40c5-d49a-4991-87db-34f78734637f\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"21\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":243},{\"rowId\":\"53a2e207-ec82-475a-b21c-a1c9215a2964\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":75},{\"rowId\":\"f172b8e4-e7da-4e7e-9e7e-ae610159016a\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":254},{\"rowId\":\"361ea076-5047-4b71-bad3-4a86b75e5137\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"49\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":45},{\"rowId\":\"dbab7da1-41b8-474b-8ba3-c2fe96cfdb1f\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"21\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":230},{\"rowId\":\"2942ece1-12bc-4a22-a068-d7f60381bc84\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"17\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":37},{\"rowId\":\"feff2525-1c87-4441-895a-5e283a3f932c\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"24\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":270},{\"rowId\":\"17f9bb6b-6c36-47b8-ab3f-d8c80a23180d\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"59\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":15},{\"rowId\":\"628aa0a8-1f16-4bad-abd1-6fd63d867afc\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_atlantique\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":105},{\"rowId\":\"17913fd3-cd1d-4860-99ee-ff520e9da136\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":14},{\"rowId\":\"37d98976-74a6-4b55-8468-e6cd8fd4c98b\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"17\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":46},{\"rowId\":\"4d9c100a-e946-4bf3-92be-2b0151811df9\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":69},{\"rowId\":\"251f1634-5a80-4e72-b1a2-fccac1e732d5\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"21\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":27},{\"rowId\":\"e1006b27-e4dc-4471-bda2-c10bc104e133\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"24\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":234},{\"rowId\":\"6f4308a0-d78c-4f5b-87a8-22c7ae53804e\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"59\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":122},{\"rowId\":\"1e54859f-6894-438c-bc77-110e83ac1e94\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"nivelle\",\"chemin\":\"plateforme.nivelle.nivelle__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.nivelle\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"49\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"plateforme\":null,\"site_bassin\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":18},{\"rowId\":\"66a63b53-9529-4942-896c-2af99999625e\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"59\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":109},{\"rowId\":\"f748afca-131e-46a4-9247-dc2e5dff3a3a\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"17\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":261},{\"rowId\":\"239cb0d9-91ac-4d7f-a5d1-be26bda8d13c\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":26},{\"rowId\":\"b9149b39-e797-4ff3-92d8-bc2192bbc7c1\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":194},{\"rowId\":\"38fec485-818e-4e62-b768-90442db59653\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"21\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":47},{\"rowId\":\"9b20e6fe-864f-4152-b0ce-2b345e1af9e3\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"49\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":165},{\"rowId\":\"124ad1ec-8399-43e4-b192-6c36ffdfc075\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"24\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":11},{\"rowId\":\"5bfc231f-ed8b-4564-89cd-da66b135acab\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"17\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":91},{\"rowId\":\"e447ac2c-b0f5-48c4-bd34-829edeba8892\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"24\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":238},{\"rowId\":\"c14d600d-e046-4762-a99b-03c1c818417f\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"49\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":201},{\"rowId\":\"a43d7302-96f0-4233-94ce-4ded1fe55794\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":176},{\"rowId\":\"6aa6f7dc-324b-4eeb-b183-51c4cca1770a\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"21\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":117},{\"rowId\":\"67ec63fe-d38e-4085-a232-c9ec5a7ff202\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":111},{\"rowId\":\"e73d37eb-74f4-41a7-8cc7-cb7d97b99ef6\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"oir\",\"chemin\":\"plateforme.oir.oir__p2\",\"plateforme\":\"p2\",\"site_bassin\":\"bassin_versant.oir\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"59\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"plateforme\":null,\"site_bassin\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":239},{\"rowId\":\"d57d35ab-08c0-4b62-916c-8e101932b6b1\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"trm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"25\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":217},{\"rowId\":\"d7fe98c4-66ba-4124-b0bc-f466406b3986\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"trf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"21\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":222},{\"rowId\":\"aeea15e6-0569-4cf8-9e5f-6e659f580e24\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"ang\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"27\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__rouge\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"b5896a72-5492-416c-8909-1ff5239cbbac\"}},\"totalRows\":272,\"rowNumber\":183},{\"rowId\":\"9f43df89-4ee5-4d56-8595-44bff7374338\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"lpf\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"59\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":170},{\"rowId\":\"5bbaaa3d-8461-4aa8-bf70-aed44d8b95eb\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"alo\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"17\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":90},{\"rowId\":\"68e7e347-c456-4851-a0af-aacd85e488e4\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"lpm\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"49\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__bleu\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"04442249-d22d-4638-981e-0b446fafd750\"}},\"totalRows\":272,\"rowNumber\":114},{\"rowId\":\"63c3a840-234e-4244-bebf-8850c962ac82\",\"values\":{\"date\":{\"value\":\"date:1984-01-05T00:00:00:05/01/1984\"},\"site\":{\"bassin\":\"scarff\",\"chemin\":\"plateforme.scarff.scarff__p1\",\"plateforme\":\"p1\",\"site_bassin\":\"bassin_versant.scarff\"},\"espece\":{\"value\":\"sat\"},\"projet\":{\"value\":\"projet_manche\"},\"Nombre d'individus\":{\"unit\":\"sans_unite\",\"value\":\"24\"},\"Couleur des individus\":{\"unit\":\"sans_unite\",\"value\":\"couleur_des_individus__vert\"}},\"refsLinkedTo\":{\"date\":{\"value\":null},\"site\":{\"bassin\":null,\"chemin\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"plateforme\":null,\"site_bassin\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\"},\"espece\":{\"value\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\"},\"projet\":{\"value\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"Nombre d'individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":null},\"Couleur des individus\":{\"unit\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"value\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"}},\"totalRows\":272,\"rowNumber\":107}],\"totalRows\":272,\"checkedFormatVariableComponents\":{\"DateLineChecker\":{\"date_value\":{\"target\":{\"variable\":\"date\",\"component\":\"value\",\"id\":\"date_value\",\"type\":\"PARAM_VARIABLE_COMPONENT_KEY\"},\"configuration\":{\"pattern\":\"dd/MM/yyyy\",\"refType\":null,\"groovy\":null,\"duration\":null,\"transformation\":{\"codify\":false,\"groovy\":null},\"required\":false,\"multiplicity\":\"ONE\"},\"pattern\":\"dd/MM/yyyy\",\"sqlType\":\"COMPOSITE_DATE\"}},\"ReferenceLineChecker\":{\"espece_value\":{\"referenceLineChecker\":{\"referenceValues\":{\"fr.inra.oresing.persistence.Ltree@1c1e3\":\"6684d743-8de2-400a-a9c6-7d20b97ffd73\",\"fr.inra.oresing.persistence.Ltree@1c1ea\":\"4ef8099b-598c-4d89-8f18-8a059c6c73bf\",\"fr.inra.oresing.persistence.Ltree@1a3a4\":\"5c07a447-ea0a-4c3d-af20-cf44ea4b6bb8\",\"fr.inra.oresing.persistence.Ltree@17a15\":\"575ca0e0-c096-42e0-be4c-97446d9ce5a2\",\"fr.inra.oresing.persistence.Ltree@1bc21\":\"2ba30b27-b6f7-4420-99a6-309493f42dba\",\"fr.inra.oresing.persistence.Ltree@1a39d\":\"dd9091dd-afcf-49b7-994d-a5ee669d8639\",\"fr.inra.oresing.persistence.Ltree@179df\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\"},\"configuration\":{\"pattern\":null,\"refType\":\"especes\",\"groovy\":null,\"duration\":null,\"transformation\":{\"codify\":false,\"groovy\":null},\"required\":true,\"multiplicity\":\"ONE\"},\"target\":{\"variable\":\"espece\",\"component\":\"value\",\"id\":\"espece_value\",\"type\":\"PARAM_VARIABLE_COMPONENT_KEY\"},\"sqlType\":\"LTREE\",\"refType\":\"especes\"},\"referenceValues\":{\"id\":\"6d53fcb7-bed5-43b1-806d-4aa6ddd63064\",\"creationDate\":1653480731457,\"updateDate\":1653480731457,\"application\":\"850f043f-4196-4934-8b6b-a64543fe78d3\",\"referenceType\":\"especes\",\"hierarchicalKey\":{\"sql\":\"alo\"},\"hierarchicalReference\":{\"sql\":\"especes\"},\"naturalKey\":{\"sql\":\"alo\"},\"refValues\":{\"evaluationContext\":{\"datum\":{\"esp_nom\":\"ALO\",\"__display_en\":\"ALO\",\"__display_fr\":\"ALO\",\"esp_definition_en\":\"ALO\",\"esp_definition_fr\":\"ALO\"}}},\"refsLinkedTo\":{},\"binaryFile\":\"cd5d91fc-485e-4d9b-aafd-38a4ccfd0d7c\"},\"configuration\":null},\"Nombre d'individus_unit\":{\"referenceLineChecker\":{\"referenceValues\":{\"fr.inra.oresing.persistence.Ltree@f9da80f0\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\"},\"configuration\":{\"pattern\":null,\"refType\":\"unites\",\"groovy\":null,\"duration\":null,\"transformation\":{\"codify\":false,\"groovy\":null},\"required\":false,\"multiplicity\":\"ONE\"},\"target\":{\"variable\":\"Nombre d'individus\",\"component\":\"unit\",\"id\":\"Nombre d'individus_unit\",\"type\":\"PARAM_VARIABLE_COMPONENT_KEY\"},\"sqlType\":\"LTREE\",\"refType\":\"unites\"},\"referenceValues\":{\"id\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"creationDate\":1653480731566,\"updateDate\":1653480731566,\"application\":\"850f043f-4196-4934-8b6b-a64543fe78d3\",\"referenceType\":\"unites\",\"hierarchicalKey\":{\"sql\":\"sans_unite\"},\"hierarchicalReference\":{\"sql\":\"unites\"},\"naturalKey\":{\"sql\":\"sans_unite\"},\"refValues\":{\"evaluationContext\":{\"datum\":{\"nom_en\":\"no unit\",\"nom_fr\":\"sans unite\",\"code_en\":\"*\",\"code_fr\":\"*\",\"nom_key\":\"sans_unite\",\"code_key\":\"*\",\"__display_en\":\"no unit (*)\",\"__display_fr\":\"sans unite (*)\"}}},\"refsLinkedTo\":{},\"binaryFile\":\"d31b6540-27bd-4a86-a0b6-32d2bae73edb\"},\"configuration\":null},\"site_chemin\":{\"referenceLineChecker\":{\"referenceValues\":{\"fr.inra.oresing.persistence.Ltree@47fdeea4\":\"b75a11d0-e3e2-46e1-ad95-a7eda5bad771\",\"fr.inra.oresing.persistence.Ltree@74c8b136\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\",\"fr.inra.oresing.persistence.Ltree@b225705d\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"fr.inra.oresing.persistence.Ltree@a973a3b4\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"fr.inra.oresing.persistence.Ltree@8eee5d57\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"fr.inra.oresing.persistence.Ltree@c9de373c\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\",\"fr.inra.oresing.persistence.Ltree@47fdeea3\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"fr.inra.oresing.persistence.Ltree@a973a3b5\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"fr.inra.oresing.persistence.Ltree@1ae13\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\",\"fr.inra.oresing.persistence.Ltree@667916fb\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"fr.inra.oresing.persistence.Ltree@cafdb7ae\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\",\"fr.inra.oresing.persistence.Ltree@667916fc\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"fr.inra.oresing.persistence.Ltree@ca8b7107\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"fr.inra.oresing.persistence.Ltree@fded52e1\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\",\"fr.inra.oresing.persistence.Ltree@166f3e92\":\"b75a11d0-e3e2-46e1-ad95-a7eda5bad771\",\"fr.inra.oresing.persistence.Ltree@97993f04\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\",\"fr.inra.oresing.persistence.Ltree@166f3e91\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"fr.inra.oresing.persistence.Ltree@ecde8541\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\"},\"configuration\":{\"pattern\":null,\"refType\":\"sites\",\"groovy\":null,\"duration\":null,\"transformation\":{\"codify\":false,\"groovy\":null},\"required\":true,\"multiplicity\":\"ONE\"},\"target\":{\"variable\":\"site\",\"component\":\"chemin\",\"id\":\"site_chemin\",\"type\":\"PARAM_VARIABLE_COMPONENT_KEY\"},\"sqlType\":\"LTREE\",\"refType\":\"sites\"},\"referenceValues\":{\"id\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"creationDate\":1653480731851,\"updateDate\":1653480731851,\"application\":\"850f043f-4196-4934-8b6b-a64543fe78d3\",\"referenceType\":\"sites\",\"hierarchicalKey\":{\"sql\":\"plateforme.nivelle.nivelle__p1\"},\"hierarchicalReference\":{\"sql\":\"type_de_sites.sites.sites\"},\"naturalKey\":{\"sql\":\"nivelle__p1\"},\"refValues\":{\"evaluationContext\":{\"datum\":{\"zet_nom_en\":\"P1\",\"zet_nom_fr\":\"P1\",\"zet_nom_key\":\"p1\",\"__display_en\":\"P1\",\"__display_fr\":\"P1\",\"tze_type_nom\":\"plateforme\",\"zet_chemin_parent\":\"nivelle\",\"zet_description_en\":\"\",\"zet_description_fr\":\"\"}}},\"refsLinkedTo\":{\"sites\":[\"d94164cc-ebf2-4eeb-97fb-246492c77088\"],\"type_de_sites\":[\"f17eea86-733b-4e0c-9cdc-5e71029dbca8\"]},\"binaryFile\":\"f0acf1d4-a4ff-4cf5-9feb-cf7ab0e8b176\"},\"configuration\":null},\"site_site_bassin\":{\"referenceLineChecker\":{\"referenceValues\":{\"fr.inra.oresing.persistence.Ltree@47fdeea4\":\"b75a11d0-e3e2-46e1-ad95-a7eda5bad771\",\"fr.inra.oresing.persistence.Ltree@74c8b136\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\",\"fr.inra.oresing.persistence.Ltree@b225705d\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"fr.inra.oresing.persistence.Ltree@a973a3b4\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"fr.inra.oresing.persistence.Ltree@8eee5d57\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"fr.inra.oresing.persistence.Ltree@c9de373c\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\",\"fr.inra.oresing.persistence.Ltree@47fdeea3\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"fr.inra.oresing.persistence.Ltree@a973a3b5\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"fr.inra.oresing.persistence.Ltree@1ae13\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\",\"fr.inra.oresing.persistence.Ltree@667916fb\":\"aa1f9847-01ac-4800-afa5-d729ea328da6\",\"fr.inra.oresing.persistence.Ltree@cafdb7ae\":\"a2c3affa-02a8-480d-bcc1-0d5e838b44d4\",\"fr.inra.oresing.persistence.Ltree@667916fc\":\"9b94b7e4-f82d-4e11-a9b4-90e03fb20f22\",\"fr.inra.oresing.persistence.Ltree@ca8b7107\":\"ad9a5928-3944-4bb5-ac67-fb30ec6290e1\",\"fr.inra.oresing.persistence.Ltree@fded52e1\":\"d4acf57e-a1eb-4953-8e22-b34699bb83d3\",\"fr.inra.oresing.persistence.Ltree@166f3e92\":\"b75a11d0-e3e2-46e1-ad95-a7eda5bad771\",\"fr.inra.oresing.persistence.Ltree@97993f04\":\"d94164cc-ebf2-4eeb-97fb-246492c77088\",\"fr.inra.oresing.persistence.Ltree@166f3e91\":\"612120ce-62aa-4eca-bb9c-bb373308f535\",\"fr.inra.oresing.persistence.Ltree@ecde8541\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\"},\"configuration\":{\"pattern\":null,\"refType\":\"sites\",\"groovy\":null,\"duration\":null,\"transformation\":{\"codify\":false,\"groovy\":null},\"required\":true,\"multiplicity\":\"ONE\"},\"target\":{\"variable\":\"site\",\"component\":\"site_bassin\",\"id\":\"site_site_bassin\",\"type\":\"PARAM_VARIABLE_COMPONENT_KEY\"},\"sqlType\":\"LTREE\",\"refType\":\"sites\"},\"referenceValues\":{\"id\":\"8980c7f6-9606-4f86-8188-3bd3c2a39e6f\",\"creationDate\":1653480731851,\"updateDate\":1653480731851,\"application\":\"850f043f-4196-4934-8b6b-a64543fe78d3\",\"referenceType\":\"sites\",\"hierarchicalKey\":{\"sql\":\"plateforme.nivelle.nivelle__p1\"},\"hierarchicalReference\":{\"sql\":\"type_de_sites.sites.sites\"},\"naturalKey\":{\"sql\":\"nivelle__p1\"},\"refValues\":{\"evaluationContext\":{\"datum\":{\"zet_nom_en\":\"P1\",\"zet_nom_fr\":\"P1\",\"zet_nom_key\":\"p1\",\"__display_en\":\"P1\",\"__display_fr\":\"P1\",\"tze_type_nom\":\"plateforme\",\"zet_chemin_parent\":\"nivelle\",\"zet_description_en\":\"\",\"zet_description_fr\":\"\"}}},\"refsLinkedTo\":{\"sites\":[\"d94164cc-ebf2-4eeb-97fb-246492c77088\"],\"type_de_sites\":[\"f17eea86-733b-4e0c-9cdc-5e71029dbca8\"]},\"binaryFile\":\"f0acf1d4-a4ff-4cf5-9feb-cf7ab0e8b176\"},\"configuration\":null},\"projet_value\":{\"referenceLineChecker\":{\"referenceValues\":{\"fr.inra.oresing.persistence.Ltree@6fa808f4\":\"00d36e1b-3e21-4a84-aca9-f401f4957577\",\"fr.inra.oresing.persistence.Ltree@6e039814\":\"fb19fab2-8948-4201-a4b8-4313740d041b\"},\"configuration\":{\"pattern\":null,\"refType\":\"projet\",\"groovy\":null,\"duration\":null,\"transformation\":{\"codify\":false,\"groovy\":null},\"required\":true,\"multiplicity\":\"ONE\"},\"target\":{\"variable\":\"projet\",\"component\":\"value\",\"id\":\"projet_value\",\"type\":\"PARAM_VARIABLE_COMPONENT_KEY\"},\"sqlType\":\"LTREE\",\"refType\":\"projet\"},\"referenceValues\":{\"id\":\"fb19fab2-8948-4201-a4b8-4313740d041b\",\"creationDate\":1653480731586,\"updateDate\":1653480731586,\"application\":\"850f043f-4196-4934-8b6b-a64543fe78d3\",\"referenceType\":\"projet\",\"hierarchicalKey\":{\"sql\":\"projet_manche\"},\"hierarchicalReference\":{\"sql\":\"projet\"},\"naturalKey\":{\"sql\":\"projet_manche\"},\"refValues\":{\"evaluationContext\":{\"datum\":{\"nom_en\":\"Channel project\",\"nom_fr\":\"Projet manche\",\"nom_key\":\"projet_manche\",\"__display_en\":\"Channel project\",\"__display_fr\":\"Projet manche\",\"definition_en\":\"Channel project\",\"definition_fr\":\"Projet manche\"}}},\"refsLinkedTo\":{},\"binaryFile\":\"4f06992c-93eb-4d07-9418-22c251fb71c1\"},\"configuration\":null},\"Couleur des individus_unit\":{\"referenceLineChecker\":{\"referenceValues\":{\"fr.inra.oresing.persistence.Ltree@f9da80f0\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\"},\"configuration\":{\"pattern\":null,\"refType\":\"unites\",\"groovy\":null,\"duration\":null,\"transformation\":{\"codify\":false,\"groovy\":null},\"required\":false,\"multiplicity\":\"ONE\"},\"target\":{\"variable\":\"Couleur des individus\",\"component\":\"unit\",\"id\":\"Couleur des individus_unit\",\"type\":\"PARAM_VARIABLE_COMPONENT_KEY\"},\"sqlType\":\"LTREE\",\"refType\":\"unites\"},\"referenceValues\":{\"id\":\"d8804da3-1ecb-4e17-bf53-8fefbcd2f2d4\",\"creationDate\":1653480731566,\"updateDate\":1653480731566,\"application\":\"850f043f-4196-4934-8b6b-a64543fe78d3\",\"referenceType\":\"unites\",\"hierarchicalKey\":{\"sql\":\"sans_unite\"},\"hierarchicalReference\":{\"sql\":\"unites\"},\"naturalKey\":{\"sql\":\"sans_unite\"},\"refValues\":{\"evaluationContext\":{\"datum\":{\"nom_en\":\"no unit\",\"nom_fr\":\"sans unite\",\"code_en\":\"*\",\"code_fr\":\"*\",\"nom_key\":\"sans_unite\",\"code_key\":\"*\",\"__display_en\":\"no unit (*)\",\"__display_fr\":\"sans unite (*)\"}}},\"refsLinkedTo\":{},\"binaryFile\":\"d31b6540-27bd-4a86-a0b6-32d2bae73edb\"},\"configuration\":null},\"Couleur des individus_value\":{\"referenceLineChecker\":{\"referenceValues\":{\"fr.inra.oresing.persistence.Ltree@4e9b3f19\":\"b5896a72-5492-416c-8909-1ff5239cbbac\",\"fr.inra.oresing.persistence.Ltree@b82f3b8d\":\"04442249-d22d-4638-981e-0b446fafd750\",\"fr.inra.oresing.persistence.Ltree@b8383a44\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\"},\"configuration\":{\"pattern\":null,\"refType\":\"valeurs_qualitatives\",\"groovy\":null,\"duration\":null,\"transformation\":{\"codify\":false,\"groovy\":null},\"required\":true,\"multiplicity\":\"ONE\"},\"target\":{\"variable\":\"Couleur des individus\",\"component\":\"value\",\"id\":\"Couleur des individus_value\",\"type\":\"PARAM_VARIABLE_COMPONENT_KEY\"},\"sqlType\":\"LTREE\",\"refType\":\"valeurs_qualitatives\"},\"referenceValues\":{\"id\":\"37d71b57-7315-4de6-8356-e2067f8a9cc1\",\"creationDate\":1653480731607,\"updateDate\":1653480731607,\"application\":\"850f043f-4196-4934-8b6b-a64543fe78d3\",\"referenceType\":\"valeurs_qualitatives\",\"hierarchicalKey\":{\"sql\":\"couleur_des_individus__vert\"},\"hierarchicalReference\":{\"sql\":\"valeurs_qualitatives\"},\"naturalKey\":{\"sql\":\"couleur_des_individus__vert\"},\"refValues\":{\"evaluationContext\":{\"datum\":{\"nom_en\":\"Color of individuals\",\"nom_fr\":\"couleur des individus\",\"nom_key\":\"couleur_des_individus\",\"valeur_en\":\"green\",\"valeur_fr\":\"vert\",\"valeur_key\":\"vert\",\"__display_en\":\"green\",\"__display_fr\":\"vert\"}}},\"refsLinkedTo\":{},\"binaryFile\":\"56ce2cb4-8fc1-4ece-b6fa-2b11d612141a\"},\"configuration\":null}},\"IntegerChecker\":{\"Nombre d'individus_value\":{\"target\":{\"variable\":\"Nombre d'individus\",\"component\":\"value\",\"id\":\"Nombre d'individus_value\",\"type\":\"PARAM_VARIABLE_COMPONENT_KEY\"},\"configuration\":{\"pattern\":null,\"refType\":null,\"groovy\":null,\"duration\":null,\"transformation\":{\"codify\":false,\"groovy\":null},\"required\":false,\"multiplicity\":\"ONE\"},\"sqlType\":\"INTEGER\"}}}}"
\ No newline at end of file
diff --git a/ui/cypress/fixtures/applications/ore/monsore/monsoere.json b/ui/cypress/fixtures/applications/ore/monsore/monsoere.json
new file mode 100644
index 0000000000000000000000000000000000000000..0d68547e88c0bff59faf16e913873da9688ba283
--- /dev/null
+++ b/ui/cypress/fixtures/applications/ore/monsore/monsoere.json
@@ -0,0 +1 @@
+"{\"id\":\"850f043f-4196-4934-8b6b-a64543fe78d3\",\"name\":\"monsore\",\"title\":\"MONSORE\",\"comment\":\"commentaire\",\"internationalization\":{\"application\":{\"internationalizationName\":{\"en\":\"SOERE my SOERE with repository\",\"fr\":\"SOERE mon SOERE avec dépôt\"}},\"references\":{\"themes\":{\"internationalizationName\":{\"en\":\"Thematic\",\"fr\":\"Thème\"},\"internationalizedColumns\":{\"nom_key\":{\"en\":\"nom_en\",\"fr\":\"nom_fr\"},\"description_fr\":{\"en\":\"description_en\",\"fr\":\"description_fr\"}},\"internationalizedDynamicColumns\":{},\"internationalizationDisplay\":{\"pattern\":{\"en\":\"{nom_key}\",\"fr\":\"{nom_key}\"}},\"internationalizedValidations\":{}},\"especes\":{\"internationalizationName\":{\"en\":\"Species\",\"fr\":\"Espèces\"},\"internationalizedColumns\":{\"esp_definition_fr\":{\"en\":\"esp_definition_en\",\"fr\":\"esp_definition_fr\"}},\"internationalizedDynamicColumns\":{},\"internationalizationDisplay\":{\"pattern\":{\"en\":\"{esp_nom}\",\"fr\":\"{esp_nom}\"}},\"internationalizedValidations\":{}},\"variables\":{\"internationalizationName\":{\"en\":\"Variables\",\"fr\":\"Variables\"},\"internationalizedColumns\":{\"nom_key\":{\"en\":\"nom_en\",\"fr\":\"nom_fr\"},\"definition_fr\":{\"en\":\"definition_en\",\"fr\":\"definition_fr\"}},\"internationalizedDynamicColumns\":{},\"internationalizationDisplay\":{\"pattern\":{\"en\":\"{nom_key}\",\"fr\":\"{nom_key}\"}},\"internationalizedValidations\":{}},\"type_de_sites\":{\"internationalizationName\":{\"en\":\"Sites types\",\"fr\":\"Types de sites\"},\"internationalizedColumns\":{\"tze_nom_key\":{\"en\":\"tze_nom_en\",\"fr\":\"tze_nom_fr\"},\"tze_definition_fr\":{\"en\":\"tze_definition_en\",\"fr\":\"tze_definition_fr\"}},\"internationalizedDynamicColumns\":{},\"internationalizationDisplay\":{\"pattern\":{\"en\":\"{tze_nom_key}\",\"fr\":\"{tze_nom_key}\"}},\"internationalizedValidations\":{}},\"unites\":{\"internationalizationName\":{\"en\":\"Units\",\"fr\":\"Unités\"},\"internationalizedColumns\":{\"nom_key\":{\"en\":\"nom_en\",\"fr\":\"nom_fr\"},\"code_key\":{\"en\":\"code_en\",\"fr\":\"code_fr\"}},\"internationalizedDynamicColumns\":{},\"internationalizationDisplay\":{\"pattern\":{\"en\":\"{nom_key} ({code_key})\",\"fr\":\"{nom_key} ({code_key})\"}},\"internationalizedValidations\":{}},\"type de fichiers\":{\"internationalizationName\":{\"en\":\"Files types\",\"fr\":\"Types de fichiers\"},\"internationalizedColumns\":{\"nom_key\":{\"en\":\"nom_en\",\"fr\":\"nom_fr\"},\"description_fr\":{\"en\":\"description_en\",\"fr\":\"description_fr\"}},\"internationalizedDynamicColumns\":{},\"internationalizationDisplay\":{\"pattern\":{\"en\":\"{nom_key}\",\"fr\":\"{nom_key}\"}},\"internationalizedValidations\":{}},\"projet\":{\"internationalizationName\":{\"en\":\"Project\",\"fr\":\"Projet\"},\"internationalizedColumns\":{\"nom_key\":{\"en\":\"nom_en\",\"fr\":\"nom_fr\"},\"definition_fr\":{\"en\":\"definition_en\",\"fr\":\"definition_fr\"}},\"internationalizedDynamicColumns\":{},\"internationalizationDisplay\":{\"pattern\":{\"en\":\"{nom_key}\",\"fr\":\"{nom_key}\"}},\"internationalizedValidations\":{}},\"valeurs_qualitatives\":{\"internationalizationName\":{\"en\":\"Qualitative values\",\"fr\":\"Valeurs qualitatives\"},\"internationalizedColumns\":{\"nom_key\":{\"en\":\"nom_en\",\"fr\":\"nom_fr\"},\"valeur_key\":{\"en\":\"valeur_en\",\"fr\":\"valeur_fr\"}},\"internationalizedDynamicColumns\":{},\"internationalizationDisplay\":{\"pattern\":{\"en\":\"{valeur_key}\",\"fr\":\"{valeur_key}\"}},\"internationalizedValidations\":{}},\"variables_et_unites_par_types_de_donnees\":{\"internationalizationName\":{\"en\":\"Variables and units by data type\",\"fr\":\"Variables et unités par type de données\"},\"internationalizedColumns\":null,\"internationalizedDynamicColumns\":{},\"internationalizationDisplay\":{\"pattern\":{\"en\":\"datatype name : {nom du type de données}, variable name : {nom de la variable}, : unit name {nom de l'unité}\",\"fr\":\"nom du type de données : {nom du type de données}, nom de la variable : {nom de la variable}, : nom de l'unité {nom de l'unité}\"}},\"internationalizedValidations\":{\"uniteRef\":{\"fr\":\"référence à l'unité'\"},\"variableRef\":{\"fr\":\"référence à la variable\"},\"checkDatatype\":{\"fr\":\"test\"}}},\"sites\":{\"internationalizationName\":{\"en\":\"Site\",\"fr\":\"Site\"},\"internationalizedColumns\":{\"zet_nom_key\":{\"en\":\"zet_nom_en\",\"fr\":\"zet_nom_fr\"},\"zet_description_fr\":{\"en\":\"zet_description_en\",\"fr\":\"zet_description_fr\"}},\"internationalizedDynamicColumns\":{},\"internationalizationDisplay\":{\"pattern\":{\"en\":\"{zet_nom_key}\",\"fr\":\"{zet_nom_key}\"}},\"internationalizedValidations\":{\"typeSitesRef\":{\"fr\":\"référence au type de site\"},\"siteParentRef\":{\"fr\":\"référence à la colonne parent\"}}},\"types_de_donnees_par_themes_de_sites_et_projet\":{\"internationalizationName\":{\"en\":\"Data types by site and project\",\"fr\":\"Types de données par site et projet\"},\"internationalizedColumns\":null,\"internationalizedDynamicColumns\":{},\"internationalizationDisplay\":{\"pattern\":{\"en\":\"projet name: {nom du projet}, site name : {nom du site}, theme name : {nom du thème}, data type name : {nom du type de données}\",\"fr\":\"nom du projet: {nom du projet}, nom du site : {nom du site}, nom du thème : {nom du thème}, nom du type de données : {nom du type de données}\"}},\"internationalizedValidations\":{\"sitesRef\":{\"fr\":\"référence au site\"},\"projetRef\":{\"fr\":\"référence au projet\"},\"themesRef\":{\"fr\":\"référence au theme\"},\"checkDatatype\":{\"fr\":\"test\"}}}},\"dataTypes\":{\"pem\":{\"internationalizationName\":{\"en\":\"Trap in ascent\",\"fr\":\"Piégeage en Montée\"},\"internationalizedColumns\":null,\"authorization\":{\"dataGroups\":{\"referentiel\":{\"internationalizationName\":{\"en\":\"Repositories\",\"fr\":\"Référentiels\"}},\"qualitatif\":{\"internationalizationName\":{\"en\":\"Qualitative\",\"fr\":\"Qualitatif\"}},\"quantitatif\":{\"internationalizationName\":{\"en\":\"Quantitative\",\"fr\":\"Quantitatif\"}}},\"authorizationScopes\":{\"localization\":{\"internationalizationName\":{\"en\":\"Localization\",\"fr\":\"Localisation\"}},\"projet\":{\"internationalizationName\":{\"en\":\"Project\",\"fr\":\"Projet\"}}}},\"internationalizationDisplay\":{\"especes\":{\"pattern\":{\"en\":\"espèce :{esp_nom}\",\"fr\":\"espèce :{esp_nom}\"}}},\"internationalizedValidations\":{\"unitOfColor\":{\"fr\":\"vérifie l'unité de la couleur des individus\"},\"unitOfIndividus\":{\"fr\":\"vérifie l'unité du nombre d'individus\"}}}}},\"references\":{\"themes\":{\"id\":\"themes\",\"label\":\"themes\",\"children\":[],\"columns\":{\"nom_en\":{\"id\":\"nom_en\",\"title\":\"nom_en\",\"key\":false,\"linkedTo\":null},\"nom_fr\":{\"id\":\"nom_fr\",\"title\":\"nom_fr\",\"key\":false,\"linkedTo\":null},\"nom_key\":{\"id\":\"nom_key\",\"title\":\"nom_key\",\"key\":true,\"linkedTo\":null},\"description_en\":{\"id\":\"description_en\",\"title\":\"description_en\",\"key\":false,\"linkedTo\":null},\"description_fr\":{\"id\":\"description_fr\",\"title\":\"description_fr\",\"key\":false,\"linkedTo\":null}},\"dynamicColumns\":{}},\"projet\":{\"id\":\"projet\",\"label\":\"projet\",\"children\":[],\"columns\":{\"nom_en\":{\"id\":\"nom_en\",\"title\":\"nom_en\",\"key\":false,\"linkedTo\":null},\"nom_fr\":{\"id\":\"nom_fr\",\"title\":\"nom_fr\",\"key\":false,\"linkedTo\":null},\"nom_key\":{\"id\":\"nom_key\",\"title\":\"nom_key\",\"key\":true,\"linkedTo\":null},\"definition_en\":{\"id\":\"definition_en\",\"title\":\"definition_en\",\"key\":false,\"linkedTo\":null},\"definition_fr\":{\"id\":\"definition_fr\",\"title\":\"definition_fr\",\"key\":false,\"linkedTo\":null},\"colonne_homonyme_entre_referentiels\":{\"id\":\"colonne_homonyme_entre_referentiels\",\"title\":\"colonne_homonyme_entre_referentiels\",\"key\":false,\"linkedTo\":null}},\"dynamicColumns\":{}},\"type_de_sites\":{\"id\":\"type_de_sites\",\"label\":\"type_de_sites\",\"children\":[\"sites\"],\"columns\":{\"tze_nom_en\":{\"id\":\"tze_nom_en\",\"title\":\"tze_nom_en\",\"key\":false,\"linkedTo\":null},\"tze_nom_fr\":{\"id\":\"tze_nom_fr\",\"title\":\"tze_nom_fr\",\"key\":false,\"linkedTo\":null},\"tze_nom_key\":{\"id\":\"tze_nom_key\",\"title\":\"tze_nom_key\",\"key\":true,\"linkedTo\":null},\"tze_definition_en\":{\"id\":\"tze_definition_en\",\"title\":\"tze_definition_en\",\"key\":false,\"linkedTo\":null},\"tze_definition_fr\":{\"id\":\"tze_definition_fr\",\"title\":\"tze_definition_fr\",\"key\":false,\"linkedTo\":null}},\"dynamicColumns\":{}},\"sites\":{\"id\":\"sites\",\"label\":\"sites\",\"children\":[],\"columns\":{\"zet_nom_en\":{\"id\":\"zet_nom_en\",\"title\":\"zet_nom_en\",\"key\":false,\"linkedTo\":null},\"zet_nom_fr\":{\"id\":\"zet_nom_fr\",\"title\":\"zet_nom_fr\",\"key\":false,\"linkedTo\":null},\"zet_nom_key\":{\"id\":\"zet_nom_key\",\"title\":\"zet_nom_key\",\"key\":true,\"linkedTo\":null},\"tze_type_nom\":{\"id\":\"tze_type_nom\",\"title\":\"tze_type_nom\",\"key\":false,\"linkedTo\":null},\"zet_chemin_parent\":{\"id\":\"zet_chemin_parent\",\"title\":\"zet_chemin_parent\",\"key\":true,\"linkedTo\":null},\"zet_description_en\":{\"id\":\"zet_description_en\",\"title\":\"zet_description_en\",\"key\":false,\"linkedTo\":null},\"zet_description_fr\":{\"id\":\"zet_description_fr\",\"title\":\"zet_description_fr\",\"key\":false,\"linkedTo\":null}},\"dynamicColumns\":{}},\"types_de_donnees_par_themes_de_sites_et_projet\":{\"id\":\"types_de_donnees_par_themes_de_sites_et_projet\",\"label\":\"types_de_donnees_par_themes_de_sites_et_projet\",\"children\":[],\"columns\":{\"nom du site\":{\"id\":\"nom du site\",\"title\":\"nom du site\",\"key\":true,\"linkedTo\":null},\"nom du projet\":{\"id\":\"nom du projet\",\"title\":\"nom du projet\",\"key\":true,\"linkedTo\":null},\"nom du thème\":{\"id\":\"nom du thème\",\"title\":\"nom du thème\",\"key\":true,\"linkedTo\":null},\"nom du type de données\":{\"id\":\"nom du type de données\",\"title\":\"nom du type de données\",\"key\":true,\"linkedTo\":null}},\"dynamicColumns\":{}},\"variables\":{\"id\":\"variables\",\"label\":\"variables\",\"children\":[],\"columns\":{\"nom_en\":{\"id\":\"nom_en\",\"title\":\"nom_en\",\"key\":false,\"linkedTo\":null},\"nom_fr\":{\"id\":\"nom_fr\",\"title\":\"nom_fr\",\"key\":false,\"linkedTo\":null},\"nom_key\":{\"id\":\"nom_key\",\"title\":\"nom_key\",\"key\":true,\"linkedTo\":null},\"definition_en\":{\"id\":\"definition_en\",\"title\":\"definition_en\",\"key\":false,\"linkedTo\":null},\"definition_fr\":{\"id\":\"definition_fr\",\"title\":\"definition_fr\",\"key\":false,\"linkedTo\":null},\"isQualitative\":{\"id\":\"isQualitative\",\"title\":\"isQualitative\",\"key\":false,\"linkedTo\":null}},\"dynamicColumns\":{}},\"unites\":{\"id\":\"unites\",\"label\":\"unites\",\"children\":[],\"columns\":{\"nom_en\":{\"id\":\"nom_en\",\"title\":\"nom_en\",\"key\":false,\"linkedTo\":null},\"nom_fr\":{\"id\":\"nom_fr\",\"title\":\"nom_fr\",\"key\":false,\"linkedTo\":null},\"code_en\":{\"id\":\"code_en\",\"title\":\"code_en\",\"key\":false,\"linkedTo\":null},\"code_fr\":{\"id\":\"code_fr\",\"title\":\"code_fr\",\"key\":false,\"linkedTo\":null},\"nom_key\":{\"id\":\"nom_key\",\"title\":\"nom_key\",\"key\":true,\"linkedTo\":null},\"code_key\":{\"id\":\"code_key\",\"title\":\"code_key\",\"key\":false,\"linkedTo\":null}},\"dynamicColumns\":{}},\"variables_et_unites_par_types_de_donnees\":{\"id\":\"variables_et_unites_par_types_de_donnees\",\"label\":\"variables_et_unites_par_types_de_donnees\",\"children\":[],\"columns\":{\"nom de l'unité\":{\"id\":\"nom de l'unité\",\"title\":\"nom de l'unité\",\"key\":false,\"linkedTo\":null},\"nom de la variable\":{\"id\":\"nom de la variable\",\"title\":\"nom de la variable\",\"key\":true,\"linkedTo\":null},\"nom du type de données\":{\"id\":\"nom du type de données\",\"title\":\"nom du type de données\",\"key\":true,\"linkedTo\":null}},\"dynamicColumns\":{}},\"valeurs_qualitatives\":{\"id\":\"valeurs_qualitatives\",\"label\":\"valeurs_qualitatives\",\"children\":[],\"columns\":{\"nom_en\":{\"id\":\"nom_en\",\"title\":\"nom_en\",\"key\":false,\"linkedTo\":null},\"nom_fr\":{\"id\":\"nom_fr\",\"title\":\"nom_fr\",\"key\":false,\"linkedTo\":null},\"nom_key\":{\"id\":\"nom_key\",\"title\":\"nom_key\",\"key\":true,\"linkedTo\":null},\"valeur_en\":{\"id\":\"valeur_en\",\"title\":\"valeur_en\",\"key\":false,\"linkedTo\":null},\"valeur_fr\":{\"id\":\"valeur_fr\",\"title\":\"valeur_fr\",\"key\":false,\"linkedTo\":null},\"valeur_key\":{\"id\":\"valeur_key\",\"title\":\"valeur_key\",\"key\":true,\"linkedTo\":null}},\"dynamicColumns\":{}},\"type de fichiers\":{\"id\":\"type de fichiers\",\"label\":\"type de fichiers\",\"children\":[],\"columns\":{\"nom_en\":{\"id\":\"nom_en\",\"title\":\"nom_en\",\"key\":false,\"linkedTo\":null},\"nom_fr\":{\"id\":\"nom_fr\",\"title\":\"nom_fr\",\"key\":false,\"linkedTo\":null},\"nom_key\":{\"id\":\"nom_key\",\"title\":\"nom_key\",\"key\":true,\"linkedTo\":null},\"description_en\":{\"id\":\"description_en\",\"title\":\"description_en\",\"key\":false,\"linkedTo\":null},\"description_fr\":{\"id\":\"description_fr\",\"title\":\"description_fr\",\"key\":false,\"linkedTo\":null}},\"dynamicColumns\":{}},\"especes\":{\"id\":\"especes\",\"label\":\"especes\",\"children\":[],\"columns\":{\"esp_nom\":{\"id\":\"esp_nom\",\"title\":\"esp_nom\",\"key\":true,\"linkedTo\":null},\"esp_definition_en\":{\"id\":\"esp_definition_en\",\"title\":\"esp_definition_en\",\"key\":false,\"linkedTo\":null},\"esp_definition_fr\":{\"id\":\"esp_definition_fr\",\"title\":\"esp_definition_fr\",\"key\":false,\"linkedTo\":null},\"colonne_homonyme_entre_referentiels\":{\"id\":\"colonne_homonyme_entre_referentiels\",\"title\":\"colonne_homonyme_entre_referentiels\",\"key\":false,\"linkedTo\":null}},\"dynamicColumns\":{}}},\"dataTypes\":{\"pem\":{\"id\":\"pem\",\"label\":\"pem\",\"variables\":{\"date\":{\"id\":\"date\",\"label\":\"date\",\"components\":{\"value\":{\"id\":\"value\",\"label\":\"value\"}},\"chartDescription\":null},\"site\":{\"id\":\"site\",\"label\":\"site\",\"components\":{\"bassin\":{\"id\":\"bassin\",\"label\":\"bassin\"},\"chemin\":{\"id\":\"chemin\",\"label\":\"chemin\"},\"plateforme\":{\"id\":\"plateforme\",\"label\":\"plateforme\"},\"site_bassin\":{\"id\":\"site_bassin\",\"label\":\"site_bassin\"}},\"chartDescription\":null},\"espece\":{\"id\":\"espece\",\"label\":\"espece\",\"components\":{\"value\":{\"id\":\"value\",\"label\":\"value\"}},\"chartDescription\":null},\"projet\":{\"id\":\"projet\",\"label\":\"projet\",\"components\":{\"value\":{\"id\":\"value\",\"label\":\"value\"}},\"chartDescription\":null},\"Nombre d'individus\":{\"id\":\"Nombre d'individus\",\"label\":\"Nombre d'individus\",\"components\":{\"unit\":{\"id\":\"unit\",\"label\":\"unit\"},\"value\":{\"id\":\"value\",\"label\":\"value\"}},\"chartDescription\":null},\"Couleur des individus\":{\"id\":\"Couleur des individus\",\"label\":\"Couleur des individus\",\"components\":{\"unit\":{\"id\":\"unit\",\"label\":\"unit\"},\"value\":{\"id\":\"value\",\"label\":\"value\"}},\"chartDescription\":null}},\"repository\":null,\"hasAuthorizations\":true}},\"referenceSynthesis\":[{\"referenceType\":\"variables\",\"lineCount\":2},{\"referenceType\":\"especes\",\"lineCount\":7},{\"referenceType\":\"type_de_sites\",\"lineCount\":2},{\"referenceType\":\"types_de_donnees_par_themes_de_sites_et_projet\",\"lineCount\":9},{\"referenceType\":\"themes\",\"lineCount\":1},{\"referenceType\":\"valeurs_qualitatives\",\"lineCount\":3},{\"referenceType\":\"projet\",\"lineCount\":2},{\"referenceType\":\"type de fichiers\",\"lineCount\":3},{\"referenceType\":\"sites\",\"lineCount\":9},{\"referenceType\":\"unites\",\"lineCount\":1},{\"referenceType\":\"variables_et_unites_par_types_de_donnees\",\"lineCount\":2}]}"
\ No newline at end of file
diff --git a/ui/cypress/fixtures/applications/ore/monsore/references/projet.json b/ui/cypress/fixtures/applications/ore/monsore/references/projet.json
new file mode 100644
index 0000000000000000000000000000000000000000..4aac987015900ff6cebde49c337f0eca6a15711a
--- /dev/null
+++ b/ui/cypress/fixtures/applications/ore/monsore/references/projet.json
@@ -0,0 +1 @@
+"{\"referenceValues\":[{\"hierarchicalKey\":\"projet_atlantique\",\"hierarchicalReference\":\"projet\",\"naturalKey\":\"projet_atlantique\",\"values\":{\"nom_en\":\"Atlantic project\",\"nom_fr\":\"Projet Atlantique\",\"nom_key\":\"projet_atlantique\",\"__display_en\":\"Atlantic project\",\"__display_fr\":\"Projet Atlantique\",\"definition_en\":\"Atlantic project\",\"definition_fr\":\"Projet Atlantique\"}},{\"hierarchicalKey\":\"projet_manche\",\"hierarchicalReference\":\"projet\",\"naturalKey\":\"projet_manche\",\"values\":{\"nom_en\":\"Channel project\",\"nom_fr\":\"Projet manche\",\"nom_key\":\"projet_manche\",\"__display_en\":\"Channel project\",\"__display_fr\":\"Projet manche\",\"definition_en\":\"Channel project\",\"definition_fr\":\"Projet manche\"}}]}"
\ No newline at end of file
diff --git a/ui/cypress/fixtures/applications/ore/monsore/references/sites.json b/ui/cypress/fixtures/applications/ore/monsore/references/sites.json
new file mode 100644
index 0000000000000000000000000000000000000000..9f00d557f97c452fe816ded9551db21c5209714b
--- /dev/null
+++ b/ui/cypress/fixtures/applications/ore/monsore/references/sites.json
@@ -0,0 +1 @@
+"{\"referenceValues\":[{\"hierarchicalKey\":\"bassin_versant.nivelle\",\"hierarchicalReference\":\"type_de_sites.sites\",\"naturalKey\":\"nivelle\",\"values\":{\"zet_nom_en\":\"Nivelle\",\"zet_nom_fr\":\"Nivelle\",\"zet_nom_key\":\"nivelle\",\"__display_en\":\"Nivelle\",\"__display_fr\":\"Nivelle\",\"tze_type_nom\":\"bassin_versant\",\"zet_chemin_parent\":\"\",\"zet_description_en\":\"Watershed Nivelle\",\"zet_description_fr\":\"Bassin versant de Nivelle\"}},{\"hierarchicalKey\":\"bassin_versant.oir\",\"hierarchicalReference\":\"type_de_sites.sites\",\"naturalKey\":\"oir\",\"values\":{\"zet_nom_en\":\"Oir\",\"zet_nom_fr\":\"Oir\",\"zet_nom_key\":\"oir\",\"__display_en\":\"Oir\",\"__display_fr\":\"Oir\",\"tze_type_nom\":\"bassin_versant\",\"zet_chemin_parent\":\"\",\"zet_description_en\":\"Oir catchment\",\"zet_description_fr\":\"Bassin versant d'Oir\"}},{\"hierarchicalKey\":\"bassin_versant.scarff\",\"hierarchicalReference\":\"type_de_sites.sites\",\"naturalKey\":\"scarff\",\"values\":{\"zet_nom_en\":\"Scarff\",\"zet_nom_fr\":\"Scarff\",\"zet_nom_key\":\"scarff\",\"__display_en\":\"Scarff\",\"__display_fr\":\"Scarff\",\"tze_type_nom\":\"bassin_versant\",\"zet_chemin_parent\":\"\",\"zet_description_en\":\"Watershed Scarff\",\"zet_description_fr\":\"Bassin versant de Scarff\"}},{\"hierarchicalKey\":\"plateforme.nivelle.nivelle__p1\",\"hierarchicalReference\":\"type_de_sites.sites.sites\",\"naturalKey\":\"nivelle__p1\",\"values\":{\"zet_nom_en\":\"P1\",\"zet_nom_fr\":\"P1\",\"zet_nom_key\":\"p1\",\"__display_en\":\"P1\",\"__display_fr\":\"P1\",\"tze_type_nom\":\"plateforme\",\"zet_chemin_parent\":\"nivelle\",\"zet_description_en\":\"\",\"zet_description_fr\":\"\"}},{\"hierarchicalKey\":\"plateforme.oir.oir__p1\",\"hierarchicalReference\":\"type_de_sites.sites.sites\",\"naturalKey\":\"oir__p1\",\"values\":{\"zet_nom_en\":\"P1\",\"zet_nom_fr\":\"P1\",\"zet_nom_key\":\"p1\",\"__display_en\":\"P1\",\"__display_fr\":\"P1\",\"tze_type_nom\":\"plateforme\",\"zet_chemin_parent\":\"oir\",\"zet_description_en\":\"\",\"zet_description_fr\":\"\"}},{\"hierarchicalKey\":\"plateforme.oir.oir__p1.oir__p1__a\",\"hierarchicalReference\":\"type_de_sites.sites.sites.sites\",\"naturalKey\":\"oir__p1__a\",\"values\":{\"zet_nom_en\":\"A\",\"zet_nom_fr\":\"A\",\"zet_nom_key\":\"a\",\"__display_en\":\"A\",\"__display_fr\":\"A\",\"tze_type_nom\":\"plateforme\",\"zet_chemin_parent\":\"oir__p1\",\"zet_description_en\":\"\",\"zet_description_fr\":\"\"}},{\"hierarchicalKey\":\"plateforme.oir.oir__p1.oir__p1__b\",\"hierarchicalReference\":\"type_de_sites.sites.sites.sites\",\"naturalKey\":\"oir__p1__b\",\"values\":{\"zet_nom_en\":\"B\",\"zet_nom_fr\":\"B\",\"zet_nom_key\":\"b\",\"__display_en\":\"B\",\"__display_fr\":\"B\",\"tze_type_nom\":\"plateforme\",\"zet_chemin_parent\":\"oir__p1\",\"zet_description_en\":\"\",\"zet_description_fr\":\"\"}},{\"hierarchicalKey\":\"plateforme.oir.oir__p2\",\"hierarchicalReference\":\"type_de_sites.sites.sites\",\"naturalKey\":\"oir__p2\",\"values\":{\"zet_nom_en\":\"P2\",\"zet_nom_fr\":\"P2\",\"zet_nom_key\":\"p2\",\"__display_en\":\"P2\",\"__display_fr\":\"P2\",\"tze_type_nom\":\"plateforme\",\"zet_chemin_parent\":\"oir\",\"zet_description_en\":\"\",\"zet_description_fr\":\"\"}},{\"hierarchicalKey\":\"plateforme.scarff.scarff__p1\",\"hierarchicalReference\":\"type_de_sites.sites.sites\",\"naturalKey\":\"scarff__p1\",\"values\":{\"zet_nom_en\":\"P1\",\"zet_nom_fr\":\"P1\",\"zet_nom_key\":\"p1\",\"__display_en\":\"P1\",\"__display_fr\":\"P1\",\"tze_type_nom\":\"plateforme\",\"zet_chemin_parent\":\"scarff\",\"zet_description_en\":\"\",\"zet_description_fr\":\"\"}}]}"
\ No newline at end of file
diff --git a/ui/cypress/fixtures/applications/ore/monsore/references/type_de_sites.json b/ui/cypress/fixtures/applications/ore/monsore/references/type_de_sites.json
new file mode 100644
index 0000000000000000000000000000000000000000..5460ff05459a8338c28e641a598a91c0b3e9699e
--- /dev/null
+++ b/ui/cypress/fixtures/applications/ore/monsore/references/type_de_sites.json
@@ -0,0 +1 @@
+"{\"referenceValues\":[{\"hierarchicalKey\":\"bassin_versant\",\"hierarchicalReference\":\"type_de_sites\",\"naturalKey\":\"bassin_versant\",\"values\":{\"tze_nom_en\":\"Watershed\",\"tze_nom_fr\":\"Bassin versant\",\"tze_nom_key\":\"bassin_versant\",\"__display_en\":\"Watershed\",\"__display_fr\":\"Bassin versant\",\"tze_definition_en\":\"Watershed\",\"tze_definition_fr\":\"Bassin versant\"}},{\"hierarchicalKey\":\"plateforme\",\"hierarchicalReference\":\"type_de_sites\",\"naturalKey\":\"plateforme\",\"values\":{\"tze_nom_en\":\"Platform\",\"tze_nom_fr\":\"Plateforme\",\"tze_nom_key\":\"plateforme\",\"__display_en\":\"Platform\",\"__display_fr\":\"Plateforme\",\"tze_definition_en\":\"Measurement platform\",\"tze_definition_fr\":\"Plateforme de mesure\"}}]}"
\ No newline at end of file
diff --git a/ui/cypress/fixtures/authorisation/monsore/show_authorization_table.json b/ui/cypress/fixtures/authorisation/monsore/show_authorization_table.json
deleted file mode 100644
index 6ae4a4f38c89e5df8a7e734bf43743fcb5a3051b..0000000000000000000000000000000000000000
--- a/ui/cypress/fixtures/authorisation/monsore/show_authorization_table.json
+++ /dev/null
@@ -1,28 +0,0 @@
-[
-  {
-    "id": "f156814d-8fb7-4924-a4f7-5bbd8b859599",
-    "user": "5a4dbd41-3fc9-4b3e-b593-a46bc888a7f9",
-    "application": "862d502b-8a29-4ff0-bb30-e779a08cfe40",
-    "dataType": "pem",
-    "dataGroup": "qualitatif",
-    "authorizedScopes": {
-      "projet": "projet_atlantique",
-      "localization": "nivelle"
-    },
-    "fromDay": null,
-    "toDay": null
-  },
-  {
-    "id": "b0747734-c87d-4756-abeb-065a06a9cb70",
-    "user": "5a4dbd41-3fc9-4b3e-b593-a46bc888a7f9",
-    "application": "862d502b-8a29-4ff0-bb30-e779a08cfe40",
-    "dataType": "pem",
-    "dataGroup": "qualitatif",
-    "authorizedScopes": {
-      "projet": "projet_atlantique",
-      "localization": "nivelle"
-    },
-    "fromDay": null,
-    "toDay": null
-  }
-]
\ No newline at end of file
diff --git a/ui/cypress/fixtures/references/monsore/projet.json b/ui/cypress/fixtures/references/monsore/projet.json
deleted file mode 100644
index 635a1f23e757a37b591996c02684f062088c6e0a..0000000000000000000000000000000000000000
--- a/ui/cypress/fixtures/references/monsore/projet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
-  "referenceValues": [
-    {
-      "hierarchicalKey": "projet_atlantique",
-      "hierarchicalReference": "projet",
-      "naturalKey": "projet_atlantique",
-      "values": {
-        "nom_en": "Atlantic project",
-        "nom_fr": "Projet Atlantique",
-        "nom_key": "projet_atlantique",
-        "__display_en": "Atlantic project",
-        "__display_fr": "Projet Atlantique",
-        "definition_en": "Atlantic project",
-        "definition_fr": "Projet Atlantique"
-      }
-    },
-    {
-      "hierarchicalKey": "projet_manche",
-      "hierarchicalReference": "projet",
-      "naturalKey": "projet_manche",
-      "values": {
-        "nom_en": "Channel project",
-        "nom_fr": "Projet manche",
-        "nom_key": "projet_manche",
-        "__display_en": "Channel project",
-        "__display_fr": "Projet manche",
-        "definition_en": "Channel project",
-        "definition_fr": "Projet manche"
-      }
-    }
-  ]
-}
\ No newline at end of file
diff --git a/ui/cypress/fixtures/references/monsore/sites.json b/ui/cypress/fixtures/references/monsore/sites.json
deleted file mode 100644
index 80b57d22a6b836082153b63fe4f15f39f7c6db29..0000000000000000000000000000000000000000
--- a/ui/cypress/fixtures/references/monsore/sites.json
+++ /dev/null
@@ -1,148 +0,0 @@
-{
-  "referenceValues": [
-    {
-      "hierarchicalKey": "bassin_versant.nivelle",
-      "hierarchicalReference": "type_de_sites.sites",
-      "naturalKey": "nivelle",
-      "values": {
-        "zet_nom_en": "Nivelle",
-        "zet_nom_fr": "Nivelle",
-        "zet_nom_key": "nivelle",
-        "__display_en": "Nivelle",
-        "__display_fr": "Nivelle",
-        "tze_type_nom": "bassin_versant",
-        "zet_chemin_parent": "",
-        "zet_description_en": "Watershed Nivelle",
-        "zet_description_fr": "Bassin versant de Nivelle"
-      }
-    },
-    {
-      "hierarchicalKey": "bassin_versant.oir",
-      "hierarchicalReference": "type_de_sites.sites",
-      "naturalKey": "oir",
-      "values": {
-        "zet_nom_en": "Oir",
-        "zet_nom_fr": "Oir",
-        "zet_nom_key": "oir",
-        "__display_en": "Oir",
-        "__display_fr": "Oir",
-        "tze_type_nom": "bassin_versant",
-        "zet_chemin_parent": "",
-        "zet_description_en": "Oir catchment",
-        "zet_description_fr": "Bassin versant d'Oir"
-      }
-    },
-    {
-      "hierarchicalKey": "bassin_versant.scarff",
-      "hierarchicalReference": "type_de_sites.sites",
-      "naturalKey": "scarff",
-      "values": {
-        "zet_nom_en": "Scarff",
-        "zet_nom_fr": "Scarff",
-        "zet_nom_key": "scarff",
-        "__display_en": "Scarff",
-        "__display_fr": "Scarff",
-        "tze_type_nom": "bassin_versant",
-        "zet_chemin_parent": "",
-        "zet_description_en": "Watershed Scarff",
-        "zet_description_fr": "Bassin versant de Scarff"
-      }
-    },
-    {
-      "hierarchicalKey": "plateforme.nivelle.nivelle__p1",
-      "hierarchicalReference": "type_de_sites.sites.sites",
-      "naturalKey": "nivelle__p1",
-      "values": {
-        "zet_nom_en": "P1",
-        "zet_nom_fr": "P1",
-        "zet_nom_key": "p1",
-        "__display_en": "P1",
-        "__display_fr": "P1",
-        "tze_type_nom": "plateforme",
-        "zet_chemin_parent": "nivelle",
-        "zet_description_en": "",
-        "zet_description_fr": ""
-      }
-    },
-    {
-      "hierarchicalKey": "plateforme.oir.oir__p1",
-      "hierarchicalReference": "type_de_sites.sites.sites",
-      "naturalKey": "oir__p1",
-      "values": {
-        "zet_nom_en": "P1",
-        "zet_nom_fr": "P1",
-        "zet_nom_key": "p1",
-        "__display_en": "P1",
-        "__display_fr": "P1",
-        "tze_type_nom": "plateforme",
-        "zet_chemin_parent": "oir",
-        "zet_description_en": "",
-        "zet_description_fr": ""
-      }
-    },
-    {
-      "hierarchicalKey": "plateforme.oir.oir__p1.oir__p1__a",
-      "hierarchicalReference": "type_de_sites.sites.sites.sites",
-      "naturalKey": "oir__p1__a",
-      "values": {
-        "zet_nom_en": "A",
-        "zet_nom_fr": "A",
-        "zet_nom_key": "a",
-        "__display_en": "A",
-        "__display_fr": "A",
-        "tze_type_nom": "plateforme",
-        "zet_chemin_parent": "oir__p1",
-        "zet_description_en": "",
-        "zet_description_fr": ""
-      }
-    },
-    {
-      "hierarchicalKey": "plateforme.oir.oir__p1.oir__p1__b",
-      "hierarchicalReference": "type_de_sites.sites.sites.sites",
-      "naturalKey": "oir__p1__b",
-      "values": {
-        "zet_nom_en": "B",
-        "zet_nom_fr": "B",
-        "zet_nom_key": "b",
-        "__display_en": "B",
-        "__display_fr": "B",
-        "tze_type_nom": "plateforme",
-        "zet_chemin_parent": "oir__p1",
-        "zet_description_en": "",
-        "zet_description_fr": ""
-      }
-    },
-    {
-      "hierarchicalKey": "plateforme.oir.oir__p2",
-      "hierarchicalReference": "type_de_sites.sites.sites",
-      "naturalKey": "oir__p2",
-      "values": {
-        "zet_nom_en": "P2",
-        "zet_nom_fr": "P2",
-        "zet_nom_key": "p2",
-        "__display_en": "P2",
-        "__display_fr": "P2",
-        "tze_type_nom": "plateforme",
-        "zet_chemin_parent": "oir",
-        "zet_description_en": "",
-        "zet_description_fr": ""
-      }
-    },
-    {
-      "hierarchicalKey": "plateforme.scarff.scarff__p1",
-      "hierarchicalReference": "type_de_sites.sites.sites",
-      "naturalKey": "scarff__p1",
-      "values": {
-        "zet_nom_en": "P1",
-        "zet_nom_fr": "P1",
-        "zet_nom_key": "p1",
-        "__display_en": "P1",
-        "__display_fr": "P1",
-        "tze_type_nom": "plateforme",
-        "zet_chemin_parent": "scarff",
-        "zet_description_en": "",
-        "zet_description_fr": ""
-      }
-    }
-  ]
-}
\ No newline at end of file
diff --git a/ui/cypress/fixtures/references/monsore/type_de_sites.json b/ui/cypress/fixtures/references/monsore/type_de_sites.json
deleted file mode 100644
index 416c89fbe5cf0a52fa444703d3cd0fb45efda794..0000000000000000000000000000000000000000
--- a/ui/cypress/fixtures/references/monsore/type_de_sites.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
-  "referenceValues": [
-    {
-      "hierarchicalKey": "bassin_versant",
-      "hierarchicalReference": "type_de_sites",
-      "naturalKey": "bassin_versant",
-      "values": {
-        "tze_nom_en": "Watershed",
-        "tze_nom_fr": "Bassin versant",
-        "tze_nom_key": "bassin_versant",
-        "__display_en": "Watershed",
-        "__display_fr": "Bassin versant",
-        "tze_definition_en": "Watershed",
-        "tze_definition_fr": "Bassin versant"
-      }
-    },
-    {
-      "hierarchicalKey": "plateforme",
-      "hierarchicalReference": "type_de_sites",
-      "naturalKey": "plateforme",
-      "values": {
-        "tze_nom_en": "Platform",
-        "tze_nom_fr": "Plateforme",
-        "tze_nom_key": "plateforme",
-        "__display_en": "Platform",
-        "__display_fr": "Plateforme",
-        "tze_definition_en": "Measurement platform",
-        "tze_definition_fr": "Plateforme de mesure"
-      }
-    }
-  ]
-}
\ No newline at end of file
diff --git a/ui/cypress/fixtures/users/users.json b/ui/cypress/fixtures/users/users.json
index 054a25b4709e5fc64e463562b0e02a8c70e49da8..4d570ee6aedf73043e959df6dcd7f30a2c26d23d 100644
--- a/ui/cypress/fixtures/users/users.json
+++ b/ui/cypress/fixtures/users/users.json
@@ -13,8 +13,9 @@
     },
     "visitor": {
         "response": {
-            "body": "utilisateur non enregistré, merci de verrifié le login et le mot de passe",
-            "statusCode": 401
+            "body": "identifiants fournis incorrects",
+            "statusCode": 403,
+            "Content-Type:": "text/plain;charset=ISO-8859-1"
         }
     }
 }
\ No newline at end of file
diff --git a/ui/cypress/integration/authorizationScope_spec.js b/ui/cypress/integration/authorizationScope_spec.js
index a64e322d5fce2dbb10aace74f2cf38fa3689907d..7066aaeb145168ab8c3266aa2e7ad24ac577dc59 100644
--- a/ui/cypress/integration/authorizationScope_spec.js
+++ b/ui/cypress/integration/authorizationScope_spec.js
@@ -12,18 +12,23 @@ describe('test authorization application', () => {
         const resolveDataTypes = response =>cy.intercept(
             'GET',
             'http://localhost:8081/api/v1/applications/monsore',
-            response).as('getDataTypes')
+            response).as('getMonsoere')
 
         const resolveAuthorization= response => cy.intercept(
             'GET',
             'http://localhost:8081/api/v1/applications/monsore/dataType/pem/grantable',
-            response).as('getAuthorization')
+            response).as('getGrantable')
 
         const responseAuthorization= response => cy.intercept(
             'GET',
             'http://localhost:8081/api/v1/applications/monsore/dataType/pem/authorization',
             response).as('getShowAuthorizations')
 
+        const postAuthorization= response => cy.intercept(
+            'POST',
+            'http://localhost:8081/api/v1/applications/monsore/dataType/pem/authorization',
+            response).as('getPostAuthorizations')
+
         const responseSites= response => cy.intercept(
             'GET',
             'http://localhost:8081/api/v1/applications/monsore/references/sites',
@@ -38,26 +43,28 @@ describe('test authorization application', () => {
             'http://localhost:8081/api/v1/applications/monsore/references/type_de_sites',
             response).as('getTypeSites')
 
-        cy.fixture('applications/ore/monsore/dataType_response.json').then(resolveDataTypes)
-        cy.fixture('authorisation/monsore/show_authorization_table.json').then(responseAuthorization)
+        cy.fixture('applications/ore/monsore/monsoere.json').then(resolveDataTypes)
+        cy.fixture('applications/ore/monsore/datatypes/authorisation/show_authorization_table.json').then(responseAuthorization)
 
         cy.visit(Cypress.env('monsore_table_authorization_url'))
-        cy.get('select').select('5a4dbd41-3fc9-4b3e-b593-a46bc888a7f9')
+        //cy.get('select').select('5a4dbd41-3fc9-4b3e-b593-a46bc888a7f9')
         cy.wait('@getShowAuthorizations')
-        cy.wait(1)
+        cy.wait(10)
 
-        cy.fixture('authorisation/monsore/new_authorization_request.json').then(resolveAuthorization)
-        cy.fixture('references/monsore/sites.json').then(responseSites)
-        cy.fixture('references/monsore/projet.json').then(responseProjet)
-        cy.fixture('references/monsore/type_de_sites.json').then(responseTypeSites)
+        cy.fixture('applications/ore/monsore/datatypes/authorisation/new_authorization_request.json').then(resolveAuthorization)
+        cy.fixture('applications/ore/monsore/references/sites.json').then(responseSites)
+        cy.fixture('applications/ore/monsore/references/projet.json').then(responseProjet)
+        cy.fixture('applications/ore/monsore/references/type_de_sites.json').then(responseTypeSites)
 
         cy.visit(Cypress.env('monsore_new_authorization_url'))
-        cy.wait(['@getAuthorization','@getDataTypes'])
+        cy.wait(['@getGrantable','@getMonsoere'])
+        cy.wait(100)
         cy.get('.title.main-title').first().contains('Nouvelle autorisation pour Piégeage en Montée')
-        cy.get('.columns').contains('Projet Atlantique').click()
-       // cy.get('.columns').eq(3).find('[field=extraction]').find( '.columns').find(' span.icon.column').click()
-
-        //cy.get('.buttons > .button').click()
-        //cy.fixture('authorisation/monsore/new_authorization_response.json').then(responseAuthorization)
+        cy.get("select").select("8b48a812-7da7-462a-8012-3e93b696d14b")
+        cy.get("input[type=text]").type("Une authorization")
+        cy.contains('Projet Atlantique').click()
+        cy.get("div[field=extraction] span.icon").eq(2).click()
+        cy.fixture('applications/ore/monsore/datatypes/authorisation/post_authorization.json').then(postAuthorization)
+        cy.get('.buttons > .button').click()
     })
 })
\ No newline at end of file
diff --git a/ui/cypress/integration/createApplication_spec.js b/ui/cypress/integration/createApplication_spec.js
index 5ffe5dfb79d6d993c5de169f8bd0e6154bc0d312..ebbf66786c145b7c708fa0859ba762abeb82573c 100644
--- a/ui/cypress/integration/createApplication_spec.js
+++ b/ui/cypress/integration/createApplication_spec.js
@@ -9,12 +9,10 @@ describe('test create application', () => {
         cy.login("admin", ['applications/ore/ore_application_description.json'])
 
         cy.get('.card-header-title.createApplication').first().contains(' Créer l\'application ').click()
-        const testYaml = 'applications/fake/fakeYaml_testCreateAplication.json'
         const yamlSite = 'applications/sites/site.yaml'
-        const nameApplication = 'site'
 
         cy.visit(Cypress.env('applications_url'))
-        cy.get('.card-header-title.createApplication').first().contains(" Créer l\'application ").click()
+        cy.get('.card-header-title.createApplication').first().contains(" Créer l'application ").click()
 
         cy.visit(Cypress.env('applicationCreation_url'))
         //cy.get('input[type = text]').first().type(nameApplication)
@@ -72,6 +70,7 @@ describe('test create application', () => {
                 },
             }).as('validateResponse')
         cy.get('.button > :nth-child(2)').first().click();
+        cy.wait(100)
         cy.get('.textarea').first().type("un commentaire")
         cy.intercept(
             'POST',
diff --git a/ui/cypress/integration/login_spec.js b/ui/cypress/integration/login_spec.js
index 3c9a661277287d5b62f7dabe43e99e49e7d1b2a3..0124c845c016cfe162b4560ad9fdd1b6980c7aea 100644
--- a/ui/cypress/integration/login_spec.js
+++ b/ui/cypress/integration/login_spec.js
@@ -2,14 +2,7 @@
 //import { UserPreferencesService } from "../../src/services/UserPreferencesService";
 
 describe('test login', () => {
-    it('login visitor', () => {
-        cy.setLocale('fr');
-        cy.login("visitor")
-        cy.url().should('include', '/login')
-
-    })
     it('login admin', () => {
-        cy.setLocale('fr');
         cy.visit('url', {
             headers: {
                 'Accept-Language': 'de',
@@ -20,4 +13,9 @@ describe('test login', () => {
         cy.get('.card-header-title.createApplication').first().contains(" Créer l'application ")
 
     })
+    it('login visitor', () => {
+        cy.login("visitor")
+        cy.url().should('include', '/login')
+
+    })
 })
\ No newline at end of file
diff --git a/ui/cypress/support/commands.js b/ui/cypress/support/commands.js
index c37bdde143e8a0cf175bada91b41e29767be7ea6..71cc59cfe76879067c243f13e220b8f4479e4ee1 100644
--- a/ui/cypress/support/commands.js
+++ b/ui/cypress/support/commands.js
@@ -27,7 +27,7 @@ import 'cypress-file-upload';
 
 Cypress.Commands.add('setLocale', (locale) => {
     Cypress.on('window:before:load', window => {
-        Object.defineProperty(window.navigator, 'language', { value: locale });
+        Object.defineProperty(window.navigator, 'language', {value: locale});
     });
 })
 Cypress.Commands.add('login', (userRole, applications) => {
@@ -39,9 +39,11 @@ Cypress.Commands.add('login', (userRole, applications) => {
             applicationsResponse = app
         })
     }
+    cy.setLocale('fr');
     cy.fixture('users/users.json').as('users')
     cy.get('@users').then((users) => {
         const user = users[userRole]
+        console.log(userRole, user)
         cy.visit(Cypress.env('login_url'))
         cy.get(':nth-child(1) > .field > .control > input').first().type(userRole)
         cy.get(':nth-child(2) > .field > .control > input').first().type("password")
diff --git a/ui/cypress/videos/authorizationScope_spec.js.mp4 b/ui/cypress/videos/authorizationScope_spec.js.mp4
new file mode 100644
index 0000000000000000000000000000000000000000..2e8a97002933a811aee8b0418ddfa36ad94614a9
Binary files /dev/null and b/ui/cypress/videos/authorizationScope_spec.js.mp4 differ
diff --git a/ui/cypress/videos/createApplication_spec.js.mp4 b/ui/cypress/videos/createApplication_spec.js.mp4
new file mode 100644
index 0000000000000000000000000000000000000000..30757d7203d2a5ee0c117b4173d7d3cea7f227da
Binary files /dev/null and b/ui/cypress/videos/createApplication_spec.js.mp4 differ
diff --git a/ui/cypress/videos/errors_test.js.mp4 b/ui/cypress/videos/errors_test.js.mp4
new file mode 100644
index 0000000000000000000000000000000000000000..4c292869152cb11bba0847ca6118a41fe6ff15d1
Binary files /dev/null and b/ui/cypress/videos/errors_test.js.mp4 differ
diff --git a/ui/cypress/videos/login_spec.js.mp4 b/ui/cypress/videos/login_spec.js.mp4
new file mode 100644
index 0000000000000000000000000000000000000000..10641bf1d0dc5cb0c00213f36942af45722c3be9
Binary files /dev/null and b/ui/cypress/videos/login_spec.js.mp4 differ
diff --git a/ui/file.txt b/ui/file.txt
new file mode 100644
index 0000000000000000000000000000000000000000..ab1f8d71f0c2138bed532a0e143bb88fed4d98e0
--- /dev/null
+++ b/ui/file.txt
@@ -0,0 +1,1571 @@
+<s> [webpack.Progress] 0% compiling
+<s> [webpack.Progress] 10% building 0/0 modules 0 active 
+<s> [webpack.Progress] 10% building 0/1 modules 1 active multi /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/client/index.js?http://localhost:8087&sockPath=/sockjs-node /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack/hot/dev-server.js ./src/main.js
+<s> [webpack.Progress] 10% building 1/1 modules 0 active 
+<s> [webpack.Progress] 10% building 1/1 modules 0 active 
+<s> [webpack.Progress] 10% building 1/2 modules 1 active multi /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack/hot/dev-server.js /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/client/index.js?http://localhost:8087&sockPath=/sockjs-node ./src/main.js
+<s> [webpack.Progress] 10% building 2/2 modules 0 active 
+<s> [webpack.Progress] 10% building 2/3 modules 1 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/client/index.js?http://localhost:8087&sockPath=/sockjs-node
+<s> [webpack.Progress] 10% building 2/4 modules 2 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack/hot/dev-server.js
+<s> [webpack.Progress] 10% building 3/4 modules 1 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack/hot/dev-server.js
+<s> [webpack.Progress] 10% building 4/4 modules 0 active 
+<s> [webpack.Progress] 10% building 4/5 modules 1 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack/hot sync nonrecursive /^\.\/log$/
+<s> [webpack.Progress] 10% building 5/5 modules 0 active 
+<s> [webpack.Progress] 10% building 5/6 modules 1 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack/hot/log.js
+<s> [webpack.Progress] 10% building 5/7 modules 2 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack/hot/log-apply-result.js
+<s> [webpack.Progress] 10% building 5/8 modules 3 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack/hot/emitter.js
+<s> [webpack.Progress] 10% building 5/9 modules 4 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/client/socket.js
+<s> [webpack.Progress] 10% building 5/10 modules 5 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/client/overlay.js
+<s> [webpack.Progress] 10% building 5/11 modules 6 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/client/utils/log.js
+<s> [webpack.Progress] 10% building 5/12 modules 7 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/client/utils/sendMessage.js
+<s> [webpack.Progress] 10% building 5/13 modules 8 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/client/utils/reloadApp.js
+<s> [webpack.Progress] 10% building 5/14 modules 9 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/client/utils/createSocketUrl.js
+<s> [webpack.Progress] 10% building 6/14 modules 8 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/client/utils/createSocketUrl.js
+<s> [webpack.Progress] 10% building 7/14 modules 7 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/client/utils/createSocketUrl.js
+<s> [webpack.Progress] 10% building 8/14 modules 6 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/client/utils/createSocketUrl.js
+<s> [webpack.Progress] 11% building 9/14 modules 5 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/client/utils/createSocketUrl.js
+<s> [webpack.Progress] 11% building 10/14 modules 4 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/client/utils/createSocketUrl.js
+<s> [webpack.Progress] 11% building 11/14 modules 3 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/client/utils/createSocketUrl.js
+<s> [webpack.Progress] 11% building 12/14 modules 2 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/client/utils/createSocketUrl.js
+<s> [webpack.Progress] 11% building 13/14 modules 1 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/client/utils/createSocketUrl.js
+<s> [webpack.Progress] 11% building 14/14 modules 0 active 
+<s> [webpack.Progress] 11% building 14/15 modules 1 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/client/clients/SockJSClient.js
+<s> [webpack.Progress] 11% building 14/16 modules 2 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/events/events.js
+<s> [webpack.Progress] 11% building 15/16 modules 1 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/events/events.js
+<s> [webpack.Progress] 11% building 15/17 modules 2 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/client/utils/getCurrentScriptSource.js
+<s> [webpack.Progress] 11% building 15/18 modules 3 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/url/url.js
+<s> [webpack.Progress] 11% building 16/18 modules 2 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/url/url.js
+<s> [webpack.Progress] 12% building 17/18 modules 1 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/url/url.js
+<s> [webpack.Progress] 12% building 18/18 modules 0 active 
+<s> [webpack.Progress] 12% building 18/19 modules 1 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/client/clients/BaseClient.js
+<s> [webpack.Progress] 12% building 18/20 modules 2 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/main.js
+<s> [webpack.Progress] 12% building 18/21 modules 3 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/strip-ansi/index.js
+<s> [webpack.Progress] 12% building 19/21 modules 2 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/strip-ansi/index.js
+<s> [webpack.Progress] 12% building 19/22 modules 3 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/url/util.js
+<s> [webpack.Progress] 12% building 20/22 modules 2 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/url/util.js
+<s> [webpack.Progress] 40% building 20/22 modules 2 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/url/util.js
+<s> [webpack.Progress] 40% building 21/22 modules 1 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/url/util.js
+<s> [webpack.Progress] 40% building 21/23 modules 2 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/ansi-html-community/index.js
+<s> [webpack.Progress] 40% building 21/24 modules 3 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/querystring-es3/index.js
+<s> [webpack.Progress] 40% building 21/25 modules 4 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/html-entities/lib/index.js
+<s> [webpack.Progress] 40% building 21/26 modules 5 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/node-libs-browser/node_modules/punycode/punycode.js
+<s> [webpack.Progress] 40% building 22/26 modules 4 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/node-libs-browser/node_modules/punycode/punycode.js
+<s> [webpack.Progress] 40% building 23/26 modules 3 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/node-libs-browser/node_modules/punycode/punycode.js
+<s> [webpack.Progress] 40% building 24/26 modules 2 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/node-libs-browser/node_modules/punycode/punycode.js
+<s> [webpack.Progress] 40% building 24/27 modules 3 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/loglevel/lib/loglevel.js
+<s> [webpack.Progress] 40% building 24/28 modules 4 active /home/ptcherniati/depots/si-ore-v2/ui/src/locales/en.json
+<s> [webpack.Progress] 40% building 24/29 modules 5 active /home/ptcherniati/depots/si-ore-v2/ui/src/locales/fr.json
+<s> [webpack.Progress] 40% building 24/30 modules 6 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/sockjs-client/dist/sockjs.js
+<s> [webpack.Progress] 40% building 25/30 modules 5 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/sockjs-client/dist/sockjs.js
+<s> [webpack.Progress] 40% building 26/30 modules 4 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/sockjs-client/dist/sockjs.js
+<s> [webpack.Progress] 40% building 26/31 modules 5 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack/buildin/module.js
+<s> [webpack.Progress] 40% building 26/32 modules 6 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack/buildin/global.js
+<s> [webpack.Progress] 40% building 27/32 modules 5 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack/buildin/global.js
+<s> [webpack.Progress] 40% building 28/32 modules 4 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/sockjs-client/dist/sockjs.js
+<s> [webpack.Progress] 40% building 29/32 modules 3 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/sockjs-client/dist/sockjs.js
+<s> [webpack.Progress] 40% building 29/33 modules 4 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/UserPreferencesService.js
+<s> [webpack.Progress] 40% building 30/33 modules 3 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/UserPreferencesService.js
+<s> [webpack.Progress] 40% building 31/33 modules 2 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/UserPreferencesService.js
+<s> [webpack.Progress] 40% building 31/34 modules 3 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.array.iterator.js
+<s> [webpack.Progress] 40% building 31/35 modules 4 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.promise.js
+<s> [webpack.Progress] 40% building 31/36 modules 5 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.object.assign.js
+<s> [webpack.Progress] 40% building 31/37 modules 6 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.promise.finally.js
+<s> [webpack.Progress] 40% building 31/38 modules 7 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.object.to-string.js
+<s> [webpack.Progress] 40% building 31/39 modules 8 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.regexp.to-string.js
+<s> [webpack.Progress] 40% building 31/40 modules 9 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.regexp.exec.js
+<s> [webpack.Progress] 40% building 31/41 modules 10 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.string.match.js
+<s> [webpack.Progress] 40% building 31/42 modules 11 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue/dist/vue.runtime.esm.js
+<s> [webpack.Progress] 40% building 32/42 modules 10 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue/dist/vue.runtime.esm.js
+<s> [webpack.Progress] 40% building 32/43 modules 11 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/objectSpread2.js
+<s> [webpack.Progress] 40% building 32/44 modules 12 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/App.vue
+<s> [webpack.Progress] 40% building 32/45 modules 13 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/querystring-es3/decode.js
+<s> [webpack.Progress] 40% building 32/46 modules 14 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/querystring-es3/encode.js
+<s> [webpack.Progress] 40% building 32/47 modules 15 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vee-validate/dist/rules.js
+<s> [webpack.Progress] 40% building 33/47 modules 14 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vee-validate/dist/rules.js
+<s> [webpack.Progress] 40% building 33/48 modules 15 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-3-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-3-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-3-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-3-3!/home/ptcherniati/depots/si-ore-v2/ui/src/style/global.scss
+<s> [webpack.Progress] 40% building 34/48 modules 14 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vee-validate/dist/rules.js
+<s> [webpack.Progress] 40% building 34/49 modules 15 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-3-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-3-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-3-3!/home/ptcherniati/depots/si-ore-v2/ui/src/style/global.scss
+<s> [webpack.Progress] 40% building 34/50 modules 16 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/html-entities/lib/xml-entities.js
+<s> [webpack.Progress] 40% building 34/51 modules 17 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/html-entities/lib/html4-entities.js
+<s> [webpack.Progress] 40% building 34/52 modules 18 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/html-entities/lib/html5-entities.js
+<s> [webpack.Progress] 40% building 35/52 modules 17 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/html-entities/lib/html5-entities.js
+<s> [webpack.Progress] 40% building 36/52 modules 16 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/html-entities/lib/html5-entities.js
+<s> [webpack.Progress] 40% building 37/52 modules 15 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/html-entities/lib/html5-entities.js
+<s> [webpack.Progress] 40% building 38/52 modules 14 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/html-entities/lib/html5-entities.js
+<s> [webpack.Progress] 40% building 39/52 modules 13 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/html-entities/lib/html5-entities.js
+<s> [webpack.Progress] 40% building 40/52 modules 12 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/html-entities/lib/html5-entities.js
+<s> [webpack.Progress] 40% building 41/52 modules 11 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/html-entities/lib/html5-entities.js
+<s> [webpack.Progress] 40% building 42/52 modules 10 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/html-entities/lib/html5-entities.js
+<s> [webpack.Progress] 40% building 43/52 modules 9 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/html-entities/lib/html5-entities.js
+<s> [webpack.Progress] 40% building 44/52 modules 8 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/html-entities/lib/html5-entities.js
+<s> [webpack.Progress] 40% building 45/52 modules 7 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/html-entities/lib/html5-entities.js
+<s> [webpack.Progress] 40% building 46/52 modules 6 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/html-entities/lib/html5-entities.js
+<s> [webpack.Progress] 40% building 47/52 modules 5 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/html-entities/lib/html5-entities.js
+<s> [webpack.Progress] 40% building 47/53 modules 6 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/classCallCheck.js
+<s> [webpack.Progress] 40% building 47/54 modules 7 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/createClass.js
+<s> [webpack.Progress] 40% building 47/55 modules 8 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/inherits.js
+<s> [webpack.Progress] 40% building 47/56 modules 9 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/createSuper.js
+<s> [webpack.Progress] 40% building 47/57 modules 10 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/defineProperty.js
+<s> [webpack.Progress] 40% building 47/58 modules 11 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.array.slice.js
+<s> [webpack.Progress] 40% building 48/58 modules 10 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.array.slice.js
+<s> [webpack.Progress] 40% building 49/58 modules 9 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.array.slice.js
+<s> [webpack.Progress] 40% building 50/58 modules 8 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.array.slice.js
+<s> [webpack.Progress] 40% building 51/58 modules 7 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.array.slice.js
+<s> [webpack.Progress] 40% building 51/59 modules 8 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.object.keys.js
+<s> [webpack.Progress] 40% building 51/60 modules 9 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.symbol.js
+<s> [webpack.Progress] 40% building 51/61 modules 10 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/App.vue?vue&type=template&id=7ba5bd90&
+<s> [webpack.Progress] 40% building 52/61 modules 9 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.symbol.js
+<s> [webpack.Progress] 40% building 52/62 modules 10 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/App.vue?vue&type=style&index=0&lang=scss&
+<s> [webpack.Progress] 40% building 53/62 modules 9 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.symbol.js
+<s> [webpack.Progress] 40% building 53/63 modules 10 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/App.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 40% building 54/63 modules 9 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.symbol.js
+<s> [webpack.Progress] 40% building 54/64 modules 10 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/App.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 40% building 54/65 modules 11 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/lib/addStylesClient.js
+<s> [webpack.Progress] 40% building 55/65 modules 10 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/lib/addStylesClient.js
+<s> [webpack.Progress] 40% building 56/65 modules 9 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/lib/addStylesClient.js
+<s> [webpack.Progress] 40% building 57/65 modules 8 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/lib/addStylesClient.js
+<s> [webpack.Progress] 40% building 58/65 modules 7 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/lib/addStylesClient.js
+<s> [webpack.Progress] 40% building 59/65 modules 6 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/lib/addStylesClient.js
+<s> [webpack.Progress] 40% building 59/66 modules 7 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/Fetcher.js
+<s> [webpack.Progress] 40% building 60/66 modules 6 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/Fetcher.js
+<s> [webpack.Progress] 40% building 60/67 modules 7 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vee-validate/dist/vee-validate.esm.js
+<s> [webpack.Progress] 40% building 61/67 modules 6 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vee-validate/dist/vee-validate.esm.js
+<s> [webpack.Progress] 40% building 62/67 modules 5 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vee-validate/dist/vee-validate.esm.js
+<s> [webpack.Progress] 40% building 62/68 modules 6 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/App.vue?vue&type=template&id=7ba5bd90&
+<s> [webpack.Progress] 40% building 62/69 modules 7 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/App.vue?vue&type=style&index=0&lang=scss&
+<s> [webpack.Progress] 40% building 63/69 modules 6 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/App.vue?vue&type=template&id=7ba5bd90&
+<s> [webpack.Progress] 40% building 63/70 modules 7 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/App.vue?vue&type=style&index=0&lang=scss&
+<s> [webpack.Progress] 40% building 63/71 modules 8 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/runtime/componentNormalizer.js
+<s> [webpack.Progress] 40% building 63/72 modules 9 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-indexed-object.js
+<s> [webpack.Progress] 40% building 63/73 modules 10 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/add-to-unscopables.js
+<s> [webpack.Progress] 40% building 63/74 modules 11 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/iterators.js
+<s> [webpack.Progress] 40% building 63/75 modules 12 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/internal-state.js
+<s> [webpack.Progress] 40% building 63/76 modules 13 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/object-define-property.js
+<s> [webpack.Progress] 40% building 63/77 modules 14 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/define-iterator.js
+<s> [webpack.Progress] 40% building 63/78 modules 15 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-pure.js
+<s> [webpack.Progress] 40% building 63/79 modules 16 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/descriptors.js
+<s> [webpack.Progress] 40% building 63/80 modules 17 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/export.js
+<s> [webpack.Progress] 40% building 63/81 modules 18 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/global.js
+<s> [webpack.Progress] 40% building 63/82 modules 19 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/get-built-in.js
+<s> [webpack.Progress] 40% building 63/83 modules 20 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/function-call.js
+<s> [webpack.Progress] 40% building 63/84 modules 21 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/native-promise-constructor.js
+<s> [webpack.Progress] 40% building 63/85 modules 22 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/redefine.js
+<s> [webpack.Progress] 40% building 63/86 modules 23 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/redefine-all.js
+<s> [webpack.Progress] 40% building 63/87 modules 24 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/object-set-prototype-of.js
+<s> [webpack.Progress] 40% building 63/88 modules 25 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/set-to-string-tag.js
+<s> [webpack.Progress] 40% building 63/89 modules 26 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/set-species.js
+<s> [webpack.Progress] 40% building 63/90 modules 27 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/a-callable.js
+<s> [webpack.Progress] 40% building 63/91 modules 28 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-callable.js
+<s> [webpack.Progress] 40% building 63/92 modules 29 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-object.js
+<s> [webpack.Progress] 40% building 63/93 modules 30 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/an-instance.js
+<s> [webpack.Progress] 40% building 63/94 modules 31 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/inspect-source.js
+<s> [webpack.Progress] 40% building 63/95 modules 32 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/iterate.js
+<s> [webpack.Progress] 40% building 63/96 modules 33 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/check-correctness-of-iteration.js
+<s> [webpack.Progress] 40% building 63/97 modules 34 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/species-constructor.js
+<s> [webpack.Progress] 40% building 63/98 modules 35 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/task.js
+<s> [webpack.Progress] 40% building 63/99 modules 36 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/microtask.js
+<s> [webpack.Progress] 40% building 63/100 modules 37 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/promise-resolve.js
+<s> [webpack.Progress] 40% building 63/101 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/host-report-errors.js
+<s> [webpack.Progress] 40% building 63/102 modules 39 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/new-promise-capability.js
+<s> [webpack.Progress] 40% building 63/103 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/perform.js
+<s> [webpack.Progress] 40% building 63/104 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/queue.js
+<s> [webpack.Progress] 40% building 63/105 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-forced.js
+<s> [webpack.Progress] 40% building 63/106 modules 43 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/well-known-symbol.js
+<s> [webpack.Progress] 40% building 63/107 modules 44 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/engine-is-browser.js
+<s> [webpack.Progress] 40% building 63/108 modules 45 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/engine-is-node.js
+<s> [webpack.Progress] 40% building 63/109 modules 46 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/engine-v8-version.js
+<s> [webpack.Progress] 40% building 63/110 modules 47 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/object-assign.js
+<s> [webpack.Progress] 40% building 63/111 modules 48 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/fails.js
+<s> [webpack.Progress] 40% building 63/112 modules 49 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-string-tag-support.js
+<s> [webpack.Progress] 40% building 63/113 modules 50 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/object-to-string.js
+<s> [webpack.Progress] 40% building 63/114 modules 51 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/function-uncurry-this.js
+<s> [webpack.Progress] 40% building 63/115 modules 52 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/function-name.js
+<s> [webpack.Progress] 40% building 63/116 modules 53 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/an-object.js
+<s> [webpack.Progress] 40% building 63/117 modules 54 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/object-is-prototype-of.js
+<s> [webpack.Progress] 40% building 63/118 modules 55 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-string.js
+<s> [webpack.Progress] 40% building 63/119 modules 56 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/regexp-flags.js
+<s> [webpack.Progress] 40% building 63/120 modules 57 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/regexp-exec.js
+<s> [webpack.Progress] 40% building 63/121 modules 58 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/fix-regexp-well-known-symbol-logic.js
+<s> [webpack.Progress] 40% building 63/122 modules 59 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-length.js
+<s> [webpack.Progress] 40% building 63/123 modules 60 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/require-object-coercible.js
+<s> [webpack.Progress] 40% building 63/124 modules 61 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/get-method.js
+<s> [webpack.Progress] 40% building 63/125 modules 62 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/advance-string-index.js
+<s> [webpack.Progress] 40% building 63/126 modules 63 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/regexp-exec-abstract.js
+<s> [webpack.Progress] 40% building 63/127 modules 64 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/router/index.js
+<s> [webpack.Progress] 40% building 64/127 modules 63 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/router/index.js
+<s> [webpack.Progress] 40% building 64/128 modules 64 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.error.cause.js
+<s> [webpack.Progress] 40% building 64/129 modules 65 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.object.get-own-property-descriptors.js
+<s> [webpack.Progress] 40% building 64/130 modules 66 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.reflect.construct.js
+<s> [webpack.Progress] 40% building 64/131 modules 67 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js
+<s> [webpack.Progress] 40% building 65/131 modules 66 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js
+<s> [webpack.Progress] 40% building 65/132 modules 67 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/@fortawesome/fontawesome-svg-core/index.es.js
+<s> [webpack.Progress] 40% building 65/133 modules 68 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/@fortawesome/vue-fontawesome/index.es.js
+<s> [webpack.Progress] 40% building 65/134 modules 69 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/@fortawesome/free-solid-svg-icons/index.es.js
+<s> [webpack.Progress] 40% building 66/134 modules 68 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/@fortawesome/free-solid-svg-icons/index.es.js
+<s> [webpack.Progress] 40% building 66/135 modules 69 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-i18n/dist/vue-i18n.esm.js
+<s> [webpack.Progress] 40% building 66/136 modules 70 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/html-entities/lib/surrogate-pairs.js
+<s> [webpack.Progress] 40% building 67/136 modules 69 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/html-entities/lib/surrogate-pairs.js
+<s> [webpack.Progress] 40% building 67/137 modules 70 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-hot-reload-api/dist/index.js
+<s> [webpack.Progress] 40% building 68/137 modules 69 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-hot-reload-api/dist/index.js
+<s> [webpack.Progress] 40% building 68/138 modules 70 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/index.js
+<s> [webpack.Progress] 40% building 68/139 modules 71 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 69/139 modules 70 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 70/139 modules 69 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 71/139 modules 68 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 72/139 modules 67 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 73/139 modules 66 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 74/139 modules 65 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 75/139 modules 64 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 76/139 modules 63 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 77/139 modules 62 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 78/139 modules 61 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 79/139 modules 60 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 80/139 modules 59 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 81/139 modules 58 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 82/139 modules 57 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 83/139 modules 56 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 84/139 modules 55 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 85/139 modules 54 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 86/139 modules 53 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 87/139 modules 52 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 88/139 modules 51 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 89/139 modules 50 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 90/139 modules 49 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 91/139 modules 48 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 92/139 modules 47 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 93/139 modules 46 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 94/139 modules 45 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 95/139 modules 44 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 96/139 modules 43 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 97/139 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 98/139 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 99/139 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 100/139 modules 39 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 101/139 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 102/139 modules 37 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 103/139 modules 36 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 104/139 modules 35 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 105/139 modules 34 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 106/139 modules 33 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 107/139 modules 32 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 108/139 modules 31 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 109/139 modules 30 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 110/139 modules 29 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 111/139 modules 28 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 112/139 modules 27 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 113/139 modules 26 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 114/139 modules 25 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 115/139 modules 24 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 116/139 modules 23 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 117/139 modules 22 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 118/139 modules 21 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 119/139 modules 20 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 120/139 modules 19 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 121/139 modules 18 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 122/139 modules 17 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 123/139 modules 16 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 124/139 modules 15 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 125/139 modules 14 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 126/139 modules 13 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 127/139 modules 12 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 128/139 modules 11 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 129/139 modules 10 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
+<s> [webpack.Progress] 40% building 129/140 modules 11 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/slicedToArray.js
+<s> [webpack.Progress] 40% building 130/140 modules 10 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/slicedToArray.js
+<s> [webpack.Progress] 40% building 131/140 modules 9 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/slicedToArray.js
+<s> [webpack.Progress] 40% building 132/140 modules 8 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/slicedToArray.js
+<s> [webpack.Progress] 40% building 133/140 modules 7 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/slicedToArray.js
+<s> [webpack.Progress] 40% building 134/140 modules 6 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/slicedToArray.js
+<s> [webpack.Progress] 40% building 134/141 modules 7 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.object.values.js
+<s> [webpack.Progress] 40% building 135/141 modules 6 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.object.values.js
+<s> [webpack.Progress] 40% building 135/142 modules 7 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.string.includes.js
+<s> [webpack.Progress] 40% building 135/143 modules 8 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.array.includes.js
+<s> [webpack.Progress] 40% building 135/144 modules 9 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/array-iteration.js
+<s> [webpack.Progress] 40% building 135/145 modules 10 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/define-well-known-symbol.js
+<s> [webpack.Progress] 40% building 135/146 modules 11 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/well-known-symbol-wrapped.js
+<s> [webpack.Progress] 40% building 135/147 modules 12 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/uid.js
+<s> [webpack.Progress] 40% building 135/148 modules 13 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/hidden-keys.js
+<s> [webpack.Progress] 40% building 135/149 modules 14 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/shared-key.js
+<s> [webpack.Progress] 40% building 135/150 modules 15 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/shared.js
+<s> [webpack.Progress] 40% building 135/151 modules 16 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/array-slice.js
+<s> [webpack.Progress] 40% building 135/152 modules 17 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/object-property-is-enumerable.js
+<s> [webpack.Progress] 40% building 135/153 modules 18 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/object-define-properties.js
+<s> [webpack.Progress] 40% building 135/154 modules 19 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/object-get-own-property-descriptor.js
+<s> [webpack.Progress] 40% building 135/155 modules 20 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/object-get-own-property-symbols.js
+<s> [webpack.Progress] 40% building 135/156 modules 21 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/object-get-own-property-names-external.js
+<s> [webpack.Progress] 40% building 135/157 modules 22 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/object-get-own-property-names.js
+<s> [webpack.Progress] 40% building 135/158 modules 23 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/object-keys.js
+<s> [webpack.Progress] 40% building 135/159 modules 24 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/object-create.js
+<s> [webpack.Progress] 40% building 135/160 modules 25 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/create-property-descriptor.js
+<s> [webpack.Progress] 40% building 135/161 modules 26 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-property-key.js
+<s> [webpack.Progress] 40% building 135/162 modules 27 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-object.js
+<s> [webpack.Progress] 40% building 135/163 modules 28 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-symbol.js
+<s> [webpack.Progress] 40% building 135/164 modules 29 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-array.js
+<s> [webpack.Progress] 40% building 135/165 modules 30 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/has-own-property.js
+<s> [webpack.Progress] 40% building 135/166 modules 31 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js
+<s> [webpack.Progress] 40% building 135/167 modules 32 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/lib/listToStyles.js
+<s> [webpack.Progress] 40% building 135/168 modules 33 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/typeof.js
+<s> [webpack.Progress] 40% building 136/168 modules 32 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/typeof.js
+<s> [webpack.Progress] 40% building 137/168 modules 31 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/typeof.js
+<s> [webpack.Progress] 40% building 138/168 modules 30 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/typeof.js
+<s> [webpack.Progress] 40% building 138/169 modules 31 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/config.js
+<s> [webpack.Progress] 40% building 138/170 modules 32 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-2452e3d3.js
+<s> [webpack.Progress] 40% building 139/170 modules 31 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-2452e3d3.js
+<s> [webpack.Progress] 40% building 139/171 modules 32 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/config.js
+<s> [webpack.Progress] 40% building 139/172 modules 33 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/utils/LocaleUtils.js
+<s> [webpack.Progress] 40% building 139/173 modules 34 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/utils/HttpUtils.js
+<s> [webpack.Progress] 40% building 140/173 modules 33 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/utils/HttpUtils.js
+<s> [webpack.Progress] 40% building 140/174 modules 34 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/indexed-object.js
+<s> [webpack.Progress] 40% building 141/174 modules 33 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/indexed-object.js
+<s> [webpack.Progress] 40% building 141/175 modules 34 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/native-weak-map.js
+<s> [webpack.Progress] 40% building 141/176 modules 35 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/iterators-core.js
+<s> [webpack.Progress] 40% building 141/177 modules 36 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/create-non-enumerable-property.js
+<s> [webpack.Progress] 40% building 141/178 modules 37 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/object-get-prototype-of.js
+<s> [webpack.Progress] 40% building 141/179 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/copy-constructor-properties.js
+<s> [webpack.Progress] 40% building 141/180 modules 39 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/set-global.js
+<s> [webpack.Progress] 40% building 141/181 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/function-bind-native.js
+<s> [webpack.Progress] 40% building 141/182 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/a-possible-prototype.js
+<s> [webpack.Progress] 40% building 141/183 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/try-to-string.js
+<s> [webpack.Progress] 40% building 141/184 modules 43 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/create-iterator-constructor.js
+<s> [webpack.Progress] 40% building 141/185 modules 44 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/v8-prototype-define-bug.js
+<s> [webpack.Progress] 40% building 141/186 modules 45 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/ie8-dom-define.js
+<s> [webpack.Progress] 40% building 141/187 modules 46 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/shared-store.js
+<s> [webpack.Progress] 40% building 141/188 modules 47 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/iterator-close.js
+<s> [webpack.Progress] 40% building 141/189 modules 48 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/get-iterator-method.js
+<s> [webpack.Progress] 40% building 141/190 modules 49 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/a-constructor.js
+<s> [webpack.Progress] 40% building 141/191 modules 50 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/engine-is-ios.js
+<s> [webpack.Progress] 40% building 141/192 modules 51 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/engine-is-webos-webkit.js
+<s> [webpack.Progress] 40% building 141/193 modules 52 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/engine-is-ios-pebble.js
+<s> [webpack.Progress] 40% building 141/194 modules 53 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/function-bind-context.js
+<s> [webpack.Progress] 40% building 141/195 modules 54 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/validate-arguments-length.js
+<s> [webpack.Progress] 40% building 141/196 modules 55 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/document-create-element.js
+<s> [webpack.Progress] 40% building 141/197 modules 56 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/use-symbol-as-uid.js
+<s> [webpack.Progress] 40% building 141/198 modules 57 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/native-symbol.js
+<s> [webpack.Progress] 40% building 141/199 modules 58 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/classof-raw.js
+<s> [webpack.Progress] 40% building 141/200 modules 59 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/engine-user-agent.js
+<s> [webpack.Progress] 40% building 141/201 modules 60 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/classof.js
+<s> [webpack.Progress] 40% building 141/202 modules 61 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/regexp-unsupported-ncg.js
+<s> [webpack.Progress] 40% building 141/203 modules 62 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-integer-or-infinity.js
+<s> [webpack.Progress] 40% building 141/204 modules 63 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/regexp-unsupported-dot-all.js
+<s> [webpack.Progress] 40% building 141/205 modules 64 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/string-multibyte.js
+<s> [webpack.Progress] 40% building 142/205 modules 63 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/string-multibyte.js
+<s> [webpack.Progress] 40% building 143/205 modules 62 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/string-multibyte.js
+<s> [webpack.Progress] 40% building 144/205 modules 61 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/string-multibyte.js
+<s> [webpack.Progress] 40% building 145/205 modules 60 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/string-multibyte.js
+<s> [webpack.Progress] 40% building 146/205 modules 59 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/string-multibyte.js
+<s> [webpack.Progress] 40% building 147/205 modules 58 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/string-multibyte.js
+<s> [webpack.Progress] 40% building 148/205 modules 57 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/string-multibyte.js
+<s> [webpack.Progress] 40% building 149/205 modules 56 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/string-multibyte.js
+<s> [webpack.Progress] 40% building 150/205 modules 55 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/string-multibyte.js
+<s> [webpack.Progress] 40% building 151/205 modules 54 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/string-multibyte.js
+<s> [webpack.Progress] 40% building 152/205 modules 53 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/string-multibyte.js
+<s> [webpack.Progress] 40% building 153/205 modules 52 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/string-multibyte.js
+<s> [webpack.Progress] 40% building 154/205 modules 51 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/string-multibyte.js
+<s> [webpack.Progress] 40% building 155/205 modules 50 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/string-multibyte.js
+<s> [webpack.Progress] 40% building 156/205 modules 49 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/string-multibyte.js
+<s> [webpack.Progress] 40% building 157/205 modules 48 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/string-multibyte.js
+<s> [webpack.Progress] 40% building 158/205 modules 47 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/string-multibyte.js
+<s> [webpack.Progress] 40% building 159/205 modules 46 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/string-multibyte.js
+<s> [webpack.Progress] 40% building 160/205 modules 45 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/string-multibyte.js
+<s> [webpack.Progress] 40% building 161/205 modules 44 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/string-multibyte.js
+<s> [webpack.Progress] 40% building 162/205 modules 43 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/string-multibyte.js
+<s> [webpack.Progress] 40% building 162/206 modules 44 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/wrap-error-constructor-with-cause.js
+<s> [webpack.Progress] 40% building 163/206 modules 43 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/wrap-error-constructor-with-cause.js
+<s> [webpack.Progress] 40% building 163/207 modules 44 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/create-property.js
+<s> [webpack.Progress] 40% building 164/207 modules 43 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/create-property.js
+<s> [webpack.Progress] 40% building 164/208 modules 44 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js
+<s> [webpack.Progress] 40% building 165/208 modules 43 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js
+<s> [webpack.Progress] 40% building 166/208 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js
+<s> [webpack.Progress] 40% building 166/209 modules 43 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js
+<s> [webpack.Progress] 40% building 166/210 modules 44 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/LoginView.vue
+<s> [webpack.Progress] 40% building 166/211 modules 45 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/authorizations/DataTypeAuthorizationInfoView.vue
+<s> [webpack.Progress] 40% building 166/212 modules 46 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/authorizations/DataTypeAuthorizationsView.vue
+<s> [webpack.Progress] 40% building 166/213 modules 47 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypesRepositoryView.vue
+<s> [webpack.Progress] 40% building 166/214 modules 48 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypesManagementView.vue
+<s> [webpack.Progress] 40% building 166/215 modules 49 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypeTableView.vue
+<s> [webpack.Progress] 40% building 166/216 modules 50 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/references/ReferenceTableView.vue
+<s> [webpack.Progress] 40% building 166/217 modules 51 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/references/ReferencesManagementView.vue
+<s> [webpack.Progress] 40% building 166/218 modules 52 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/application/ApplicationCreationView.vue
+<s> [webpack.Progress] 40% building 166/219 modules 53 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/application/ApplicationsView.vue
+<s> [webpack.Progress] 40% building 166/220 modules 54 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/documentation/HelpView.vue
+<s> [webpack.Progress] 40% building 166/221 modules 55 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/function-bind.js
+<s> [webpack.Progress] 40% building 166/222 modules 56 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/function-apply.js
+<s> [webpack.Progress] 40% building 166/223 modules 57 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/own-keys.js
+<s> [webpack.Progress] 40% building 166/224 modules 58 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js
+<s> [webpack.Progress] 40% building 166/225 modules 59 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js
+<s> [webpack.Progress] 40% building 166/226 modules 60 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/upload.js
+<s> [webpack.Progress] 40% building 166/227 modules 61 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/tooltip.js
+<s> [webpack.Progress] 40% building 166/228 modules 62 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/toast.js
+<s> [webpack.Progress] 40% building 166/229 modules 63 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/timepicker.js
+<s> [webpack.Progress] 40% building 166/230 modules 64 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/taginput.js
+<s> [webpack.Progress] 40% building 166/231 modules 65 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/tag.js
+<s> [webpack.Progress] 40% building 166/232 modules 66 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-2f2f0a74.js
+<s> [webpack.Progress] 40% building 166/233 modules 67 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/tabs.js
+<s> [webpack.Progress] 40% building 166/234 modules 68 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/table.js
+<s> [webpack.Progress] 40% building 166/235 modules 69 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/switch.js
+<s> [webpack.Progress] 40% building 166/236 modules 70 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/steps.js
+<s> [webpack.Progress] 40% building 166/237 modules 71 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-e01e9ef0.js
+<s> [webpack.Progress] 40% building 166/238 modules 72 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-0c4e4e90.js
+<s> [webpack.Progress] 40% building 166/239 modules 73 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/snackbar.js
+<s> [webpack.Progress] 40% building 166/240 modules 74 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/slider.js
+<s> [webpack.Progress] 40% building 166/241 modules 75 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-2229e354.js
+<s> [webpack.Progress] 40% building 166/242 modules 76 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/sidebar.js
+<s> [webpack.Progress] 40% building 167/242 modules 75 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/sidebar.js
+<s> [webpack.Progress] 40% building 167/243 modules 76 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/skeleton.js
+<s> [webpack.Progress] 40% building 167/244 modules 77 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/regexp-sticky-helpers.js
+<s> [webpack.Progress] 40% building 167/245 modules 78 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/html.js
+<s> [webpack.Progress] 40% building 167/246 modules 79 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/select.js
+<s> [webpack.Progress] 40% building 167/247 modules 80 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/rate.js
+<s> [webpack.Progress] 40% building 167/248 modules 81 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 168/248 modules 80 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 169/248 modules 79 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 170/248 modules 78 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 171/248 modules 77 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 172/248 modules 76 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 173/248 modules 75 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 174/248 modules 74 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 175/248 modules 73 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 176/248 modules 72 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 177/248 modules 71 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 178/248 modules 70 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 179/248 modules 69 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 180/248 modules 68 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 181/248 modules 67 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 182/248 modules 66 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 183/248 modules 65 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 184/248 modules 64 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 185/248 modules 63 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 186/248 modules 62 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 187/248 modules 61 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 188/248 modules 60 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 189/248 modules 59 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 190/248 modules 58 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 191/248 modules 57 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 192/248 modules 56 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 193/248 modules 55 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 194/248 modules 54 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 195/248 modules 53 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 196/248 modules 52 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 197/248 modules 51 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 198/248 modules 50 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 199/248 modules 49 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 200/248 modules 48 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 201/248 modules 47 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 202/248 modules 46 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 203/248 modules 45 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 204/248 modules 44 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 205/248 modules 43 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 206/248 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.iterator.js
+<s> [webpack.Progress] 40% building 206/249 modules 43 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.string.iterator.js
+<s> [webpack.Progress] 40% building 207/249 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.string.iterator.js
+<s> [webpack.Progress] 40% building 208/249 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.string.iterator.js
+<s> [webpack.Progress] 40% building 208/250 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/LoginView.vue?vue&type=template&id=5c6101e4&
+<s> [webpack.Progress] 40% building 209/250 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.string.iterator.js
+<s> [webpack.Progress] 40% building 209/251 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/LoginView.vue?vue&type=template&id=5c6101e4&
+<s> [webpack.Progress] 40% building 210/251 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/LoginView.vue?vue&type=template&id=5c6101e4&
+<s> [webpack.Progress] 40% building 210/252 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/authorizations/DataTypeAuthorizationInfoView.vue?vue&type=template&id=45c8cfad&
+<s> [webpack.Progress] 40% building 211/252 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/LoginView.vue?vue&type=template&id=5c6101e4&
+<s> [webpack.Progress] 40% building 211/253 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/authorizations/DataTypeAuthorizationInfoView.vue?vue&type=template&id=45c8cfad&
+<s> [webpack.Progress] 40% building 212/253 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/authorizations/DataTypeAuthorizationInfoView.vue?vue&type=template&id=45c8cfad&
+<s> [webpack.Progress] 40% building 212/254 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/authorizations/DataTypeAuthorizationsView.vue?vue&type=template&id=79b294e4&
+<s> [webpack.Progress] 40% building 213/254 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/authorizations/DataTypeAuthorizationInfoView.vue?vue&type=template&id=45c8cfad&
+<s> [webpack.Progress] 40% building 213/255 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/authorizations/DataTypeAuthorizationsView.vue?vue&type=template&id=79b294e4&
+<s> [webpack.Progress] 40% building 214/255 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/authorizations/DataTypeAuthorizationsView.vue?vue&type=template&id=79b294e4&
+<s> [webpack.Progress] 40% building 214/256 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypesRepositoryView.vue?vue&type=template&id=0e53c5a6&
+<s> [webpack.Progress] 40% building 215/256 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/authorizations/DataTypeAuthorizationsView.vue?vue&type=template&id=79b294e4&
+<s> [webpack.Progress] 40% building 215/257 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypesRepositoryView.vue?vue&type=template&id=0e53c5a6&
+<s> [webpack.Progress] 40% building 216/257 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypesRepositoryView.vue?vue&type=template&id=0e53c5a6&
+<s> [webpack.Progress] 40% building 216/258 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypesManagementView.vue?vue&type=template&id=2479b126&
+<s> [webpack.Progress] 40% building 217/258 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypesRepositoryView.vue?vue&type=template&id=0e53c5a6&
+<s> [webpack.Progress] 40% building 217/259 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypesManagementView.vue?vue&type=template&id=2479b126&
+<s> [webpack.Progress] 40% building 218/259 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypesManagementView.vue?vue&type=template&id=2479b126&
+<s> [webpack.Progress] 40% building 218/260 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypeTableView.vue?vue&type=template&id=c6d33404&scoped=true&
+<s> [webpack.Progress] 40% building 219/260 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypesManagementView.vue?vue&type=template&id=2479b126&
+<s> [webpack.Progress] 40% building 219/261 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypeTableView.vue?vue&type=template&id=c6d33404&scoped=true&
+<s> [webpack.Progress] 40% building 220/261 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypeTableView.vue?vue&type=template&id=c6d33404&scoped=true&
+<s> [webpack.Progress] 40% building 220/262 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/references/ReferenceTableView.vue?vue&type=template&id=d2d76736&
+<s> [webpack.Progress] 40% building 221/262 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypeTableView.vue?vue&type=template&id=c6d33404&scoped=true&
+<s> [webpack.Progress] 40% building 221/263 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/references/ReferenceTableView.vue?vue&type=template&id=d2d76736&
+<s> [webpack.Progress] 40% building 222/263 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/references/ReferenceTableView.vue?vue&type=template&id=d2d76736&
+<s> [webpack.Progress] 40% building 222/264 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/references/ReferencesManagementView.vue?vue&type=template&id=0e94ee4d&scoped=true&
+<s> [webpack.Progress] 40% building 223/264 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/references/ReferenceTableView.vue?vue&type=template&id=d2d76736&
+<s> [webpack.Progress] 40% building 223/265 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/references/ReferencesManagementView.vue?vue&type=template&id=0e94ee4d&scoped=true&
+<s> [webpack.Progress] 40% building 224/265 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/references/ReferencesManagementView.vue?vue&type=template&id=0e94ee4d&scoped=true&
+<s> [webpack.Progress] 40% building 224/266 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/application/ApplicationCreationView.vue?vue&type=template&id=5df2c30b&
+<s> [webpack.Progress] 40% building 225/266 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/references/ReferencesManagementView.vue?vue&type=template&id=0e94ee4d&scoped=true&
+<s> [webpack.Progress] 40% building 225/267 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/application/ApplicationCreationView.vue?vue&type=template&id=5df2c30b&
+<s> [webpack.Progress] 40% building 226/267 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/application/ApplicationCreationView.vue?vue&type=template&id=5df2c30b&
+<s> [webpack.Progress] 40% building 226/268 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/application/ApplicationsView.vue?vue&type=template&id=4d2ab301&scoped=true&
+<s> [webpack.Progress] 40% building 227/268 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/application/ApplicationCreationView.vue?vue&type=template&id=5df2c30b&
+<s> [webpack.Progress] 40% building 227/269 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/application/ApplicationsView.vue?vue&type=template&id=4d2ab301&scoped=true&
+<s> [webpack.Progress] 40% building 228/269 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/application/ApplicationsView.vue?vue&type=template&id=4d2ab301&scoped=true&
+<s> [webpack.Progress] 40% building 228/270 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/documentation/HelpView.vue?vue&type=template&id=f391d316&scoped=true&
+<s> [webpack.Progress] 40% building 229/270 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/application/ApplicationsView.vue?vue&type=template&id=4d2ab301&scoped=true&
+<s> [webpack.Progress] 40% building 229/271 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/documentation/HelpView.vue?vue&type=template&id=f391d316&scoped=true&
+<s> [webpack.Progress] 40% building 230/271 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/documentation/HelpView.vue?vue&type=template&id=f391d316&scoped=true&
+<s> [webpack.Progress] 40% building 231/271 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/documentation/HelpView.vue?vue&type=template&id=f391d316&scoped=true&
+<s> [webpack.Progress] 40% building 231/272 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/documentation/HelpView.vue?vue&type=style&index=0&id=f391d316&lang=scss&scoped=true&
+<s> [webpack.Progress] 40% building 232/272 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/documentation/HelpView.vue?vue&type=template&id=f391d316&scoped=true&
+<s> [webpack.Progress] 40% building 232/273 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/documentation/HelpView.vue?vue&type=style&index=0&id=f391d316&lang=scss&scoped=true&
+<s> [webpack.Progress] 40% building 233/273 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/documentation/HelpView.vue?vue&type=template&id=f391d316&scoped=true&
+<s> [webpack.Progress] 40% building 233/274 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/documentation/HelpView.vue?vue&type=style&index=0&id=f391d316&lang=scss&scoped=true&
+<s> [webpack.Progress] 40% building 234/274 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/documentation/HelpView.vue?vue&type=style&index=0&id=f391d316&lang=scss&scoped=true&
+<s> [webpack.Progress] 40% building 234/275 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/documentation/HelpView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 40% building 235/275 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/documentation/HelpView.vue?vue&type=style&index=0&id=f391d316&lang=scss&scoped=true&
+<s> [webpack.Progress] 40% building 235/276 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/documentation/HelpView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 40% building 235/277 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.symbol.iterator.js
+<s> [webpack.Progress] 40% building 235/278 modules 43 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.symbol.description.js
+<s> [webpack.Progress] 40% building 235/279 modules 44 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/radio.js
+<s> [webpack.Progress] 40% building 235/280 modules 45 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/object-to-array.js
+<s> [webpack.Progress] 40% building 235/281 modules 46 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-8cad1844.js
+<s> [webpack.Progress] 40% building 235/282 modules 47 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/helpers.js
+<s> [webpack.Progress] 40% building 235/283 modules 48 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/progress.js
+<s> [webpack.Progress] 40% building 235/284 modules 49 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/correct-is-regexp-logic.js
+<s> [webpack.Progress] 40% building 235/285 modules 50 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/pagination.js
+<s> [webpack.Progress] 40% building 235/286 modules 51 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/not-a-regexp.js
+<s> [webpack.Progress] 40% building 235/287 modules 52 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/array-includes.js
+<s> [webpack.Progress] 40% building 235/288 modules 53 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-bbf5d78a.js
+<s> [webpack.Progress] 40% building 235/289 modules 54 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/numberinput.js
+<s> [webpack.Progress] 40% building 235/290 modules 55 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/navbar.js
+<s> [webpack.Progress] 40% building 236/290 modules 54 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/navbar.js
+<s> [webpack.Progress] 40% building 237/290 modules 53 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/navbar.js
+<s> [webpack.Progress] 40% building 238/290 modules 52 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/navbar.js
+<s> [webpack.Progress] 40% building 238/291 modules 53 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-e7eb83d8.js
+<s> [webpack.Progress] 40% building 238/292 modules 54 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/notification.js
+<s> [webpack.Progress] 40% building 239/292 modules 53 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/notification.js
+<s> [webpack.Progress] 40% building 239/293 modules 54 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/modal.js
+<s> [webpack.Progress] 40% building 240/293 modules 53 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/modal.js
+<s> [webpack.Progress] 40% building 240/294 modules 54 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/message.js
+<s> [webpack.Progress] 40% building 240/295 modules 55 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-1f41edb4.js
+<s> [webpack.Progress] 40% building 240/296 modules 56 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/menu.js
+<s> [webpack.Progress] 40% building 240/297 modules 57 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/loading.js
+<s> [webpack.Progress] 40% building 240/298 modules 58 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-9e0ae963.js
+<s> [webpack.Progress] 40% building 240/299 modules 59 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-b9bdb0e4.js
+<s> [webpack.Progress] 40% building 240/300 modules 60 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/input.js
+<s> [webpack.Progress] 40% building 240/301 modules 61 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/image.js
+<s> [webpack.Progress] 40% building 241/301 modules 60 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/image.js
+<s> [webpack.Progress] 40% building 241/302 modules 61 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/icon.js
+<s> [webpack.Progress] 40% building 242/302 modules 60 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/icon.js
+<s> [webpack.Progress] 40% building 242/303 modules 61 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/field.js
+<s> [webpack.Progress] 40% building 242/304 modules 62 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/dropdown.js
+<s> [webpack.Progress] 40% building 242/305 modules 63 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/dialog.js
+<s> [webpack.Progress] 40% building 242/306 modules 64 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-b99e83bd.js
+<s> [webpack.Progress] 40% building 242/307 modules 65 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/datetimepicker.js
+<s> [webpack.Progress] 40% building 242/308 modules 66 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-03f0ac1a.js
+<s> [webpack.Progress] 40% building 242/309 modules 67 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/datepicker.js
+<s> [webpack.Progress] 40% building 242/310 modules 68 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-5f0c3fc4.js
+<s> [webpack.Progress] 40% building 243/310 modules 67 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-5f0c3fc4.js
+<s> [webpack.Progress] 40% building 243/311 modules 68 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-40f06d9c.js
+<s> [webpack.Progress] 40% building 243/312 modules 69 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/clockpicker.js
+<s> [webpack.Progress] 40% building 244/312 modules 68 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/clockpicker.js
+<s> [webpack.Progress] 40% building 244/313 modules 69 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-97f201e0.js
+<s> [webpack.Progress] 40% building 244/314 modules 70 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-b66a83ce.js
+<s> [webpack.Progress] 40% building 244/315 modules 71 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-42f463e6.js
+<s> [webpack.Progress] 40% building 244/316 modules 72 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-a8516afd.js
+<s> [webpack.Progress] 40% building 244/317 modules 73 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/array-species-create.js
+<s> [webpack.Progress] 40% building 244/318 modules 74 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/path.js
+<s> [webpack.Progress] 40% building 244/319 modules 75 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/length-of-array-like.js
+<s> [webpack.Progress] 40% building 245/319 modules 74 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/length-of-array-like.js
+<s> [webpack.Progress] 40% building 246/319 modules 73 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/length-of-array-like.js
+<s> [webpack.Progress] 40% building 247/319 modules 72 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/length-of-array-like.js
+<s> [webpack.Progress] 40% building 248/319 modules 71 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/length-of-array-like.js
+<s> [webpack.Progress] 40% building 249/319 modules 70 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/length-of-array-like.js
+<s> [webpack.Progress] 40% building 250/319 modules 69 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/length-of-array-like.js
+<s> [webpack.Progress] 40% building 251/319 modules 68 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/length-of-array-like.js
+<s> [webpack.Progress] 40% building 252/319 modules 67 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/length-of-array-like.js
+<s> [webpack.Progress] 40% building 253/319 modules 66 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/length-of-array-like.js
+<s> [webpack.Progress] 40% building 253/320 modules 67 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/array-slice-simple.js
+<s> [webpack.Progress] 40% building 253/321 modules 68 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/object-keys-internal.js
+<s> [webpack.Progress] 40% building 253/322 modules 69 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/enum-bug-keys.js
+<s> [webpack.Progress] 40% building 253/323 modules 70 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-primitive.js
+<s> [webpack.Progress] 40% building 254/323 modules 69 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-primitive.js
+<s> [webpack.Progress] 40% building 255/323 modules 68 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-primitive.js
+<s> [webpack.Progress] 40% building 256/323 modules 67 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-primitive.js
+<s> [webpack.Progress] 40% building 257/323 modules 66 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-primitive.js
+<s> [webpack.Progress] 40% building 258/323 modules 65 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-primitive.js
+<s> [webpack.Progress] 41% building 259/323 modules 64 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-primitive.js
+<s> [webpack.Progress] 41% building 260/323 modules 63 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-primitive.js
+<s> [webpack.Progress] 41% building 261/323 modules 62 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-primitive.js
+<s> [webpack.Progress] 41% building 262/323 modules 61 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-primitive.js
+<s> [webpack.Progress] 41% building 263/323 modules 60 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-primitive.js
+<s> [webpack.Progress] 41% building 264/323 modules 59 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-primitive.js
+<s> [webpack.Progress] 41% building 265/323 modules 58 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-primitive.js
+<s> [webpack.Progress] 41% building 266/323 modules 57 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-primitive.js
+<s> [webpack.Progress] 42% building 267/323 modules 56 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-primitive.js
+<s> [webpack.Progress] 42% building 268/323 modules 55 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-primitive.js
+<s> [webpack.Progress] 42% building 269/323 modules 54 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-primitive.js
+<s> [webpack.Progress] 42% building 270/323 modules 53 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-primitive.js
+<s> [webpack.Progress] 42% building 271/323 modules 52 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-primitive.js
+<s> [webpack.Progress] 42% building 272/323 modules 51 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-primitive.js
+<s> [webpack.Progress] 42% building 273/323 modules 50 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-primitive.js
+<s> [webpack.Progress] 42% building 273/324 modules 51 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js
+<s> [webpack.Progress] 42% building 273/325 modules 52 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.regexp.test.js
+<s> [webpack.Progress] 42% building 273/326 modules 53 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-cca88db8.js
+<s> [webpack.Progress] 42% building 273/327 modules 54 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/application/ApplicationsView.vue?vue&type=style&index=0&id=4d2ab301&lang=scss&scoped=true&
+<s> [webpack.Progress] 42% building 274/327 modules 53 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-cca88db8.js
+<s> [webpack.Progress] 42% building 274/328 modules 54 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/application/ApplicationsView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 43% building 275/328 modules 53 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-cca88db8.js
+<s> [webpack.Progress] 43% building 275/329 modules 54 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/application/ApplicationCreationView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 43% building 276/329 modules 53 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-cca88db8.js
+<s> [webpack.Progress] 43% building 276/330 modules 54 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/application/ApplicationsView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 43% building 276/331 modules 55 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/application/ApplicationCreationView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 43% building 276/332 modules 56 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/application/ApplicationsView.vue?vue&type=style&index=0&id=4d2ab301&lang=scss&scoped=true&
+<s> [webpack.Progress] 43% building 277/332 modules 55 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/application/ApplicationCreationView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 43% building 277/333 modules 56 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/references/ReferencesManagementView.vue?vue&type=style&index=0&id=0e94ee4d&lang=scss&scoped=true&
+<s> [webpack.Progress] 43% building 278/333 modules 55 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/application/ApplicationCreationView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 43% building 278/334 modules 56 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/application/ApplicationsView.vue?vue&type=style&index=0&id=4d2ab301&lang=scss&scoped=true&
+<s> [webpack.Progress] 43% building 278/335 modules 57 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/references/ReferencesManagementView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 43% building 279/335 modules 56 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/application/ApplicationsView.vue?vue&type=style&index=0&id=4d2ab301&lang=scss&scoped=true&
+<s> [webpack.Progress] 43% building 279/336 modules 57 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/references/ReferencesManagementView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 43% building 279/337 modules 58 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/references/ReferencesManagementView.vue?vue&type=style&index=0&id=0e94ee4d&lang=scss&scoped=true&
+<s> [webpack.Progress] 43% building 280/337 modules 57 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/references/ReferencesManagementView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 43% building 280/338 modules 58 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/references/ReferencesManagementView.vue?vue&type=style&index=0&id=0e94ee4d&lang=scss&scoped=true&
+<s> [webpack.Progress] 43% building 280/339 modules 59 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/references/ReferenceTableView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 43% building 281/339 modules 58 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/references/ReferencesManagementView.vue?vue&type=style&index=0&id=0e94ee4d&lang=scss&scoped=true&
+<s> [webpack.Progress] 43% building 281/340 modules 59 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/references/ReferenceTableView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 43% building 281/341 modules 60 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-79ac4d01.js
+<s> [webpack.Progress] 43% building 281/342 modules 61 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-113685dc.js
+<s> [webpack.Progress] 43% building 281/343 modules 62 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypeTableView.vue?vue&type=style&index=0&id=c6d33404&lang=scss&scoped=true&
+<s> [webpack.Progress] 43% building 282/343 modules 61 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-113685dc.js
+<s> [webpack.Progress] 43% building 282/344 modules 62 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypeTableView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 43% building 283/344 modules 61 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-113685dc.js
+<s> [webpack.Progress] 43% building 283/345 modules 62 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypeTableView.vue?vue&type=style&index=0&id=c6d33404&lang=scss&scoped=true&
+<s> [webpack.Progress] 44% building 284/345 modules 61 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-113685dc.js
+<s> [webpack.Progress] 44% building 284/346 modules 62 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypeTableView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 44% building 284/347 modules 63 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypeTableView.vue?vue&type=style&index=0&id=c6d33404&lang=scss&scoped=true&
+<s> [webpack.Progress] 44% building 284/348 modules 64 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-91404fa9.js
+<s> [webpack.Progress] 44% building 284/349 modules 65 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypesManagementView.vue?vue&type=style&index=0&lang=scss&
+<s> [webpack.Progress] 44% building 285/349 modules 64 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-91404fa9.js
+<s> [webpack.Progress] 44% building 285/350 modules 65 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypesManagementView.vue?vue&type=style&index=0&lang=scss&
+<s> [webpack.Progress] 44% building 286/350 modules 64 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-91404fa9.js
+<s> [webpack.Progress] 44% building 286/351 modules 65 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypesManagementView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 44% building 287/351 modules 64 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-91404fa9.js
+<s> [webpack.Progress] 44% building 287/352 modules 65 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypesManagementView.vue?vue&type=style&index=0&lang=scss&
+<s> [webpack.Progress] 44% building 287/353 modules 66 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypesManagementView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 44% building 287/354 modules 67 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-252f2b57.js
+<s> [webpack.Progress] 44% building 287/355 modules 68 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-ea9bc877.js
+<s> [webpack.Progress] 44% building 287/356 modules 69 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypesRepositoryView.vue?vue&type=style&index=0&lang=scss&
+<s> [webpack.Progress] 44% building 288/356 modules 68 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-ea9bc877.js
+<s> [webpack.Progress] 44% building 288/357 modules 69 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypesRepositoryView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 44% building 289/357 modules 68 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-ea9bc877.js
+<s> [webpack.Progress] 44% building 289/358 modules 69 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypesRepositoryView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 44% building 289/359 modules 70 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypesRepositoryView.vue?vue&type=style&index=0&lang=scss&
+<s> [webpack.Progress] 44% building 290/359 modules 69 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypesRepositoryView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 44% building 290/360 modules 70 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/authorizations/DataTypeAuthorizationsView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 44% building 291/360 modules 69 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypesRepositoryView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 44% building 291/361 modules 70 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/datatype/DataTypesRepositoryView.vue?vue&type=style&index=0&lang=scss&
+<s> [webpack.Progress] 44% building 291/362 modules 71 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/authorizations/DataTypeAuthorizationsView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 44% building 291/363 modules 72 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/authorizations/DataTypeAuthorizationInfoView.vue?vue&type=style&index=0&lang=scss&
+<s> [webpack.Progress] 45% building 292/363 modules 71 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/authorizations/DataTypeAuthorizationsView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 45% building 292/364 modules 72 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/authorizations/DataTypeAuthorizationInfoView.vue?vue&type=style&index=0&lang=scss&
+<s> [webpack.Progress] 45% building 293/364 modules 71 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/authorizations/DataTypeAuthorizationsView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 45% building 293/365 modules 72 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/authorizations/DataTypeAuthorizationInfoView.vue?vue&type=style&index=0&lang=scss&
+<s> [webpack.Progress] 45% building 293/366 modules 73 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-2793447b.js
+<s> [webpack.Progress] 45% building 294/366 modules 72 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-2793447b.js
+<s> [webpack.Progress] 45% building 294/367 modules 73 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/authorizations/DataTypeAuthorizationInfoView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 45% building 295/367 modules 72 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-2793447b.js
+<s> [webpack.Progress] 45% building 295/368 modules 73 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/authorizations/DataTypeAuthorizationInfoView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 45% building 296/368 modules 72 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/authorizations/DataTypeAuthorizationInfoView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 45% building 296/369 modules 73 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/LoginView.vue?vue&type=style&index=0&lang=scss&
+<s> [webpack.Progress] 45% building 297/369 modules 72 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/authorizations/DataTypeAuthorizationInfoView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 45% building 297/370 modules 73 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/LoginView.vue?vue&type=style&index=0&lang=scss&
+<s> [webpack.Progress] 45% building 298/370 modules 72 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/authorizations/DataTypeAuthorizationInfoView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 45% building 298/371 modules 73 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/LoginView.vue?vue&type=style&index=0&lang=scss&
+<s> [webpack.Progress] 45% building 299/371 modules 72 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/LoginView.vue?vue&type=style&index=0&lang=scss&
+<s> [webpack.Progress] 45% building 299/372 modules 73 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/LoginView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 46% building 300/372 modules 72 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/LoginView.vue?vue&type=style&index=0&lang=scss&
+<s> [webpack.Progress] 46% building 300/373 modules 73 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/LoginView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 46% building 301/373 modules 72 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/LoginView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 46% building 302/373 modules 71 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/LoginView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 46% building 303/373 modules 70 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/LoginView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 46% building 304/373 modules 69 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/LoginView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 46% building 305/373 modules 68 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/LoginView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 46% building 306/373 modules 67 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/LoginView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 46% building 307/373 modules 66 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/LoginView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 46% building 308/373 modules 65 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/LoginView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 47% building 309/373 modules 64 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/LoginView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 47% building 310/373 modules 63 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/LoginView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 47% building 311/373 modules 62 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/LoginView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 47% building 311/374 modules 63 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/correct-prototype-getter.js
+<s> [webpack.Progress] 47% building 312/374 modules 62 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/correct-prototype-getter.js
+<s> [webpack.Progress] 47% building 313/374 modules 61 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/correct-prototype-getter.js
+<s> [webpack.Progress] 47% building 314/374 modules 60 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/correct-prototype-getter.js
+<s> [webpack.Progress] 47% building 315/374 modules 59 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/correct-prototype-getter.js
+<s> [webpack.Progress] 47% building 316/374 modules 58 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/correct-prototype-getter.js
+<s> [webpack.Progress] 48% building 317/374 modules 57 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/correct-prototype-getter.js
+<s> [webpack.Progress] 48% building 318/374 modules 56 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/correct-prototype-getter.js
+<s> [webpack.Progress] 48% building 319/374 modules 55 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/correct-prototype-getter.js
+<s> [webpack.Progress] 48% building 320/374 modules 54 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/correct-prototype-getter.js
+<s> [webpack.Progress] 48% building 321/374 modules 53 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/correct-prototype-getter.js
+<s> [webpack.Progress] 48% building 322/374 modules 52 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/correct-prototype-getter.js
+<s> [webpack.Progress] 48% building 322/375 modules 53 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-constructor.js
+<s> [webpack.Progress] 48% building 323/375 modules 52 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-constructor.js
+<s> [webpack.Progress] 48% building 324/375 modules 51 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-constructor.js
+<s> [webpack.Progress] 49% building 325/375 modules 50 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-constructor.js
+<s> [webpack.Progress] 49% building 326/375 modules 49 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-constructor.js
+<s> [webpack.Progress] 49% building 327/375 modules 48 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-constructor.js
+<s> [webpack.Progress] 49% building 328/375 modules 47 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-constructor.js
+<s> [webpack.Progress] 49% building 329/375 modules 46 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-constructor.js
+<s> [webpack.Progress] 49% building 330/375 modules 45 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-constructor.js
+<s> [webpack.Progress] 49% building 331/375 modules 44 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-constructor.js
+<s> [webpack.Progress] 49% building 332/375 modules 43 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-constructor.js
+<s> [webpack.Progress] 49% building 333/375 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-constructor.js
+<s> [webpack.Progress] 50% building 334/375 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-constructor.js
+<s> [webpack.Progress] 50% building 335/375 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-constructor.js
+<s> [webpack.Progress] 50% building 336/375 modules 39 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-constructor.js
+<s> [webpack.Progress] 50% building 337/375 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-constructor.js
+<s> [webpack.Progress] 50% building 338/375 modules 37 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-constructor.js
+<s> [webpack.Progress] 50% building 339/375 modules 36 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-constructor.js
+<s> [webpack.Progress] 50% building 340/375 modules 35 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-constructor.js
+<s> [webpack.Progress] 50% building 341/375 modules 34 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-constructor.js
+<s> [webpack.Progress] 51% building 342/375 modules 33 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-constructor.js
+<s> [webpack.Progress] 51% building 343/375 modules 32 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-constructor.js
+<s> [webpack.Progress] 51% building 344/375 modules 31 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-constructor.js
+<s> [webpack.Progress] 51% building 344/376 modules 32 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/error-stack-installable.js
+<s> [webpack.Progress] 51% building 344/377 modules 33 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/clear-error-stack.js
+<s> [webpack.Progress] 51% building 344/378 modules 34 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/install-error-cause.js
+<s> [webpack.Progress] 51% building 344/379 modules 35 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/normalize-string-argument.js
+<s> [webpack.Progress] 51% building 344/380 modules 36 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-590a6902.js
+<s> [webpack.Progress] 51% building 344/381 modules 37 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.array.from.js
+<s> [webpack.Progress] 51% building 344/382 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.function.name.js
+<s> [webpack.Progress] 51% building 344/383 modules 39 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-property-decorator/lib/index.js
+<s> [webpack.Progress] 51% building 344/384 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/collapse.js
+<s> [webpack.Progress] 51% building 344/385 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/checkbox.js
+<s> [webpack.Progress] 51% building 344/386 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-1b63211c.js
+<s> [webpack.Progress] 51% building 344/387 modules 43 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/carousel.js
+<s> [webpack.Progress] 51% building 344/388 modules 44 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/button.js
+<s> [webpack.Progress] 51% building 344/389 modules 45 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/chunk-efec59b6.js
+<s> [webpack.Progress] 51% building 344/390 modules 46 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/breadcrumb.js
+<s> [webpack.Progress] 51% building 345/390 modules 45 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/breadcrumb.js
+<s> [webpack.Progress] 51% building 346/390 modules 44 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/breadcrumb.js
+<s> [webpack.Progress] 51% building 346/391 modules 45 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/autocomplete.js
+<s> [webpack.Progress] 51% building 347/391 modules 44 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/autocomplete.js
+<s> [webpack.Progress] 51% building 348/391 modules 43 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/autocomplete.js
+<s> [webpack.Progress] 51% building 349/391 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/autocomplete.js
+<s> [webpack.Progress] 52% building 350/391 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/buefy/dist/esm/autocomplete.js
+<s> [webpack.Progress] 52% building 350/392 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.object.entries.js
+<s> [webpack.Progress] 52% building 350/393 modules 43 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.dom-collections.for-each.js
+<s> [webpack.Progress] 52% building 350/394 modules 44 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.url-search-params.js
+<s> [webpack.Progress] 52% building 351/394 modules 43 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.url-search-params.js
+<s> [webpack.Progress] 52% building 351/395 modules 44 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/web.url.js
+<s> [webpack.Progress] 52% building 351/396 modules 45 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.array.concat.js
+<s> [webpack.Progress] 52% building 351/397 modules 46 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.json.stringify.js
+<s> [webpack.Progress] 52% building 351/398 modules 47 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js
+<s> [webpack.Progress] 52% building 351/399 modules 48 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/isNativeReflectConstruct.js
+<s> [webpack.Progress] 52% building 352/399 modules 47 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/isNativeReflectConstruct.js
+<s> [webpack.Progress] 52% building 352/400 modules 48 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js
+<s> [webpack.Progress] 52% building 352/401 modules 49 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.reflect.to-string-tag.js
+<s> [webpack.Progress] 52% building 352/402 modules 50 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js
+<s> [webpack.Progress] 52% building 353/402 modules 49 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js
+<s> [webpack.Progress] 52% building 354/402 modules 48 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js
+<s> [webpack.Progress] 52% building 354/403 modules 49 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.object.get-own-property-descriptor.js
+<s> [webpack.Progress] 52% building 354/404 modules 50 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.array.filter.js
+<s> [webpack.Progress] 52% building 355/404 modules 49 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.array.filter.js
+<s> [webpack.Progress] 52% building 356/404 modules 48 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.array.filter.js
+<s> [webpack.Progress] 52% building 357/404 modules 47 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.array.filter.js
+<s> [webpack.Progress] 52% building 358/404 modules 46 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.array.filter.js
+<s> [webpack.Progress] 53% building 359/404 modules 45 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.array.filter.js
+<s> [webpack.Progress] 53% building 360/404 modules 44 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.array.filter.js
+<s> [webpack.Progress] 53% building 361/404 modules 43 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.array.filter.js
+<s> [webpack.Progress] 53% building 362/404 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.array.filter.js
+<s> [webpack.Progress] 53% building 362/405 modules 43 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/dom-token-list-prototype.js
+<s> [webpack.Progress] 53% building 363/405 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/dom-token-list-prototype.js
+<s> [webpack.Progress] 53% building 363/406 modules 43 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/PageView.vue
+<s> [webpack.Progress] 53% building 364/406 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/PageView.vue
+<s> [webpack.Progress] 53% building 365/406 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/PageView.vue
+<s> [webpack.Progress] 53% building 366/406 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/PageView.vue
+<s> [webpack.Progress] 54% building 367/406 modules 39 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/PageView.vue
+<s> [webpack.Progress] 54% building 368/406 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/PageView.vue
+<s> [webpack.Progress] 54% building 368/407 modules 39 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/dom-iterables.js
+<s> [webpack.Progress] 54% building 369/407 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/dom-iterables.js
+<s> [webpack.Progress] 54% building 370/407 modules 37 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/dom-iterables.js
+<s> [webpack.Progress] 54% building 371/407 modules 36 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/dom-iterables.js
+<s> [webpack.Progress] 54% building 372/407 modules 35 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/dom-iterables.js
+<s> [webpack.Progress] 54% building 372/408 modules 36 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js
+<s> [webpack.Progress] 54% building 372/409 modules 37 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.array.sort.js
+<s> [webpack.Progress] 54% building 372/410 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.string.split.js
+<s> [webpack.Progress] 54% building 372/411 modules 39 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/initializerDefineProperty.js
+<s> [webpack.Progress] 54% building 372/412 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/applyDecoratedDescriptor.js
+<s> [webpack.Progress] 54% building 372/413 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/initializerWarningHelper.js
+<s> [webpack.Progress] 54% building 372/414 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/createForOfIteratorHelper.js
+<s> [webpack.Progress] 54% building 373/414 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/createForOfIteratorHelper.js
+<s> [webpack.Progress] 54% building 373/415 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/inherit-if-required.js
+<s> [webpack.Progress] 54% building 374/415 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/inherit-if-required.js
+<s> [webpack.Progress] 54% building 375/415 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/inherit-if-required.js
+<s> [webpack.Progress] 55% building 376/415 modules 39 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/inherit-if-required.js
+<s> [webpack.Progress] 55% building 377/415 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/inherit-if-required.js
+<s> [webpack.Progress] 55% building 378/415 modules 37 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/inherit-if-required.js
+<s> [webpack.Progress] 55% building 378/416 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-regexp.js
+<s> [webpack.Progress] 55% building 378/417 modules 39 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-absolute-index.js
+<s> [webpack.Progress] 55% building 379/417 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-absolute-index.js
+<s> [webpack.Progress] 55% building 380/417 modules 37 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-absolute-index.js
+<s> [webpack.Progress] 55% building 381/417 modules 36 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/to-absolute-index.js
+<s> [webpack.Progress] 55% building 381/418 modules 37 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/get-iterator.js
+<s> [webpack.Progress] 55% building 381/419 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-array-iterator-method.js
+<s> [webpack.Progress] 55% building 382/419 modules 37 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-array-iterator-method.js
+<s> [webpack.Progress] 55% building 383/419 modules 36 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-array-iterator-method.js
+<s> [webpack.Progress] 56% building 384/419 modules 35 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-array-iterator-method.js
+<s> [webpack.Progress] 56% building 385/419 modules 34 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-array-iterator-method.js
+<s> [webpack.Progress] 56% building 386/419 modules 33 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-array-iterator-method.js
+<s> [webpack.Progress] 56% building 387/419 modules 32 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-array-iterator-method.js
+<s> [webpack.Progress] 56% building 388/419 modules 31 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/is-array-iterator-method.js
+<s> [webpack.Progress] 56% building 388/420 modules 32 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/array-method-has-species-support.js
+<s> [webpack.Progress] 56% building 389/420 modules 31 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/array-method-has-species-support.js
+<s> [webpack.Progress] 56% building 390/420 modules 30 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/array-method-has-species-support.js
+<s> [webpack.Progress] 56% building 391/420 modules 29 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/array-method-has-species-support.js
+<s> [webpack.Progress] 57% building 392/420 modules 28 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/array-method-has-species-support.js
+<s> [webpack.Progress] 57% building 393/420 modules 27 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/array-method-has-species-support.js
+<s> [webpack.Progress] 57% building 394/420 modules 26 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/array-method-has-species-support.js
+<s> [webpack.Progress] 57% building 394/421 modules 27 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/array-species-constructor.js
+<s> [webpack.Progress] 57% building 394/422 modules 28 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/ordinary-to-primitive.js
+<s> [webpack.Progress] 57% building 395/422 modules 27 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/ordinary-to-primitive.js
+<s> [webpack.Progress] 57% building 396/422 modules 26 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/ordinary-to-primitive.js
+<s> [webpack.Progress] 57% building 396/423 modules 27 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/PageView.vue?vue&type=template&id=4557ca6e&scoped=true&
+<s> [webpack.Progress] 57% building 397/423 modules 26 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/ordinary-to-primitive.js
+<s> [webpack.Progress] 57% building 397/424 modules 27 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/PageView.vue?vue&type=template&id=4557ca6e&scoped=true&
+<s> [webpack.Progress] 57% building 397/425 modules 28 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/regenerator-runtime/runtime.js
+<s> [webpack.Progress] 57% building 397/426 modules 29 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/PageView.vue?vue&type=style&index=0&id=4557ca6e&lang=scss&scoped=true&
+<s> [webpack.Progress] 57% building 398/426 modules 28 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/regenerator-runtime/runtime.js
+<s> [webpack.Progress] 57% building 398/427 modules 29 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/PageView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 57% building 399/427 modules 28 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/regenerator-runtime/runtime.js
+<s> [webpack.Progress] 57% building 399/428 modules 29 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/PageView.vue?vue&type=style&index=0&id=4557ca6e&lang=scss&scoped=true&
+<s> [webpack.Progress] 57% building 400/428 modules 28 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/regenerator-runtime/runtime.js
+<s> [webpack.Progress] 57% building 400/429 modules 29 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/PageView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 57% building 400/430 modules 30 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/PageView.vue?vue&type=style&index=0&id=4557ca6e&lang=scss&scoped=true&
+<s> [webpack.Progress] 58% building 401/430 modules 29 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/PageView.vue?vue&type=style&index=0&id=4557ca6e&lang=scss&scoped=true&
+<s> [webpack.Progress] 58% building 401/431 modules 30 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.array.find.js
+<s> [webpack.Progress] 58% building 401/432 modules 31 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.array.map.js
+<s> [webpack.Progress] 58% building 401/433 modules 32 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-router/dist/vue-router.esm.js
+<s> [webpack.Progress] 58% building 402/433 modules 31 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-router/dist/vue-router.esm.js
+<s> [webpack.Progress] 58% building 403/433 modules 30 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-router/dist/vue-router.esm.js
+<s> [webpack.Progress] 58% building 403/434 modules 31 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/InternationalisationService.js
+<s> [webpack.Progress] 58% building 404/434 modules 30 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/InternationalisationService.js
+<s> [webpack.Progress] 58% building 404/435 modules 31 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/ErrorsService.js
+<s> [webpack.Progress] 58% building 404/436 modules 32 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/AlertService.js
+<s> [webpack.Progress] 58% building 405/436 modules 31 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/AlertService.js
+<s> [webpack.Progress] 58% building 406/436 modules 30 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/AlertService.js
+<s> [webpack.Progress] 58% building 407/436 modules 29 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/AlertService.js
+<s> [webpack.Progress] 58% building 407/437 modules 30 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/SubMenu.vue
+<s> [webpack.Progress] 58% building 407/438 modules 31 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/CollapsibleTree.vue
+<s> [webpack.Progress] 58% building 407/439 modules 32 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/login/Signin.vue
+<s> [webpack.Progress] 58% building 407/440 modules 33 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/login/Register.vue
+<s> [webpack.Progress] 58% building 407/441 modules 34 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.object.get-prototype-of.js
+<s> [webpack.Progress] 58% building 408/441 modules 33 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.object.get-prototype-of.js
+<s> [webpack.Progress] 59% building 409/441 modules 32 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.object.get-prototype-of.js
+<s> [webpack.Progress] 59% building 410/441 modules 31 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.object.get-prototype-of.js
+<s> [webpack.Progress] 59% building 411/441 modules 30 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.object.get-prototype-of.js
+<s> [webpack.Progress] 59% building 412/441 modules 29 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.object.get-prototype-of.js
+<s> [webpack.Progress] 59% building 413/441 modules 28 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.object.get-prototype-of.js
+<s> [webpack.Progress] 59% building 414/441 modules 27 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.object.get-prototype-of.js
+<s> [webpack.Progress] 59% building 415/441 modules 26 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.object.get-prototype-of.js
+<s> [webpack.Progress] 59% building 416/441 modules 25 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.object.get-prototype-of.js
+<s> [webpack.Progress] 60% building 417/441 modules 24 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.object.get-prototype-of.js
+<s> [webpack.Progress] 60% building 417/442 modules 25 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/rest/ApplicationService.js
+<s> [webpack.Progress] 60% building 417/443 modules 26 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/rest/LoginService.js
+<s> [webpack.Progress] 60% building 417/444 modules 27 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/rest/ReferenceService.js
+<s> [webpack.Progress] 60% building 417/445 modules 28 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/rest/AuthorizationService.js
+<s> [webpack.Progress] 60% building 417/446 modules 29 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/ApplicationConfig.js
+<s> [webpack.Progress] 60% building 417/447 modules 30 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/Button.js
+<s> [webpack.Progress] 60% building 417/448 modules 31 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/ApplicationResult.js
+<s> [webpack.Progress] 60% building 417/449 modules 32 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/DataTypeAuthorization.js
+<s> [webpack.Progress] 60% building 418/449 modules 31 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/DataTypeAuthorization.js
+<s> [webpack.Progress] 60% building 418/450 modules 32 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.array.find-index.js
+<s> [webpack.Progress] 60% building 419/450 modules 31 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.array.find-index.js
+<s> [webpack.Progress] 60% building 419/451 modules 32 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/application/VariableComponentOrderBy.js
+<s> [webpack.Progress] 60% building 419/452 modules 33 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/application/DownloadDatasetQuery.js
+<s> [webpack.Progress] 60% building 419/453 modules 34 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/authorization/Authorization.js
+<s> [webpack.Progress] 60% building 419/454 modules 35 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/array-from.js
+<s> [webpack.Progress] 60% building 420/454 modules 34 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/array-from.js
+<s> [webpack.Progress] 60% building 420/455 modules 35 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js
+<s> [webpack.Progress] 60% building 421/455 modules 34 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js
+<s> [webpack.Progress] 60% building 421/456 modules 35 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js
+<s> [webpack.Progress] 60% building 421/457 modules 36 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/@babel/runtime/helpers/esm/iterableToArray.js
+<s> [webpack.Progress] 60% building 421/458 modules 37 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.array.splice.js
+<s> [webpack.Progress] 60% building 421/459 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.string.pad-start.js
+<s> [webpack.Progress] 60% building 422/459 modules 37 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.string.pad-start.js
+<s> [webpack.Progress] 60% building 422/460 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.array.join.js
+<s> [webpack.Progress] 60% building 422/461 modules 39 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.string.replace.js
+<s> [webpack.Progress] 60% building 423/461 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.string.replace.js
+<s> [webpack.Progress] 60% building 424/461 modules 37 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.string.replace.js
+<s> [webpack.Progress] 61% building 425/461 modules 36 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.string.replace.js
+<s> [webpack.Progress] 61% building 426/461 modules 35 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.string.replace.js
+<s> [webpack.Progress] 61% building 426/462 modules 36 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/login/Signin.vue?vue&type=template&id=45ae5138&
+<s> [webpack.Progress] 61% building 427/462 modules 35 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.string.replace.js
+<s> [webpack.Progress] 61% building 427/463 modules 36 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/login/Signin.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 61% building 428/463 modules 35 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.string.replace.js
+<s> [webpack.Progress] 61% building 428/464 modules 36 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/login/Signin.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 61% building 428/465 modules 37 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/login/Signin.vue?vue&type=template&id=45ae5138&
+<s> [webpack.Progress] 61% building 429/465 modules 36 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/login/Signin.vue?vue&type=template&id=45ae5138&
+<s> [webpack.Progress] 61% building 429/466 modules 37 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/SubMenu.vue?vue&type=template&id=a8a2afea&scoped=true&
+<s> [webpack.Progress] 61% building 430/466 modules 36 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/login/Signin.vue?vue&type=template&id=45ae5138&
+<s> [webpack.Progress] 61% building 430/467 modules 37 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/SubMenu.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 61% building 431/467 modules 36 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/login/Signin.vue?vue&type=template&id=45ae5138&
+<s> [webpack.Progress] 61% building 431/468 modules 37 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/SubMenu.vue?vue&type=style&index=0&id=a8a2afea&lang=scss&scoped=true&
+<s> [webpack.Progress] 61% building 432/468 modules 36 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/login/Signin.vue?vue&type=template&id=45ae5138&
+<s> [webpack.Progress] 61% building 432/469 modules 37 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/SubMenu.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 61% building 432/470 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/SubMenu.vue?vue&type=template&id=a8a2afea&scoped=true&
+<s> [webpack.Progress] 61% building 432/471 modules 39 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/SubMenu.vue?vue&type=style&index=0&id=a8a2afea&lang=scss&scoped=true&
+<s> [webpack.Progress] 61% building 433/471 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/SubMenu.vue?vue&type=template&id=a8a2afea&scoped=true&
+<s> [webpack.Progress] 61% building 433/472 modules 39 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/SubMenu.vue?vue&type=style&index=0&id=a8a2afea&lang=scss&scoped=true&
+<s> [webpack.Progress] 62% building 434/472 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/SubMenu.vue?vue&type=style&index=0&id=a8a2afea&lang=scss&scoped=true&
+<s> [webpack.Progress] 62% building 434/473 modules 39 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/CollapsibleTree.vue?vue&type=template&id=6c3dbad8&scoped=true&
+<s> [webpack.Progress] 62% building 435/473 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/SubMenu.vue?vue&type=style&index=0&id=a8a2afea&lang=scss&scoped=true&
+<s> [webpack.Progress] 62% building 435/474 modules 39 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/CollapsibleTree.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 62% building 436/474 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/SubMenu.vue?vue&type=style&index=0&id=a8a2afea&lang=scss&scoped=true&
+<s> [webpack.Progress] 62% building 436/475 modules 39 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/CollapsibleTree.vue?vue&type=style&index=0&id=6c3dbad8&lang=scss&scoped=true&
+<s> [webpack.Progress] 62% building 437/475 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/SubMenu.vue?vue&type=style&index=0&id=a8a2afea&lang=scss&scoped=true&
+<s> [webpack.Progress] 62% building 437/476 modules 39 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/CollapsibleTree.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 62% building 437/477 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/CollapsibleTree.vue?vue&type=template&id=6c3dbad8&scoped=true&
+<s> [webpack.Progress] 62% building 437/478 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/CollapsibleTree.vue?vue&type=style&index=0&id=6c3dbad8&lang=scss&scoped=true&
+<s> [webpack.Progress] 62% building 438/478 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/CollapsibleTree.vue?vue&type=template&id=6c3dbad8&scoped=true&
+<s> [webpack.Progress] 62% building 438/479 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/CollapsibleTree.vue?vue&type=style&index=0&id=6c3dbad8&lang=scss&scoped=true&
+<s> [webpack.Progress] 62% building 439/479 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/CollapsibleTree.vue?vue&type=style&index=0&id=6c3dbad8&lang=scss&scoped=true&
+<s> [webpack.Progress] 62% building 439/480 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/login/Register.vue?vue&type=template&id=0710bf8e&
+<s> [webpack.Progress] 62% building 440/480 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/CollapsibleTree.vue?vue&type=style&index=0&id=6c3dbad8&lang=scss&scoped=true&
+<s> [webpack.Progress] 62% building 440/481 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/login/Register.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 62% building 441/481 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/CollapsibleTree.vue?vue&type=style&index=0&id=6c3dbad8&lang=scss&scoped=true&
+<s> [webpack.Progress] 62% building 441/482 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/login/Register.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 62% building 441/483 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/login/Register.vue?vue&type=template&id=0710bf8e&
+<s> [webpack.Progress] 62% building 441/484 modules 43 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/array-for-each.js
+<s> [webpack.Progress] 62% building 441/485 modules 44 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/array-sort.js
+<s> [webpack.Progress] 62% building 441/486 modules 45 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/string-punycode-to-ascii.js
+<s> [webpack.Progress] 62% building 441/487 modules 46 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/native-url.js
+<s> [webpack.Progress] 63% building 442/487 modules 45 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/native-url.js
+<s> [webpack.Progress] 63% building 442/488 modules 46 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/AvailiblityChart.vue
+<s> [webpack.Progress] 63% building 442/489 modules 47 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/CollapsibleInterval.vue
+<s> [webpack.Progress] 63% building 442/490 modules 48 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.string.search.js
+<s> [webpack.Progress] 63% building 442/491 modules 49 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.array.unscopables.flat.js
+<s> [webpack.Progress] 63% building 442/492 modules 50 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.array.flat.js
+<s> [webpack.Progress] 63% building 442/493 modules 51 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.map.js
+<s> [webpack.Progress] 63% building 442/494 modules 52 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/MenuView.vue
+<s> [webpack.Progress] 63% building 442/495 modules 53 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-property-decorator/lib/decorators/Watch.js
+<s> [webpack.Progress] 63% building 442/496 modules 54 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-property-decorator/lib/decorators/VModel.js
+<s> [webpack.Progress] 63% building 442/497 modules 55 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-property-decorator/lib/decorators/Ref.js
+<s> [webpack.Progress] 63% building 442/498 modules 56 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-property-decorator/lib/decorators/ProvideReactive.js
+<s> [webpack.Progress] 63% building 442/499 modules 57 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-property-decorator/lib/decorators/Provide.js
+<s> [webpack.Progress] 63% building 442/500 modules 58 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-property-decorator/lib/decorators/PropSync.js
+<s> [webpack.Progress] 62% building 442/501 modules 59 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-property-decorator/lib/decorators/Prop.js
+<s> [webpack.Progress] 62% building 442/502 modules 60 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-property-decorator/lib/decorators/ModelSync.js
+<s> [webpack.Progress] 62% building 442/503 modules 61 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-property-decorator/lib/decorators/Model.js
+<s> [webpack.Progress] 62% building 442/504 modules 62 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-property-decorator/lib/decorators/InjectReactive.js
+<s> [webpack.Progress] 62% building 442/505 modules 63 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-property-decorator/lib/decorators/Inject.js
+<s> [webpack.Progress] 62% building 442/506 modules 64 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-property-decorator/lib/decorators/Emit.js
+<s> [webpack.Progress] 62% building 442/507 modules 65 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/datatype/DataTypeDetailsPanel.vue
+<s> [webpack.Progress] 62% building 443/507 modules 64 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/datatype/DataTypeDetailsPanel.vue
+<s> [webpack.Progress] 62% building 444/507 modules 63 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/datatype/DataTypeDetailsPanel.vue
+<s> [webpack.Progress] 62% building 445/507 modules 62 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/datatype/DataTypeDetailsPanel.vue
+<s> [webpack.Progress] 62% building 446/507 modules 61 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/datatype/DataTypeDetailsPanel.vue
+<s> [webpack.Progress] 62% building 447/507 modules 60 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/datatype/DataTypeDetailsPanel.vue
+<s> [webpack.Progress] 63% building 448/507 modules 59 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/datatype/DataTypeDetailsPanel.vue
+<s> [webpack.Progress] 63% building 449/507 modules 58 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/datatype/DataTypeDetailsPanel.vue
+<s> [webpack.Progress] 63% building 450/507 modules 57 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/datatype/DataTypeDetailsPanel.vue
+<s> [webpack.Progress] 63% building 450/508 modules 58 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/AuthorizationTable.vue
+<s> [webpack.Progress] 63% building 450/509 modules 59 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/DetailModalCard.vue
+<s> [webpack.Progress] 63% building 451/509 modules 58 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/DetailModalCard.vue
+<s> [webpack.Progress] 63% building 452/509 modules 57 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/DetailModalCard.vue
+<s> [webpack.Progress] 63% building 453/509 modules 56 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/DetailModalCard.vue
+<s> [webpack.Progress] 63% building 454/509 modules 55 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/DetailModalCard.vue
+<s> [webpack.Progress] 63% building 455/509 modules 54 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/DetailModalCard.vue
+<s> [webpack.Progress] 63% building 456/509 modules 53 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/DetailModalCard.vue
+<s> [webpack.Progress] 63% building 456/510 modules 54 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/engine-webkit-version.js
+<s> [webpack.Progress] 63% building 456/511 modules 55 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/engine-is-ie-or-edge.js
+<s> [webpack.Progress] 63% building 456/512 modules 56 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/engine-ff-version.js
+<s> [webpack.Progress] 63% building 456/513 modules 57 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/array-method-is-strict.js
+<s> [webpack.Progress] 63% building 457/513 modules 56 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/array-method-is-strict.js
+<s> [webpack.Progress] 63% building 458/513 modules 55 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/array-method-is-strict.js
+<s> [webpack.Progress] 63% building 458/514 modules 56 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/references/ReferencesDetailsPanel.vue
+<s> [webpack.Progress] 63% building 459/514 modules 55 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/references/ReferencesDetailsPanel.vue
+<s> [webpack.Progress] 63% building 459/515 modules 56 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/rest/FileService.js
+<s> [webpack.Progress] 63% building 459/516 modules 57 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/rest/DataService.js
+<s> [webpack.Progress] 63% building 460/516 modules 56 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/rest/DataService.js
+<s> [webpack.Progress] 63% building 461/516 modules 55 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/rest/DataService.js
+<s> [webpack.Progress] 63% building 462/516 modules 54 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/rest/DataService.js
+<s> [webpack.Progress] 63% building 463/516 modules 53 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/rest/DataService.js
+<s> [webpack.Progress] 63% building 464/516 modules 52 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/rest/DataService.js
+<s> [webpack.Progress] 64% building 465/516 modules 51 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/rest/DataService.js
+<s> [webpack.Progress] 64% building 466/516 modules 50 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/rest/DataService.js
+<s> [webpack.Progress] 64% building 467/516 modules 49 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/rest/DataService.js
+<s> [webpack.Progress] 64% building 468/516 modules 48 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/rest/DataService.js
+<s> [webpack.Progress] 64% building 469/516 modules 47 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/rest/DataService.js
+<s> [webpack.Progress] 64% building 470/516 modules 46 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/rest/DataService.js
+<s> [webpack.Progress] 64% building 471/516 modules 45 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/rest/DataService.js
+<s> [webpack.Progress] 64% building 472/516 modules 44 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/rest/DataService.js
+<s> [webpack.Progress] 64% building 473/516 modules 43 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/rest/DataService.js
+<s> [webpack.Progress] 65% building 474/516 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/rest/DataService.js
+<s> [webpack.Progress] 65% building 475/516 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/rest/DataService.js
+<s> [webpack.Progress] 65% building 475/517 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/rest/SynthesisService.js
+<s> [webpack.Progress] 65% building 476/517 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/rest/SynthesisService.js
+<s> [webpack.Progress] 65% building 476/518 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/AvailiblityChart.vue?vue&type=template&id=0ed14ea4&scoped=true&
+<s> [webpack.Progress] 65% building 477/518 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/rest/SynthesisService.js
+<s> [webpack.Progress] 65% building 477/519 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/AvailiblityChart.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 65% building 478/519 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/rest/SynthesisService.js
+<s> [webpack.Progress] 65% building 478/520 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/AvailiblityChart.vue?vue&type=style&index=0&id=0ed14ea4&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 479/520 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/services/rest/SynthesisService.js
+<s> [webpack.Progress] 65% building 479/521 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/AvailiblityChart.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 65% building 479/522 modules 43 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/AvailiblityChart.vue?vue&type=template&id=0ed14ea4&scoped=true&
+<s> [webpack.Progress] 64% building 479/523 modules 44 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/AvailiblityChart.vue?vue&type=style&index=0&id=0ed14ea4&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 480/523 modules 43 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/AvailiblityChart.vue?vue&type=template&id=0ed14ea4&scoped=true&
+<s> [webpack.Progress] 64% building 480/524 modules 44 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/AvailiblityChart.vue?vue&type=style&index=0&id=0ed14ea4&lang=scss&scoped=true&
+<s> [webpack.Progress] 64% building 480/525 modules 45 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/application/IntervalValues.js
+<s> [webpack.Progress] 64% building 480/526 modules 46 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/application/VariableComponentKey.js
+<s> [webpack.Progress] 64% building 480/527 modules 47 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/application/VariableComponentFilters.js
+<s> [webpack.Progress] 64% building 481/527 modules 46 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/application/VariableComponentFilters.js
+<s> [webpack.Progress] 64% building 481/528 modules 47 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/CollapsibleInterval.vue?vue&type=template&id=12326d8a&scoped=true&
+<s> [webpack.Progress] 64% building 482/528 modules 46 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/application/VariableComponentFilters.js
+<s> [webpack.Progress] 64% building 482/529 modules 47 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/CollapsibleInterval.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 64% building 483/529 modules 46 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/application/VariableComponentFilters.js
+<s> [webpack.Progress] 64% building 483/530 modules 47 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/CollapsibleInterval.vue?vue&type=style&index=0&id=12326d8a&lang=scss&scoped=true&
+<s> [webpack.Progress] 64% building 484/530 modules 46 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/application/VariableComponentFilters.js
+<s> [webpack.Progress] 64% building 484/531 modules 47 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/CollapsibleInterval.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 64% building 484/532 modules 48 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/CollapsibleInterval.vue?vue&type=template&id=12326d8a&scoped=true&
+<s> [webpack.Progress] 64% building 484/533 modules 49 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/CollapsibleInterval.vue?vue&type=style&index=0&id=12326d8a&lang=scss&scoped=true&
+<s> [webpack.Progress] 64% building 485/533 modules 48 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/CollapsibleInterval.vue?vue&type=template&id=12326d8a&scoped=true&
+<s> [webpack.Progress] 64% building 485/534 modules 49 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/CollapsibleInterval.vue?vue&type=style&index=0&id=12326d8a&lang=scss&scoped=true&
+<s> [webpack.Progress] 64% building 486/534 modules 48 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/CollapsibleInterval.vue?vue&type=style&index=0&id=12326d8a&lang=scss&scoped=true&
+<s> [webpack.Progress] 64% building 487/534 modules 47 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/CollapsibleInterval.vue?vue&type=style&index=0&id=12326d8a&lang=scss&scoped=true&
+<s> [webpack.Progress] 64% building 488/534 modules 46 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/CollapsibleInterval.vue?vue&type=style&index=0&id=12326d8a&lang=scss&scoped=true&
+<s> [webpack.Progress] 64% building 489/534 modules 45 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/CollapsibleInterval.vue?vue&type=style&index=0&id=12326d8a&lang=scss&scoped=true&
+<s> [webpack.Progress] 64% building 489/535 modules 46 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/utils/ConversionUtils.js
+<s> [webpack.Progress] 64% building 489/536 modules 47 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/file/Dataset.js
+<s> [webpack.Progress] 64% building 489/537 modules 48 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/file/FileOrUUID.js
+<s> [webpack.Progress] 64% building 489/538 modules 49 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/file/BinaryFile.js
+<s> [webpack.Progress] 64% building 489/539 modules 50 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/file/BinaryFileDataset.js
+<s> [webpack.Progress] 64% building 490/539 modules 49 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/file/BinaryFileDataset.js
+<s> [webpack.Progress] 64% building 490/540 modules 50 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/MenuView.vue?vue&type=template&id=741ead3e&scoped=true&
+<s> [webpack.Progress] 64% building 491/540 modules 49 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/file/BinaryFileDataset.js
+<s> [webpack.Progress] 64% building 491/541 modules 50 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/MenuView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 64% building 492/541 modules 49 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/file/BinaryFileDataset.js
+<s> [webpack.Progress] 64% building 492/542 modules 50 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/MenuView.vue?vue&type=style&index=0&id=741ead3e&lang=scss&scoped=true&
+<s> [webpack.Progress] 64% building 493/542 modules 49 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/file/BinaryFileDataset.js
+<s> [webpack.Progress] 64% building 493/543 modules 50 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/MenuView.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 64% building 493/544 modules 51 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/MenuView.vue?vue&type=template&id=741ead3e&scoped=true&
+<s> [webpack.Progress] 64% building 493/545 modules 52 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/MenuView.vue?vue&type=style&index=0&id=741ead3e&lang=scss&scoped=true&
+<s> [webpack.Progress] 64% building 494/545 modules 51 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/MenuView.vue?vue&type=template&id=741ead3e&scoped=true&
+<s> [webpack.Progress] 64% building 494/546 modules 52 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/MenuView.vue?vue&type=style&index=0&id=741ead3e&lang=scss&scoped=true&
+<s> [webpack.Progress] 64% building 495/546 modules 51 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/MenuView.vue?vue&type=style&index=0&id=741ead3e&lang=scss&scoped=true&
+<s> [webpack.Progress] 64% building 496/546 modules 50 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/MenuView.vue?vue&type=style&index=0&id=741ead3e&lang=scss&scoped=true&
+<s> [webpack.Progress] 64% building 497/546 modules 49 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/MenuView.vue?vue&type=style&index=0&id=741ead3e&lang=scss&scoped=true&
+<s> [webpack.Progress] 64% building 498/546 modules 48 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/MenuView.vue?vue&type=style&index=0&id=741ead3e&lang=scss&scoped=true&
+<s> [webpack.Progress] 64% building 499/546 modules 47 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/MenuView.vue?vue&type=style&index=0&id=741ead3e&lang=scss&scoped=true&
+<s> [webpack.Progress] 64% building 500/546 modules 46 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/MenuView.vue?vue&type=style&index=0&id=741ead3e&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 501/546 modules 45 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/MenuView.vue?vue&type=style&index=0&id=741ead3e&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 502/546 modules 44 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/MenuView.vue?vue&type=style&index=0&id=741ead3e&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 503/546 modules 43 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/MenuView.vue?vue&type=style&index=0&id=741ead3e&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 504/546 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/MenuView.vue?vue&type=style&index=0&id=741ead3e&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 505/546 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/MenuView.vue?vue&type=style&index=0&id=741ead3e&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 506/546 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/MenuView.vue?vue&type=style&index=0&id=741ead3e&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 507/546 modules 39 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/MenuView.vue?vue&type=style&index=0&id=741ead3e&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 507/547 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/datatype/DataTypeDetailsPanel.vue?vue&type=template&id=bdb157de&scoped=true&
+<s> [webpack.Progress] 65% building 508/547 modules 39 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/MenuView.vue?vue&type=style&index=0&id=741ead3e&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 508/548 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/datatype/DataTypeDetailsPanel.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 65% building 509/548 modules 39 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/MenuView.vue?vue&type=style&index=0&id=741ead3e&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 509/549 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/datatype/DataTypeDetailsPanel.vue?vue&type=style&index=0&id=bdb157de&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 510/549 modules 39 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/views/common/MenuView.vue?vue&type=style&index=0&id=741ead3e&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 510/550 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/datatype/DataTypeDetailsPanel.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 65% building 510/551 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/datatype/DataTypeDetailsPanel.vue?vue&type=template&id=bdb157de&scoped=true&
+<s> [webpack.Progress] 65% building 510/552 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/datatype/DataTypeDetailsPanel.vue?vue&type=style&index=0&id=bdb157de&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 511/552 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/datatype/DataTypeDetailsPanel.vue?vue&type=template&id=bdb157de&scoped=true&
+<s> [webpack.Progress] 65% building 511/553 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/datatype/DataTypeDetailsPanel.vue?vue&type=style&index=0&id=bdb157de&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 512/553 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/datatype/DataTypeDetailsPanel.vue?vue&type=style&index=0&id=bdb157de&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 513/553 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/datatype/DataTypeDetailsPanel.vue?vue&type=style&index=0&id=bdb157de&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 514/553 modules 39 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/datatype/DataTypeDetailsPanel.vue?vue&type=style&index=0&id=bdb157de&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 515/553 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/datatype/DataTypeDetailsPanel.vue?vue&type=style&index=0&id=bdb157de&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 516/553 modules 37 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/datatype/DataTypeDetailsPanel.vue?vue&type=style&index=0&id=bdb157de&lang=scss&scoped=true&
+<s> [webpack.Progress] 66% building 517/553 modules 36 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/datatype/DataTypeDetailsPanel.vue?vue&type=style&index=0&id=bdb157de&lang=scss&scoped=true&
+<s> [webpack.Progress] 66% building 518/553 modules 35 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/datatype/DataTypeDetailsPanel.vue?vue&type=style&index=0&id=bdb157de&lang=scss&scoped=true&
+<s> [webpack.Progress] 66% building 519/553 modules 34 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/datatype/DataTypeDetailsPanel.vue?vue&type=style&index=0&id=bdb157de&lang=scss&scoped=true&
+<s> [webpack.Progress] 66% building 519/554 modules 35 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/references/ReferencesDetailsPanel.vue?vue&type=template&id=ad6d829e&scoped=true&
+<s> [webpack.Progress] 66% building 520/554 modules 34 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/datatype/DataTypeDetailsPanel.vue?vue&type=style&index=0&id=bdb157de&lang=scss&scoped=true&
+<s> [webpack.Progress] 66% building 520/555 modules 35 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/references/ReferencesDetailsPanel.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 66% building 521/555 modules 34 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/datatype/DataTypeDetailsPanel.vue?vue&type=style&index=0&id=bdb157de&lang=scss&scoped=true&
+<s> [webpack.Progress] 66% building 521/556 modules 35 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/references/ReferencesDetailsPanel.vue?vue&type=style&index=0&id=ad6d829e&lang=scss&scoped=true&
+<s> [webpack.Progress] 66% building 522/556 modules 34 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/datatype/DataTypeDetailsPanel.vue?vue&type=style&index=0&id=bdb157de&lang=scss&scoped=true&
+<s> [webpack.Progress] 66% building 522/557 modules 35 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/references/ReferencesDetailsPanel.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 66% building 522/558 modules 36 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/references/ReferencesDetailsPanel.vue?vue&type=template&id=ad6d829e&scoped=true&
+<s> [webpack.Progress] 66% building 522/559 modules 37 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/references/ReferencesDetailsPanel.vue?vue&type=style&index=0&id=ad6d829e&lang=scss&scoped=true&
+<s> [webpack.Progress] 66% building 523/559 modules 36 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/references/ReferencesDetailsPanel.vue?vue&type=template&id=ad6d829e&scoped=true&
+<s> [webpack.Progress] 66% building 523/560 modules 37 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/references/ReferencesDetailsPanel.vue?vue&type=style&index=0&id=ad6d829e&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 523/561 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/utils/BuefyUtils.js
+<s> [webpack.Progress] 65% building 523/562 modules 39 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/DropDownMenu.vue
+<s> [webpack.Progress] 65% building 524/562 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/DropDownMenu.vue
+<s> [webpack.Progress] 66% building 525/562 modules 37 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/DropDownMenu.vue
+<s> [webpack.Progress] 65% building 525/563 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/AuthorizationTable.vue?vue&type=template&id=f60e7d8e&scoped=true&
+<s> [webpack.Progress] 66% building 526/563 modules 37 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/DropDownMenu.vue
+<s> [webpack.Progress] 65% building 526/564 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/AuthorizationTable.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 66% building 527/564 modules 37 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/DropDownMenu.vue
+<s> [webpack.Progress] 65% building 527/565 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/AuthorizationTable.vue?vue&type=style&index=0&id=f60e7d8e&lang=scss&scoped=true&
+<s> [webpack.Progress] 66% building 528/565 modules 37 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/DropDownMenu.vue
+<s> [webpack.Progress] 65% building 528/566 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/AuthorizationTable.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 65% building 528/567 modules 39 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/AuthorizationTable.vue?vue&type=template&id=f60e7d8e&scoped=true&
+<s> [webpack.Progress] 65% building 528/568 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/AuthorizationTable.vue?vue&type=style&index=0&id=f60e7d8e&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 529/568 modules 39 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/AuthorizationTable.vue?vue&type=template&id=f60e7d8e&scoped=true&
+<s> [webpack.Progress] 65% building 529/569 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/AuthorizationTable.vue?vue&type=style&index=0&id=f60e7d8e&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 529/570 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/DetailModalCard.vue?vue&type=template&id=168e5d42&scoped=true&
+<s> [webpack.Progress] 65% building 530/570 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/AuthorizationTable.vue?vue&type=style&index=0&id=f60e7d8e&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 530/571 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/DetailModalCard.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 65% building 531/571 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/AuthorizationTable.vue?vue&type=style&index=0&id=f60e7d8e&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 531/572 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/DetailModalCard.vue?vue&type=style&index=0&id=168e5d42&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 532/572 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/AuthorizationTable.vue?vue&type=style&index=0&id=f60e7d8e&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 532/573 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/DetailModalCard.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 65% building 532/574 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/DetailModalCard.vue?vue&type=template&id=168e5d42&scoped=true&
+<s> [webpack.Progress] 65% building 532/575 modules 43 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/DetailModalCard.vue?vue&type=style&index=0&id=168e5d42&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 533/575 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/DetailModalCard.vue?vue&type=template&id=168e5d42&scoped=true&
+<s> [webpack.Progress] 65% building 533/576 modules 43 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/DetailModalCard.vue?vue&type=style&index=0&id=168e5d42&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 534/576 modules 42 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/DetailModalCard.vue?vue&type=style&index=0&id=168e5d42&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 535/576 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/DetailModalCard.vue?vue&type=style&index=0&id=168e5d42&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 536/576 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/DetailModalCard.vue?vue&type=style&index=0&id=168e5d42&lang=scss&scoped=true&
+<s> [webpack.Progress] 65% building 536/577 modules 41 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/User.js
+<s> [webpack.Progress] 65% building 537/577 modules 40 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/User.js
+<s> [webpack.Progress] 65% building 538/577 modules 39 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/User.js
+<s> [webpack.Progress] 66% building 539/577 modules 38 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/User.js
+<s> [webpack.Progress] 66% building 540/577 modules 37 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/User.js
+<s> [webpack.Progress] 66% building 541/577 modules 36 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/User.js
+<s> [webpack.Progress] 66% building 542/577 modules 35 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/User.js
+<s> [webpack.Progress] 66% building 543/577 modules 34 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/User.js
+<s> [webpack.Progress] 66% building 544/577 modules 33 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/User.js
+<s> [webpack.Progress] 66% building 545/577 modules 32 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/User.js
+<s> [webpack.Progress] 66% building 546/577 modules 31 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/User.js
+<s> [webpack.Progress] 66% building 547/577 modules 30 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/User.js
+<s> [webpack.Progress] 66% building 548/577 modules 29 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/User.js
+<s> [webpack.Progress] 66% building 548/578 modules 30 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/Application.js
+<s> [webpack.Progress] 66% building 548/579 modules 31 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/call-with-safe-iteration-closing.js
+<s> [webpack.Progress] 66% building 549/579 modules 30 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/call-with-safe-iteration-closing.js
+<s> [webpack.Progress] 66% building 550/579 modules 29 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/call-with-safe-iteration-closing.js
+<s> [webpack.Progress] 66% building 550/580 modules 30 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/string-pad.js
+<s> [webpack.Progress] 66% building 550/581 modules 31 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/string-pad-webkit-bug.js
+<s> [webpack.Progress] 66% building 550/582 modules 32 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/runtime/api.js
+<s> [webpack.Progress] 66% building 550/583 modules 33 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/get-substitution.js
+<s> [webpack.Progress] 66% building 551/583 modules 32 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/get-substitution.js
+<s> [webpack.Progress] 66% building 552/583 modules 31 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/get-substitution.js
+<s> [webpack.Progress] 66% building 553/583 modules 30 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/get-substitution.js
+<s> [webpack.Progress] 67% building 554/583 modules 29 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/get-substitution.js
+<s> [webpack.Progress] 67% building 555/583 modules 28 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/get-substitution.js
+<s> [webpack.Progress] 67% building 556/583 modules 27 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/get-substitution.js
+<s> [webpack.Progress] 67% building 557/583 modules 26 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/get-substitution.js
+<s> [webpack.Progress] 67% building 558/583 modules 25 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/get-substitution.js
+<s> [webpack.Progress] 67% building 559/583 modules 24 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/get-substitution.js
+<s> [webpack.Progress] 67% building 560/583 modules 23 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/get-substitution.js
+<s> [webpack.Progress] 67% building 561/583 modules 22 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/get-substitution.js
+<s> [webpack.Progress] 67% building 562/583 modules 21 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/get-substitution.js
+<s> [webpack.Progress] 67% building 563/583 modules 20 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/get-substitution.js
+<s> [webpack.Progress] 67% building 563/584 modules 21 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.string.replace-all.js
+<s> [webpack.Progress] 67% building 563/585 modules 22 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/same-value.js
+<s> [webpack.Progress] 67% building 563/586 modules 23 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/flatten-into-array.js
+<s> [webpack.Progress] 67% building 563/587 modules 24 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/collection.js
+<s> [webpack.Progress] 67% building 563/588 modules 25 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/collection-strong.js
+<s> [webpack.Progress] 67% building 564/588 modules 24 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/collection-strong.js
+<s> [webpack.Progress] 67% building 565/588 modules 23 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/collection-strong.js
+<s> [webpack.Progress] 67% building 565/589 modules 24 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/DropDownMenu.vue?vue&type=template&id=93aa91d8&scoped=true&
+<s> [webpack.Progress] 67% building 566/589 modules 23 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/collection-strong.js
+<s> [webpack.Progress] 67% building 566/590 modules 24 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/DropDownMenu.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 67% building 567/590 modules 23 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/collection-strong.js
+<s> [webpack.Progress] 67% building 567/591 modules 24 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/DropDownMenu.vue?vue&type=style&index=0&id=93aa91d8&lang=scss&scoped=true&
+<s> [webpack.Progress] 67% building 568/591 modules 23 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/collection-strong.js
+<s> [webpack.Progress] 67% building 568/592 modules 24 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/DropDownMenu.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 67% building 568/593 modules 25 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/DropDownMenu.vue?vue&type=template&id=93aa91d8&scoped=true&
+<s> [webpack.Progress] 67% building 568/594 modules 26 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/DropDownMenu.vue?vue&type=style&index=0&id=93aa91d8&lang=scss&scoped=true&
+<s> [webpack.Progress] 67% building 569/594 modules 25 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/DropDownMenu.vue?vue&type=template&id=93aa91d8&scoped=true&
+<s> [webpack.Progress] 67% building 569/595 modules 26 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/DropDownMenu.vue?vue&type=style&index=0&id=93aa91d8&lang=scss&scoped=true&
+<s> [webpack.Progress] 67% building 569/596 modules 27 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/SidePanel.vue
+<s> [webpack.Progress] 67% building 570/596 modules 26 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/SidePanel.vue
+<s> [webpack.Progress] 67% building 571/596 modules 25 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/SidePanel.vue
+<s> [webpack.Progress] 67% building 571/597 modules 26 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vuedraggable/dist/vuedraggable.umd.js
+<s> [webpack.Progress] 67% building 572/597 modules 25 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vuedraggable/dist/vuedraggable.umd.js
+<s> [webpack.Progress] 67% building 572/598 modules 26 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.string.ends-with.js
+<s> [webpack.Progress] 67% building 573/598 modules 25 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.string.ends-with.js
+<s> [webpack.Progress] 67% building 574/598 modules 24 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/modules/es.string.ends-with.js
+<s> [webpack.Progress] 67% building 574/599 modules 25 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-property-decorator/lib/helpers/provideInject.js
+<s> [webpack.Progress] 67% building 574/600 modules 26 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-property-decorator/lib/helpers/metadata.js
+<s> [webpack.Progress] 67% building 575/600 modules 25 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-property-decorator/lib/helpers/metadata.js
+<s> [webpack.Progress] 67% building 576/600 modules 24 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-property-decorator/lib/helpers/metadata.js
+<s> [webpack.Progress] 67% building 577/600 modules 23 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-property-decorator/lib/helpers/metadata.js
+<s> [webpack.Progress] 67% building 578/600 modules 22 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-property-decorator/lib/helpers/metadata.js
+<s> [webpack.Progress] 67% building 579/600 modules 21 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-property-decorator/lib/helpers/metadata.js
+<s> [webpack.Progress] 68% building 580/600 modules 20 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-property-decorator/lib/helpers/metadata.js
+<s> [webpack.Progress] 68% building 581/600 modules 19 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-property-decorator/lib/helpers/metadata.js
+<s> [webpack.Progress] 68% building 582/600 modules 18 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-property-decorator/lib/helpers/metadata.js
+<s> [webpack.Progress] 68% building 583/600 modules 17 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-property-decorator/lib/helpers/metadata.js
+<s> [webpack.Progress] 68% building 583/601 modules 18 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/file/BinaryFileInfos.js
+<s> [webpack.Progress] 68% building 584/601 modules 17 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/file/BinaryFileInfos.js
+<s> [webpack.Progress] 68% building 584/602 modules 18 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/SidePanel.vue?vue&type=template&id=ac5a918e&scoped=true&
+<s> [webpack.Progress] 68% building 585/602 modules 17 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/file/BinaryFileInfos.js
+<s> [webpack.Progress] 68% building 585/603 modules 18 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/SidePanel.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 68% building 586/603 modules 17 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/file/BinaryFileInfos.js
+<s> [webpack.Progress] 68% building 586/604 modules 18 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/SidePanel.vue?vue&type=style&index=0&id=ac5a918e&lang=scss&scoped=true&
+<s> [webpack.Progress] 68% building 587/604 modules 17 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/model/file/BinaryFileInfos.js
+<s> [webpack.Progress] 68% building 587/605 modules 18 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/SidePanel.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 68% building 587/606 modules 19 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/SidePanel.vue?vue&type=template&id=ac5a918e&scoped=true&
+<s> [webpack.Progress] 68% building 587/607 modules 20 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/SidePanel.vue?vue&type=style&index=0&id=ac5a918e&lang=scss&scoped=true&
+<s> [webpack.Progress] 68% building 588/607 modules 19 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/SidePanel.vue?vue&type=template&id=ac5a918e&scoped=true&
+<s> [webpack.Progress] 68% building 588/608 modules 20 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/SidePanel.vue?vue&type=style&index=0&id=ac5a918e&lang=scss&scoped=true&
+<s> [webpack.Progress] 67% building 588/609 modules 21 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-class-component/dist/vue-class-component.esm.js
+<s> [webpack.Progress] 68% building 589/609 modules 20 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-class-component/dist/vue-class-component.esm.js
+<s> [webpack.Progress] 68% building 590/609 modules 19 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-class-component/dist/vue-class-component.esm.js
+<s> [webpack.Progress] 68% building 591/609 modules 18 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-class-component/dist/vue-class-component.esm.js
+<s> [webpack.Progress] 68% building 592/609 modules 17 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-class-component/dist/vue-class-component.esm.js
+<s> [webpack.Progress] 68% building 593/609 modules 16 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-class-component/dist/vue-class-component.esm.js
+<s> [webpack.Progress] 68% building 594/609 modules 15 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-class-component/dist/vue-class-component.esm.js
+<s> [webpack.Progress] 68% building 595/609 modules 14 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-class-component/dist/vue-class-component.esm.js
+<s> [webpack.Progress] 68% building 596/609 modules 13 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-class-component/dist/vue-class-component.esm.js
+<s> [webpack.Progress] 68% building 597/609 modules 12 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-class-component/dist/vue-class-component.esm.js
+<s> [webpack.Progress] 68% building 598/609 modules 11 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/SidePanel.vue?vue&type=style&index=0&id=ac5a918e&lang=scss&scoped=true&
+<s> [webpack.Progress] 68% building 598/610 modules 12 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/string-repeat.js
+<s> [webpack.Progress] 68% building 598/611 modules 13 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/ModalCard.vue
+<s> [webpack.Progress] 68% building 598/612 modules 14 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/file-loader/dist/cjs.js??ref--3-0!/home/ptcherniati/depots/si-ore-v2/ui/src/assets/logo-inrae_blanc.svg
+<s> [webpack.Progress] 68% building 598/613 modules 15 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/file-loader/dist/cjs.js??ref--3-0!/home/ptcherniati/depots/si-ore-v2/ui/src/assets/Logo-INRAE.svg
+<s> [webpack.Progress] 68% building 598/614 modules 16 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/file-loader/dist/cjs.js??ref--3-0!/home/ptcherniati/depots/si-ore-v2/ui/src/assets/Rep-FR-logo.svg
+<s> [webpack.Progress] 68% building 598/615 modules 17 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/url-loader/dist/cjs.js??ref--2-0!/home/ptcherniati/depots/si-ore-v2/ui/src/assets/logo-AnaEE-france.png
+<s> [webpack.Progress] 68% building 598/616 modules 18 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/internal-metadata.js
+<s> [webpack.Progress] 68% building 599/616 modules 17 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/internal-metadata.js
+<s> [webpack.Progress] 68% building 600/616 modules 16 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/internal-metadata.js
+<s> [webpack.Progress] 68% building 601/616 modules 15 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/internal-metadata.js
+<s> [webpack.Progress] 68% building 602/616 modules 14 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/internal-metadata.js
+<s> [webpack.Progress] 68% building 603/616 modules 13 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/internal-metadata.js
+<s> [webpack.Progress] 68% building 604/616 modules 12 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/internal-metadata.js
+<s> [webpack.Progress] 68% building 605/616 modules 11 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/internal-metadata.js
+<s> [webpack.Progress] 69% building 606/616 modules 10 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/internal-metadata.js
+<s> [webpack.Progress] 69% building 607/616 modules 9 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/internal-metadata.js
+<s> [webpack.Progress] 69% building 608/616 modules 8 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/internal-metadata.js
+<s> [webpack.Progress] 69% building 609/616 modules 7 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/common/SidePanel.vue?vue&type=style&index=0&id=ac5a918e&lang=scss&scoped=true&
+<s> [webpack.Progress] 69% building 610/616 modules 6 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/DetailModalCard.vue?vue&type=style&index=0&id=168e5d42&lang=scss&scoped=true&
+<s> [webpack.Progress] 69% building 611/616 modules 5 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/DetailModalCard.vue?vue&type=style&index=0&id=168e5d42&lang=scss&scoped=true&
+<s> [webpack.Progress] 69% building 611/617 modules 6 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/ModalCard.vue?vue&type=template&id=72416eda&scoped=true&
+<s> [webpack.Progress] 69% building 612/617 modules 5 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/DetailModalCard.vue?vue&type=style&index=0&id=168e5d42&lang=scss&scoped=true&
+<s> [webpack.Progress] 69% building 612/618 modules 6 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/ModalCard.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 69% building 613/618 modules 5 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/DetailModalCard.vue?vue&type=style&index=0&id=168e5d42&lang=scss&scoped=true&
+<s> [webpack.Progress] 69% building 613/619 modules 6 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/eslint-loader/index.js??ref--14-0!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/ModalCard.vue?vue&type=style&index=0&id=72416eda&lang=scss&scoped=true&
+<s> [webpack.Progress] 69% building 614/619 modules 5 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/DetailModalCard.vue?vue&type=style&index=0&id=168e5d42&lang=scss&scoped=true&
+<s> [webpack.Progress] 69% building 614/620 modules 6 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--13-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/babel-loader/lib/index.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/ModalCard.vue?vue&type=script&lang=js&
+<s> [webpack.Progress] 69% building 614/621 modules 7 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/ModalCard.vue?vue&type=template&id=72416eda&scoped=true&
+<s> [webpack.Progress] 69% building 614/622 modules 8 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-style-loader/index.js??ref--9-oneOf-1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/ModalCard.vue?vue&type=style&index=0&id=72416eda&lang=scss&scoped=true&
+<s> [webpack.Progress] 69% building 615/622 modules 7 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"33ac1da8-vue-loader-template"}!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/ModalCard.vue?vue&type=template&id=72416eda&scoped=true&
+<s> [webpack.Progress] 69% building 615/623 modules 8 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/ModalCard.vue?vue&type=style&index=0&id=72416eda&lang=scss&scoped=true&
+<s> [webpack.Progress] 69% building 616/623 modules 7 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/ModalCard.vue?vue&type=style&index=0&id=72416eda&lang=scss&scoped=true&
+<s> [webpack.Progress] 69% building 617/623 modules 6 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/ModalCard.vue?vue&type=style&index=0&id=72416eda&lang=scss&scoped=true&
+<s> [webpack.Progress] 69% building 618/623 modules 5 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/ModalCard.vue?vue&type=style&index=0&id=72416eda&lang=scss&scoped=true&
+<s> [webpack.Progress] 69% building 619/623 modules 4 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/ModalCard.vue?vue&type=style&index=0&id=72416eda&lang=scss&scoped=true&
+<s> [webpack.Progress] 69% building 620/623 modules 3 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/cache-loader/dist/cjs.js??ref--1-0!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/vue-loader/lib/index.js??vue-loader-options!/home/ptcherniati/depots/si-ore-v2/ui/src/components/charts/ModalCard.vue?vue&type=style&index=0&id=72416eda&lang=scss&scoped=true&
+<s> [webpack.Progress] 69% building 620/624 modules 4 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/object-is-extensible.js
+<s> [webpack.Progress] 69% building 620/625 modules 5 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/freezing.js
+<s> [webpack.Progress] 69% building 621/625 modules 4 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/freezing.js
+<s> [webpack.Progress] 69% building 622/625 modules 3 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/freezing.js
+<s> [webpack.Progress] 69% building 623/625 modules 2 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/core-js/internals/freezing.js
+<s> [webpack.Progress] 69% building 624/625 modules 1 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/css-loader/dist/cjs.js??ref--9-oneOf-3-1!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/postcss-loader/src/index.js??ref--9-oneOf-3-2!/home/ptcherniati/depots/si-ore-v2/ui/node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-3-3!/home/ptcherniati/depots/si-ore-v2/ui/src/style/global.scss
+<s> [webpack.Progress] 69% building 624/626 modules 2 active /home/ptcherniati/depots/si-ore-v2/ui/node_modules/vuedraggable/node_<s> [webpack.Progress] 70% building 627/627 modules 0 active 
+<s> [webpack.Progress] 70% building 627/627 modules 0 active 
+<s> [webpack.Progress] 70% finish module graph
+<s> [webpack.Progress] 70% finish module graph FlagDependencyExportsPlugin
+<s> [webpack.Progress] 70% sealing
+<s> [webpack.Progress] 70% sealing WarnCaseSensitiveModulesPlugin
+<s> [webpack.Progress] 72% basic dependencies optimization
+<s> [webpack.Progress] 72% dependencies optimization
+<s> [webpack.Progress] 73% advanced dependencies optimization
+<s> [webpack.Progress] 73% after dependencies optimization
+<s> [webpack.Progress] 71% chunk graph
+<s> [webpack.Progress] 71% after chunk graph
+<s> [webpack.Progress] 71% after chunk graph WebAssemblyModulesPlugin
+<s> [webpack.Progress] 74% optimizing
+<s> [web<s> [webpack.Progress] 70% building 627/627 modules 0 active 
+<s> [webpack.Progress] 70% building 627/627 modules 0 active 
+<s> [webpack.Progress] 70% finish module graph
+<s> [webpack.Progress] 70% finish module graph FlagDependencyExportsPlugin
+<s> [webpack.Progress] 70% sealing
+<s> [webpack.Progress] 70% sealing WarnCaseSensitiveModulesPlugin
+<s> [webpack.Progress] 72% basic dependencies optimization
+<s> [webpack.Progress] 72% dependencies optimization
+<s> [webpack.Progress] 73% advanced dependencies optimization
+<s> [webpack.Progress] 73% after dependencies optimization
+<s> [webpack.Progress] 71% chunk graph
+<s> [webpack.Progress] 71% after chunk graph
+<s> [webpack.Progress] 71% after chunk graph WebAssemblyModulesPlugin
+<s> [webpack.Progress] 74% optimizing
+<s> [webpack.Progress] 74% basic module optimization
+<s> [webpack.Progress] 75% module optimization
+<s> [webpack.Progress] 75% advanced module optimization
+<s> [webpack.Progress] 76% after module optimization
+<s> [webpack.Progress] 76% basic chunk optimization
+<s> [webpack.Progress] 76% basic chunk optimization EnsureChunkConditionsPlugin
+<s> [webpack.Progress] 76% basic chunk optimization RemoveEmptyChunksPlugin
+<s> [webpack.Progress] 76% basic chunk optimization MergeDuplicateChunksPlugin
+<s> [webpack.Progress] 77% chunk optimization
+<s> [webpack.Progress] 77% advanced chunk optimization
+<s> [webpack.Progress] 77% advanced chunk optimization SplitChunksPlugin
+<s> [webpack.Progress] 77% advanced chunk optimization RemoveEmptyChunksPlugin
+<s> [webpack.Progress] 77% after chunk optimization
+<s> [webpack.Progress] 78% module and chunk tree optimization
+<s> [webpack.Progress] 78% after module and chunk tree optimization
+<s> [webpack.Progress] 79% basic chunk modules optimization
+<s> [webpack.Progress] 80% chunk modules optimization
+<s> [webpack.Progress] 80% advanced chunk modules optimization
+<s> [webpack.Progress] 81% after chunk modules optimization
+<s> [webpack.Progress] 81% module reviving
+<s> [webpack.Progress] 81% module reviving RecordIdsPlugin
+<s> [webpack.Progress] 82% module order optimization
+<s> [webpack.Progress] 82% advanced module order optimization
+<s> [webpack.Progress] 83% before module ids
+<s> [webpack.Progress] 83% before module ids NamedModulesPlugin
+<s> [webpack.Progress] 83% module ids
+<s> [webpack.Progress] 84% module id optimization
+<s> [webpack.Progress] 84% module id optimization
+<s> [webpack.Progress] 85% chunk reviving
+<s> [webpack.Progress] 85% chunk reviving RecordIdsPlugin
+<s> [webpack.Progress] 85% chunk order optimization
+<s> [webpack.Progress] 85% chunk order optimization OccurrenceOrderChunkIdsPlugin
+<s> [webpack.Progress] 86% before chunk ids
+<s> [webpack.Progress] 86% before chunk ids NamedChunksPlugin
+<s> [webpack.Progress] 86% chunk id optimization
+<s> [webpack.Progress] 87% after chunk id optimization
+<s> [webpack.Progress] 87% record modules
+<s> [webpack.Progress] 87% record modules RecordIdsPlugin
+<s> [webpack.Progress] 87% record chunks
+<s> [webpack.Progress] 87% record chunks RecordIdsPlugin
+<s> [webpack.Progress] 88% hashing
+<s> [webpack.Progress] 88% after hashing
+<s> [webpack.Progress] 88% after hashing HotModuleReplacementPlugin
+<s> [webpack.Progress] 89% record hash
+<s> [webpack.Progress] 89% module assets processing
+<s> [webpack.Progress] 90% chunk assets processing
+<s> [webpack.Progress] 90% additional chunk assets processing
+<s> [webpack.Progress] 90% additional chunk assets processing HotModuleReplacementPlugin
+<s> [webpack.Progress] 91% recording
+<s> [webpack.Progress] 91% recording HotModuleReplacementPlugin
+<s> [webpack.Progress] 92% additional asset processing
+<s> [webpack.Progress] 92% chunk asset optimization
+<s> [webpack.Progress] 93% after chunk asset optimization
+<s> [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin
+<s> [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin
+<s> [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin js/app.js generate SourceMap
+<s> [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin js/chunk-vendors.js generate SourceMap
+<s> [webpack.Progress]<s> [webpack.Progress] 0% compiling
+<s> [webpack.Progress] 10% building 0/0 modules 0 active 
+<s> [webpack.Progress] 10% building 0/0 modules 0 active 
+<s> [webpack.Progress] 40% building 0/0 modules 0 active 
+<s> [webpack.Progress] 70% building 0/0 modules 0 active 
+<s> [webpack.Progress] 70% finish module graph
+<s> [webpack.Progress] 70% finish module graph FlagDependencyExportsPlugin
+<s> [webpack.Progress] 70% sealing
+<s> [webpack.Progress] 70% sealing WarnCaseSensitiveModulesPlugin
+<s> [webpack.Progress] 72% basic dependencies optimization
+<s> [webpack.Progress] 72% dependencies optimization
+<s> [webpack.Progress] 73% advanced dependencies optimization
+<s> [webpack.Progress] 73% after dependencies optimization
+<s> [webpack.Progress] 71% chunk graph
+<s> [webpack.Progress] 71% after chunk graph
+<s> [webpack.Progress] 71% after chunk graph WebAssemblyModulesPlugin
+<s> [webpack.Progress] 74% optimizing
+<s> [webpack.Progress] 74% basic module optimization
+<s> [webpack.Progress] 75% module optimization
+<s> [webpack.Progress] 75% advanced module optimization
+<s> [webpack.Progress] 76% after module optimization
+<s> [webpack.Progress] 76% basic chunk optimi<s> [webpack.Progress] 70% sealing
+<s> [webpack.Progress] 70% sealing WarnCaseSensitiveModulesPlugin
+<s> [webpack.Progress] 72% basic dependencies optimization
+<s> [webpack.Progress] 72% dependencies optimization
+<s> [webpack.Progress] 73% advanced dependencies optimization
+<s> [webpack.Progress] 73% after dependencies optimization
+<s> [webpack.Progress] 71% chunk graph
+<s> [webpack.Progress] 71% after chunk graph
+<s> [webpack.Progress] 71% after chunk graph WebAssemblyModulesPlugin
+<s> [webpack.Progress] 74% optimizing
+<s> [webpack.Progress] 74% basic module optimization
+<s> [webpack.Progress] 75% module optimization
+<s> [webpack.Progress] 75% advanced module optimization
+<s> [webpack.Progress] 76% after module optimization
+<s> [webpack.Progress] 76% basic chunk optimization
+<s> [webpack.Progress] 76% basic chunk optimization EnsureChunkConditionsPlugin
+<s> [webpack.Progress] 76% basic chunk optimization RemoveEmptyChunksPlugin
+<s> [webpack.Progress] 76% basic chunk optimization MergeDuplicateChunksPlugin
+<s> [webpack.Progress] 77% chunk optimization
+<s> [webpack.Progress] 77% advanced chunk optimization
+<s> [webpack.Progress] 77% advanced chunk optimization SplitChunksPlugin
+<s> [webpack.Progress] 77% advanced chunk optimization RemoveEmptyChunksPlugin
+<s> [webpack.Progress] 77% after chunk optimization
+<s> [webpack.Progress] 78% module and chunk tree optimization
+<s> [webpack.Progress] 78% after module and chunk tree optimization
+<s> [webpack.Progress] 79% basic chunk modules optimization
+<s> [webpack.Progress] 80% chunk modules optimization
+<s> [webpack.Progress] 80% advanced chunk modules optimization
+<s> [webpack.Progress] 81% after chunk modules optimization
+<s> [webpack.Progress] 81% module reviving
+<s> [webpack.Progress] 81% module reviving RecordIdsPlugin
+<s> [webpack.Progress] 82% module order optimization
+<s> [webpack.Progress] 82% advanced module order optimization
+<s> [webpack.Progress] 83% before module ids
+<s> [webpack.Progress] 83% before module ids NamedModulesPlugin
+<s> [webpack.Progress] 83% module i<s> [webpack.Progress] 88% after hashing
+<s> [webpack.Progress] 88% after hashing HotModuleReplacementPlugin
+<s> [webpack.Progress] 89% record hash
+<s> [webpack.Progress] 89% module assets processing
+<s> [webpack.Progress] 90% chunk assets processing
+<s> [webpack.Progress] 90% additional chunk assets processing
+<s> [webpack.Progress] 90% additional chunk assets processing HotModuleReplacementPlugin
+<s> [webpack.Progress] 91% recording
+<s> [webpack.Progress] 91% recording HotModuleReplacementPlugin
+<s> [webpack.Progress] 92% additional asset processing
+<s> [webpack.Progress] 92% chunk asset optimization
+<s> [webpack.Progress] 93% after chunk asset optimization
+<s> [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin
+<s> [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin
+<s> [webpack.Progress] 93% after chunk asset optimization S<s> [webpack.Progress] 89% record hash
+<s> [webpack<s> [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin resolve sources
+<s> [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin js/app.js attach SourceMap
+<s> [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin
+<s> [webpack.Progress] 93% asset optimization
+<s> [webpack.Progress] 94% after asset optimization
+<s> [webpack.Progress] 94% after seal
+<s> [webpack.Progress] 95% emitting
+<s> [webpack.Progress] 95% emitting HtmlWebpackPlugin
+<s> [webpack.Progress] 95% emitting CopyPlugin
+<s> [webpack.Progress] 98% after emitting
+<s> [webpack.Progress] 98% after emitting CopyPlugin
+<s> [webpack.Progress] 100% 
+
+rogress] 93% after chunk asset optimization SourceMapDevToolPlugin js/app.js generate SourceMap
+<s> [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin resolve sources
+<s> [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin js/app.js attach SourceMap
+<s> [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin
+<s> [webpack.Progress] 93% asset optimization
+<s> [webpack.Progress] 94% after asset optimization
+<s> [webpack.Progress] 94% after seal
+<s> [webpack.Progress] 95% emitting
+<s> [webpack.Progress] 95% emitting HtmlWebpackPlugin
+<s> [webpack.Progress] 95% emitting CopyPlugin
+<s> [webpack.Progress] 98% after emitting
+<s> [webpack.Progress] 98% after emitting CopyPlugin
+<s> [webpack.Progress] 100% 
+
+ compiling
+<s> [webpack.Progress] NaN% building 0/0 modules 0 active 
+<s> [webpack.Progress] NaN% building 0/0 modules 0 active 
+<s> [webpack.Progress] NaN% building 0/0 modules 0 active 
+<s> [webpack.Progress] NaN% building 0/0 modules 0 active 
+<s> [webpack.Progress] 70% finish module graph
+<s> [webpack.Progress] 70% finish module graph FlagDependencyExportsPlugin
+<s> [webpack.Progress] 70% sealing
+<s> [webpack.Progress] 70% sealing WarnCaseSensitiveModulesPlugin
+<s> [webpack.Progress] 72% basic dependencies optimization
+<s> [webpack.Progress] 72% dependencies optimization
+<s> [webpack.Progress] 73% advanced dependencies optimization
+<s> [webpack.Progress] 73% after dependencies optimization
+<s> [webpack.Progress] 71% chunk graph
+<s> [webpack.Progress] 71% after chunk graph
+<s> [webpack.Progress] 71% after chunk graph WebAssemblyModulesPlugin
+<s> [webpack.Progress] 74% optimizing
+<s> [webpack.Progress] 74% basic module optimization
+<s> [webpack.Progress] 75% module optimization
+<s> [webpack.Progress] 75% advanced module optimization
+<s> [webpack.Progress] 76% after module optimization
+<s> [webpack.Progress] 76% basic chunk optimization
+<s> [webpack.Progress] 76% basic chunk optimization EnsureChunkConditionsPlugin
+<s> [webpack.Progress] 76% basic chunk optimization RemoveEmptyChunksPlugin
+<s> [webpack.Progress] 76% basic chunk optimization MergeDuplicateChunksPlugin
+<s> [webpack.Progress] 77% chunk optimization
+<s> [webpack.Progress] 77% advanced chunk optimization
+<s> [webpack.Progress] 77% advanced chunk optimization SplitChunksPlugin
+<s> [webpack.Progress] 77% advanced chunk optimization RemoveEmptyChunksPlugin
+<s> [webpack.Progress] 77% after chunk optimization
+<s> [webpack.Progress] 78% module and chunk tree optimization
+<s> [webpack.Progress] 78% after module and chunk tree optimization
+<s> [webpack.Progress] 79% basic chunk modules optimization
+<s> [webpack.Progress] 80% chunk modules optimization
+<s> [webpack.Progress] 80% advanced chunk modules optimization
+<s> [webpack.Progress] 81% after chunk modules optimization
+<s> [webpack.Progress] 81% module reviving
+<s> [webpack.Progress] 81% module reviving RecordIdsPlugin
+<s> [webpack.Progress] 82% module order optimization
+<s> [webpack.Progress] 82% advanced module order optimization
+<s> [webpack.Progress] 83% before module ids
+<s> [webpack.Progress] 83% before module ids NamedModulesPlugin
+<s> [webpack.Progress] 83% module ids
+<s> [webpack.Progress] 84% module id optimization
+<s> [webpack.Progress] 84% module id optimization
+<s> [webpack.Progress] 85% chunk reviving
+<s> [webpack.Progress] 85% chunk reviving RecordIdsPlugin
+<s> [webpack.Progress] 85% chunk order optimization
+<s> [webpack.Progress] 85% chunk order optimization OccurrenceOrderChunkIdsPlugin
+<s> [webpack.Progress] 86% before chunk ids
+<s> [webpack.Progress] 86% before chunk ids NamedChunksPlugin
+<s> [webpack.Progress] 86% chunk id optimization
+<s> [webpack.Progress] 87% after chunk id optimization
+<s> [webpack.Progress] 87% record modules
+<s> [webpack.Progress] 87% record modules RecordIdsPlugin
+<s> [webpack.Progress] 87% record chunks
+<s> [webpack.Progress] 87% record chunks RecordIdsPlugin
+<s> [webpack.Progress] 88% hashing
+<s> [webpack.Progress] 88% after hashing
+<s> [webpack.Progress] 88% after hashing HotModuleReplacementPlugin
+<s> [webpack.Progress] 89% record hash
+<s> [webpack.Progress] 89% module assets processing
+<s> [webpack.Progress] 90% chunk assets processing
+<s> [webpack.Progress] 90% additional chunk assets processing
+<s> [webpack.Progress] 90% additional chunk assets processing HotModuleReplacementPlugin
+<s> [webpack.Progress] 91% recording
+<s> [webpack.Progress] 91% recording HotModuleReplacementPlugin
+<s> [webpack.Progress] 92% additional asset processing
+<s> [webpack.Progress] 92% chunk asset optimization
+<s> [webpack.Progress] 93% after chunk asset optimization
+<s> [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin
+<s> [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin
+<s> [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin js/app.js generate SourceMap
+<s> [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin resolve sources
+<s> [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin js/app.js attach SourceMap
+<s> [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin
+<s> [webpack.Progress] 93% asset optimization
+<s> [webpack.Progress] 94% after asset optimization
+<s> [webpack.Progress] 94% after seal
+<s> [webpack.Progress] 95% emitting
+<s> [webpack.Progress] 95% emitting HtmlWebpackPlugin
+<s> [webpack.Progress] 95% emitting CopyPlugin
+<s> [webpack.Progress] 98% after emitting
+<s> [webpack.Progress] 98% after emitting CopyPlugin
+<s> [webpack.Progress] 100% 
+
+
+<s> [webpack.Progress] 82% module order optimization
+<s> [webpack.Progress] 82% advanced module order optimization
+<s> [webpack.Progress] 83% before module ids
+<s> [webpack.Progress] 83% before module ids NamedModulesPlugin
+<s> [webpack.Progress] 83% module ids
+<s> [webpack.Progress] 84% module id optimization
+<s> [webpack.Progress] 84% module id optimization
+<s> [webpack.Progress] 85% chunk reviving
+<s> [webpack.Progress] 85% chunk reviving RecordIdsPlugin
+<s> [webpack.Progress] 85% chunk order optimization
+<s> [webpack.Progress] 85% chunk order optimization OccurrenceOrderChunkIdsPlugin
+<s> [webpack.Progress] 86% before chunk ids
+<s> [webpack.Progress] 86% before chunk ids NamedChunksPlugin
+<s> [webpack.Progress] 86% chunk id optimization
+<s> [webpack.Progress] 87% after chunk id optimization
+<s> [webpack.Progress] 87% record modules
+<s> [webpack.Progress] 87% record modules RecordIdsPlugin
+<s> [webpack.Progress] 87% record chunks
+<s> [webpack.Progress] 87% record chunks RecordIdsPlugin
+<s> [webpack.Progress] 88% hashing
+<s> [webpack.Progress] 88% after hashing
+<s> [webpack.Progress] 88% after hashing HotModuleReplacementPlugin
+<s> [webpack.Progress] 89% record hash
+<s> [webpack.Progress] 89% module assets processing
+<s> [webpack.Progress] 90% chunk assets processing
+<s> [webpack.Progress] 90% additional chunk assets processing
+<s> [webpack.Progress] 90% additional chunk assets processing HotModuleReplacementPlugin
+<s> [webpack.Progress] 91% recording
+<s> [webpack.Progress] 91% recording HotModuleReplacementPlugin
+<s> [webpack.Progress] 92% additional asset processing
+<s> [webpack.Progress] 92% chunk asset optimization
+<s> [webpack.Progress] 93% after chunk asset optimization
+<s> [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin
+<s> [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin
+<s> [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin js/app.js generate SourceMap
+<s> [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin resolve sources
+<s> [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin js/app.js attach SourceMap
+<s> [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin
+<s> [webpack.Progress] 93% asset optimization
+<s> [webpack.Progress] 94% after asset optimization
+<s> [webpack.Progress] 94% after seal
+<s> [webpack.Progress] 95% emitting
+<s> [webpack.Progress] 95% emitting HtmlWebpackPlugin
+<s> [webpack.Progress] 95% emitting CopyPlugin
+<s> [webpack.Progress] 98% after emitting
+<s> [webpack.Progress] 98% after emitting CopyPlugin
+<s> [webpack.Progress] 100% 
+
diff --git a/ui/src/components/common/AuthorizationTable.vue b/ui/src/components/common/AuthorizationTable.vue
index d76894b19feb75c70b21b197e4f8c1446deb9571..b21ef28e222e4989fafcb8ab67549bc45b7bde42 100644
--- a/ui/src/components/common/AuthorizationTable.vue
+++ b/ui/src/components/common/AuthorizationTable.vue
@@ -54,7 +54,7 @@
             <b-field
               v-else-if="column.display && indexColumn === 'extraction'"
               :field="indexColumn"
-              class="columns "
+              class="columns"
               style="margin-top: 6px"
             >
               <div class="column">
@@ -67,15 +67,17 @@
                   type="is-primary"
                   @click.native="selectCheckbox($event, index, indexColumn, scope)"
                 />
-                <div class="columns"
-                     v-if="
-                      states &&
-                      states[indexColumn] &&
-                      states[indexColumn][index] === 1 &&
-                      localAuthorizationsTree &&
-                      localAuthorizationsTree[indexColumn] &&
-                      localAuthorizationsTree[indexColumn][index]
-                ">
+                <div
+                  class="columns"
+                  v-if="
+                    states &&
+                    states[indexColumn] &&
+                    states[indexColumn][index] === 1 &&
+                    localAuthorizationsTree &&
+                    localAuthorizationsTree[indexColumn] &&
+                    localAuthorizationsTree[indexColumn][index]
+                  "
+                >
                   <b-taginput
                     v-model="localAuthorizationsTree[indexColumn][index].dataGroups"
                     :data="dataGroups"
@@ -104,7 +106,7 @@
                     >
                     </b-datepicker>
                   </div>
-                  <div class="column" >
+                  <div class="column">
                     <b-datepicker
                       v-model="localAuthorizationsTree[indexColumn][index].to"
                       :date-parser="parseDate"
@@ -644,7 +646,7 @@ p {
 ::marker {
   color: transparent;
 }
-.column{
+.column {
   padding: 6px;
 }
-</style>
\ No newline at end of file
+</style>
diff --git a/ui/src/components/common/CollapsibleTree.vue b/ui/src/components/common/CollapsibleTree.vue
index b3c412d114654eaf4b3e44bfdded0e45bee4e88b..5cc4f86f0fda10090fd32c4cfe3aa99c836a9f0a 100644
--- a/ui/src/components/common/CollapsibleTree.vue
+++ b/ui/src/components/common/CollapsibleTree.vue
@@ -136,7 +136,7 @@
       :radioName="radioName"
       @optionChecked="onInnerOptionChecked"
       :applicationTitle="applicationTitle"
-      :lineCount = child.lineCountChild
+      :lineCount="child.lineCountChild"
     />
   </div>
 </template>
diff --git a/ui/src/components/datatype/DataTypeDetailsPanel.vue b/ui/src/components/datatype/DataTypeDetailsPanel.vue
index 91654986dd8a93976599fe10b3f801697f6c86ad..9689a0631eb382943bcf72a8e36593412390af74 100644
--- a/ui/src/components/datatype/DataTypeDetailsPanel.vue
+++ b/ui/src/components/datatype/DataTypeDetailsPanel.vue
@@ -44,4 +44,4 @@ export default class DataTypeDetailsPanel extends Vue {
     margin-bottom: 0.5rem;
   }
 }
-</style>
\ No newline at end of file
+</style>
diff --git a/ui/src/locales/en.json b/ui/src/locales/en.json
index 7cad9f0b9741f7c35e34a07b0e8ef58cc5585852..d18e367d328d5eb42af5e5960aaaefd842a7831c 100644
--- a/ui/src/locales/en.json
+++ b/ui/src/locales/en.json
@@ -108,8 +108,8 @@
         "checkerExpressionReturnedFalse": "The following constraint is not respected: <code> {expression} </code>",
         "csvBoundToUnknownVariable": "In the CSV format, header <code>{header}</code> is bound to unknown variable <code>{variable}</code>. Known variables: <code>{variables}</code>",
         "csvBoundToUnknownVariableComponent": "In the CSV format, header <code>{header}</code> is bound to <code>{variable}</code> but it has no <code>{component}</code> component. Known components: <code>{components}</code>",
-        "duplicateLineInDatatype": "In data file {file}, line {lineNumber} has the same identifier {duplicateKey} as lines {otherLines}",
-        "duplicateLineInReference": "In the repository file {file}, line {lineNumber} has the same id {duplicateKey} as lines {otherLines}",
+        "duplicatedLineInDatatype": "In data file {file}, line {lineNumber} has the same identifier {duplicateKey} as lines {otherLines}",
+        "duplicatedLineInReference": "In the repository file {file}, line {lineNumber} has the same id {duplicateKey} as lines {otherLines}",
         "duplicatedHeaders": "These headers are duplicated : <code>{duplicatedHeaders}</code>",
         "emptyFile": "File is empty",
         "emptyHeader": "The file contains a column with an empty header",
diff --git a/ui/src/locales/fr.json b/ui/src/locales/fr.json
index 29a2aa01e96371b1ee4b0e52e9bb5520e5bdde1f..468114888aaf53048b28b6ad8e9e0341d73a2ce8 100644
--- a/ui/src/locales/fr.json
+++ b/ui/src/locales/fr.json
@@ -297,6 +297,7 @@
         "arrow-right": "->",
         "arrow-left": "<-",
         "slash": "/",
-        "regEx": ".*"
+        "regEx": ".*",
+        "star": "*"
     }
 }
\ No newline at end of file
diff --git a/ui/src/main.js b/ui/src/main.js
index 5ac942815fe01d89f48635e4588532e38271b1f9..5677dd996870ba6d0175a07f053cf7f21bdfd36c 100644
--- a/ui/src/main.js
+++ b/ui/src/main.js
@@ -186,4 +186,4 @@ const app = new Vue({
   i18n,
   render: (h) => h(App),
 }).$mount("#app");
-export default app;
\ No newline at end of file
+export default app;
diff --git a/ui/src/router/index.js b/ui/src/router/index.js
index 8d428d29654154ae43ba374423acf2ed0a95271e..aa6af9daca1a6ee777ea3b7248c07bb7e7cb1878 100644
--- a/ui/src/router/index.js
+++ b/ui/src/router/index.js
@@ -83,4 +83,4 @@ const router = new VueRouter({
   routes,
 });
 
-export default router;
\ No newline at end of file
+export default router;
diff --git a/ui/src/services/ErrorsService.js b/ui/src/services/ErrorsService.js
index fb110b1d265ecb82645dbdc5d887f15c61c04508..2bb22322e71d33e4ed8b7c568768863a343a374a 100644
--- a/ui/src/services/ErrorsService.js
+++ b/ui/src/services/ErrorsService.js
@@ -13,8 +13,8 @@ const ERRORS = {
   checkerExpressionReturnedFalse: (params) => i18n.t("errors.checkerExpressionReturnedFalse", params),
   csvBoundToUnknownVariable: (params) => i18n.t("errors.csvBoundToUnknownVariable", params),
   csvBoundToUnknownVariableComponent: (params) => i18n.t("errors.csvBoundToUnknownVariableComponent", params),
-  duplicateLineInDatatype: (params) => i18n.t("errors.duplicateLineInDatatype", params),
-  duplicateLineInReference: (params) => i18n.t("errors.duplicateLineInReference", params),
+  duplicateLineInDatatype: (params) => i18n.t("errors.duplicatedLineInDatatype", params),
+  duplicateLineInReference: (params) => i18n.t("errors.duplicatedLineInReference", params),
   duplicatedHeaders: (params) => i18n.t("errors.duplicatedHeaders", params),
   emptyFile: (params) => i18n.t("errors.emptyFile", params),
   emptyHeader: (params) => i18n.t("errors.emptyHeader", params),
diff --git a/ui/src/services/Fetcher.js b/ui/src/services/Fetcher.js
index 296f1c9fddccb9b7b59cd127a28f23f7a4db026d..be5efae5c6fde08d3ab5b2c50aedcd9e9938340a 100644
--- a/ui/src/services/Fetcher.js
+++ b/ui/src/services/Fetcher.js
@@ -93,7 +93,8 @@ export class Fetcher {
 
   async _handleResponse(response, isText) {
     try {
-      const text = isText ? response.text() : response.json();
+      const text =
+        isText || response.status == HttpStatusCodes.FORBIDDEN ? response.text() : response.json();
       if (response.ok && response.status !== HttpStatusCodes.NO_CONTENT) {
         return Promise.resolve(text);
       }
diff --git a/ui/src/services/InternationalisationService.js b/ui/src/services/InternationalisationService.js
index 16274df271d8523df303a0469ce434ed9b20450c..80cd93d73766c90e81467c01093beb5bff8336c9 100644
--- a/ui/src/services/InternationalisationService.js
+++ b/ui/src/services/InternationalisationService.js
@@ -96,13 +96,13 @@ export class InternationalisationService extends Fetcher {
     if (application.internationalization != null) {
       let applicationDataTypes = application.internationalization.dataTypes;
       for (let applicationDataType in applicationDataTypes) {
-            localStorage.getItem(LOCAL_STORAGE_LANG)
+        localStorage.getItem(LOCAL_STORAGE_LANG);
         application.dataTypes[applicationDataType] = {
           ...application.dataTypes[applicationDataType],
           localName:
             applicationDataTypes[applicationDataType].internationalizationName?.[
               localStorage.getItem(LOCAL_STORAGE_LANG)
-            ]||applicationDataType,
+            ] || applicationDataType,
         };
       }
     } else {
@@ -159,4 +159,4 @@ export class InternationalisationService extends Fetcher {
     }
     return refs.references;
   }
-}
\ No newline at end of file
+}
diff --git a/ui/src/views/application/ApplicationCreationView.vue b/ui/src/views/application/ApplicationCreationView.vue
index cebd2fc1d0615497f3c6407ae45eb29f95cb2f56..e7b153626df652f8365e7159080a0d9f77d216b8 100644
--- a/ui/src/views/application/ApplicationCreationView.vue
+++ b/ui/src/views/application/ApplicationCreationView.vue
@@ -43,12 +43,7 @@
               </b-button>
             </div>
             <div class="column is-4">
-              <b-tag
-                v-if="btnUpdateConfig"
-                type="is-warning"
-                size="is-large"
-                style="margin: 5px"
-              >
+              <b-tag v-if="btnUpdateConfig" type="is-warning" size="is-large" style="margin: 5px">
                 {{ $t("applications.app_version") }}{{ applicationConfig.version }}
               </b-tag>
             </div>
@@ -116,8 +111,15 @@
               :aria-close-label="$t('message.close')"
               class="mt-4"
             >
-              <span v-if="msg.mess" v-html="msg.mess" class="columns" style="margin: 10px; font-weight: bold"/>
-              <span v-if="msg.param" class="columns" style="margin: 0;"><p style=" width: 1650px">{{ msg.param }}</p></span>
+              <span
+                v-if="msg.mess"
+                v-html="msg.mess"
+                class="columns"
+                style="margin: 10px; font-weight: bold"
+              />
+              <span v-if="msg.param" class="columns" style="margin: 0"
+                ><p style="width: 1650px">{{ msg.param }}</p></span
+              >
               <span v-else v-html="msg" />
             </b-message>
           </div>
@@ -189,14 +191,21 @@ export default class ApplicationCreationView extends Vue {
         }
         this.alertService.toastSuccess(this.$t("alert.application-validate-success"));
       } else {
-        for(let i =0; i<response.validationCheckResults.length; i++) {
-          if (this.errorsService.getErrorsMessages(response.validationCheckResults)[i] === this.$t("errors.expetion")) {
-            this.error[i] = {...this.error[i],
+        for (let i = 0; i < response.validationCheckResults.length; i++) {
+          if (
+            this.errorsService.getErrorsMessages(response.validationCheckResults)[i] ===
+            this.$t("errors.expetion")
+          ) {
+            this.error[i] = {
+              ...this.error[i],
               mess: this.errorsService.getErrorsMessages(response.validationCheckResults)[i],
-              param: response.validationCheckResults[i].message.toString().split()};
+              param: response.validationCheckResults[i].message.toString().split(),
+            };
             this.errorsMessages.push(this.error[i]);
           } else {
-            this.errorsMessages = this.errorsService.getErrorsMessages(response.validationCheckResults);
+            this.errorsMessages = this.errorsService.getErrorsMessages(
+              response.validationCheckResults
+            );
           }
         }
       }
diff --git a/ui/src/views/application/ApplicationsView.vue b/ui/src/views/application/ApplicationsView.vue
index f94e5187a9bfaf8c7d0671cb801dbfeef2e97f3a..eb04b23a8f6564b71f8cc9a33c044c2e6f095c7d 100644
--- a/ui/src/views/application/ApplicationsView.vue
+++ b/ui/src/views/application/ApplicationsView.vue
@@ -126,8 +126,7 @@
                       </div>
                       <div class="card-content">
                         <div class="content">
-                          <p
-                            v-html="
+                          <p v-html="
                               $t('applications.version', {
                                 applicationName: application.localName,
                                 version: application.configuration.application.version,
@@ -379,4 +378,4 @@ export default class ApplicationsView extends Vue {
   top: 5px;
   left: 5px;
 }
-</style>
+</style>
\ No newline at end of file
diff --git a/ui/src/views/authorizations/DataTypeAuthorizationInfoView.vue b/ui/src/views/authorizations/DataTypeAuthorizationInfoView.vue
index 0458c16c0cb6926dec6466c31864e4ed4b355d1e..256fbd16d00d0392e480831842c5da96db58cf1e 100644
--- a/ui/src/views/authorizations/DataTypeAuthorizationInfoView.vue
+++ b/ui/src/views/authorizations/DataTypeAuthorizationInfoView.vue
@@ -16,7 +16,13 @@
     </h1>
 
     <ValidationObserver ref="observer" v-slot="{ handleSubmit }">
-      <ValidationProvider v-slot="{ errors, valid }" name="users" rules="required" vid="users" class="columns">
+      <ValidationProvider
+        v-slot="{ errors, valid }"
+        name="users"
+        rules="required"
+        vid="users"
+        class="columns"
+      >
         <b-field
           :label="$t('dataTypeAuthorizations.users')"
           :message="errors[0]"
@@ -124,7 +130,7 @@ export default class DataTypeAuthorizationInfoView extends Vue {
   @Prop() applicationName;
   @Prop() authorizationId;
 
-  __DEFAULT__ = '__DEFAULT__';
+  __DEFAULT__ = "__DEFAULT__";
   referenceService = ReferenceService.INSTANCE;
   references = {};
   authorizationService = AuthorizationService.INSTANCE;
@@ -285,23 +291,23 @@ export default class DataTypeAuthorizationInfoView extends Vue {
         );
         remainingAuthorizations[key] = partition;
       }
-      if (!remainingAuthorizations.length){
+      if (!remainingAuthorizations.length) {
         remainingAuthorizations = [
           {
-            '__DEFAULT__' : {
-                  'authorizationScope': {
-                    id: '__DEFAULT__',
-                    localName: "root"
-                  },
-                  'completeLocalName': '__.__',
-                  'currentPath': '__.__',
-                  'isLeaf': true,
-                  'localName': '__.__fr',
-                  'reference': {},
-                  'referenceValues': {}
-                }
-          }
-        ]
+            __DEFAULT__: {
+              authorizationScope: {
+                id: "__DEFAULT__",
+                localName: "root",
+              },
+              completeLocalName: "__.__",
+              currentPath: "__.__",
+              isLeaf: true,
+              localName: "__.__fr",
+              reference: {},
+              referenceValues: {},
+            },
+          },
+        ];
       }
       this.authReferences = remainingAuthorizations;
     } catch (error) {
@@ -524,4 +530,4 @@ ul li.card-content {
 a {
   color: $dark;
 }
-</style>
\ No newline at end of file
+</style>
diff --git a/ui/src/views/common/MenuView.vue b/ui/src/views/common/MenuView.vue
index 500cb50bf5bf3e94c85d5bbd265e75061e533f02..a341304d4ec9dc40944713e08167efe5f062c753 100644
--- a/ui/src/views/common/MenuView.vue
+++ b/ui/src/views/common/MenuView.vue
@@ -195,4 +195,4 @@ export default class MenuView extends Vue {
     fill: white;
   }
 }
-</style>
\ No newline at end of file
+</style>
diff --git a/ui/src/views/datatype/DataTypeTableView.vue b/ui/src/views/datatype/DataTypeTableView.vue
index f9a46aa2d486745087271caa542bcb7dfb723d73..695617179098459334adf757f65f148301b371df 100644
--- a/ui/src/views/datatype/DataTypeTableView.vue
+++ b/ui/src/views/datatype/DataTypeTableView.vue
@@ -429,7 +429,7 @@
           type="is-primary"
           @click.prevent="downloadResultSearch"
           style="margin-bottom: 15px; float: right"
-          >Télécharger</b-button
+          >{{$t("referencesManagement.download")}}</b-button
         >
       </div>
     </div>
@@ -622,20 +622,21 @@ export default class DataTypeTableView extends Vue {
     const key = component.key;
     if (!this.loadedReferences[rowId]) {
       let refvalues;
-      if (this.referenceLineCheckers[key]){
-        refvalues = this.referenceLineCheckers[key].referenceValues.refValues.evaluationContext.datum
+      if (this.referenceLineCheckers[key]) {
+        refvalues =
+          this.referenceLineCheckers[key].referenceValues.refValues.evaluationContext.datum;
       }
-      if (!refvalues){
+      if (!refvalues) {
         let params = { _row_id_: [rowId] };
         if (!refType) {
           params.any = true;
         }
         const reference = await this.referenceService.getReferenceValues(
-            this.applicationName,
-            refType,
-            params
+          this.applicationName,
+          refType,
+          params
         );
-        refvalues = reference.referenceValues[0].values
+        refvalues = reference.referenceValues[0].values;
       }
       const data = Object.entries(refvalues)
         .map((entry) => ({ colonne: entry[0], valeur: entry[1] }))
@@ -777,24 +778,26 @@ export default class DataTypeTableView extends Vue {
     this.showFilter = false;
   }
 
-  async downloadResultSearch(){
+  async downloadResultSearch() {
     this.params.variableComponentFilters = [];
     for (var i = 0; i < this.variableSearch.length; i++) {
       if (this.variableSearch[i]) {
         this.params.variableComponentFilters.push(this.variableSearch[i]);
       }
     }
-    let param = {...this.params, offset: 0, limit: 42, dataType: this.dataTypeId, applicationNameOrId: this.applicationName}
-    let csv = await this.dataService.getDataTypesCsv(
-      this.applicationName,
-      this.dataTypeId,
-      param
-    );
-    var hiddenElement = document.createElement('a');
-    hiddenElement.href = 'data:text/csv;charset=utf-8,' + encodeURI(csv);
+    let param = {
+      ...this.params,
+      offset: 0,
+      limit: 42,
+      dataType: this.dataTypeId,
+      applicationNameOrId: this.applicationName,
+    };
+    let csv = await this.dataService.getDataTypesCsv(this.applicationName, this.dataTypeId, param);
+    var hiddenElement = document.createElement("a");
+    hiddenElement.href = "data:text/csv;charset=utf-8," + encodeURI(csv);
 
     //provide the name for the CSV file to be downloaded
-    hiddenElement.download = 'export.csv';
+    hiddenElement.download = "export.csv";
     hiddenElement.click();
     return false;
   }
@@ -815,10 +818,14 @@ export default class DataTypeTableView extends Vue {
   getDisplay(row, variable, component) {
     var key = variable + "_" + component;
     var value = row[variable][component];
-    var lang = '__display_'+localStorage.getItem('lang')
+    var lang = "__display_" + localStorage.getItem("lang");
     if (this.referenceLineCheckers[key]) {
-      if (this.referenceLineCheckers[key].referenceValues && this.referenceLineCheckers[key].referenceValues.refValues ) {
-        var display = this.referenceLineCheckers[key].referenceValues.refValues.evaluationContext.datum[lang];
+      if (
+        this.referenceLineCheckers[key].referenceValues &&
+        this.referenceLineCheckers[key].referenceValues.refValues
+      ) {
+        var display =
+          this.referenceLineCheckers[key].referenceValues.refValues.evaluationContext.datum[lang];
         return display ? display : value;
       }
     }
diff --git a/ui/src/views/datatype/DataTypesManagementView.vue b/ui/src/views/datatype/DataTypesManagementView.vue
index 8ece4e95bf947282f098e527a7cbaa5cbd6d6e8b..510fbba5ce5c4f3dc5f3af707a028734a10b74d0 100644
--- a/ui/src/views/datatype/DataTypesManagementView.vue
+++ b/ui/src/views/datatype/DataTypesManagementView.vue
@@ -267,13 +267,10 @@ export default class DataTypesManagementView extends Vue {
   }
 
   async downloadDataType(event) {
-    let param = new DownloadDatasetQuery(this.application, this.applicationName, event)
-    let csv = await this.dataService.getDataTypesCsv(
-        this.applicationName,
-        event,
-        param);
-    var hiddenElement = document.createElement('a');
-    hiddenElement.href = 'data:text/csv;charset=utf-8,' + encodeURI(csv);
+    let param = new DownloadDatasetQuery(this.application, this.applicationName, event);
+    let csv = await this.dataService.getDataTypesCsv(this.applicationName, event, param);
+    var hiddenElement = document.createElement("a");
+    hiddenElement.href = "data:text/csv;charset=utf-8," + encodeURI(csv);
 
     //provide the name for the CSV file to be downloaded
     hiddenElement.download = "export.csv";
diff --git a/ui/src/views/datatype/DataTypesRepositoryView.vue b/ui/src/views/datatype/DataTypesRepositoryView.vue
index ee89c38993e31607144a485d05dc99e7cf3083e1..1af62cef77cf470fc30ff67ed9e80e923bc1dbe2 100644
--- a/ui/src/views/datatype/DataTypesRepositoryView.vue
+++ b/ui/src/views/datatype/DataTypesRepositoryView.vue
@@ -479,13 +479,13 @@ export default class DataTypesRepositoryView extends Vue {
   async publish(dataset, pusblished) {
     dataset.params.published = pusblished;
     let requiredauthorizations = dataset.params.binaryFiledataset.requiredauthorizations;
-    requiredauthorizations = Object.keys(requiredauthorizations).reduce(function (acc, key){
-      acc[key] = acc[key]?acc[key].sql:"";
+    requiredauthorizations = Object.keys(requiredauthorizations).reduce(function (acc, key) {
+      acc[key] = acc[key] ? acc[key].sql : "";
       return acc;
-    }, requiredauthorizations)
-    console.log('requiredauthorizations',requiredauthorizations)
+    }, requiredauthorizations);
+    console.log("requiredauthorizations", requiredauthorizations);
     dataset.params.binaryFiledataset.requiredauthorizations = requiredauthorizations;
-    console.log('binaryFiledataset',dataset.params.binaryFiledataset)
+    console.log("binaryFiledataset", dataset.params.binaryFiledataset);
     var fileOrId = new FileOrUUID(dataset.id, dataset.params.binaryFiledataset, pusblished);
     var uuid = await this.dataService.addData(
       this.applicationName,
@@ -689,4 +689,4 @@ caption {
   .tooltip-content {
   }
 }
-</style>
\ No newline at end of file
+</style>
diff --git a/ui/src/views/references/ReferenceTableView.vue b/ui/src/views/references/ReferenceTableView.vue
index b87693e30382a2eae2a35be116d68a27ac25a100..446163aa9bf1d4caa227a6443ca1003f9528aa23 100644
--- a/ui/src/views/references/ReferenceTableView.vue
+++ b/ui/src/views/references/ReferenceTableView.vue
@@ -25,21 +25,21 @@
       >
         <template #pagination>
           <b-pagination
-              v-model="currentPage"
-              :current-page.sync="currentPage"
-              :per-page="perPage"
-              :total="tableValues.length"
-              role="navigation"
-              :aria-label="$t('menu.aria-pagination')"
-              :aria-current-label="$t('menu.aria-curent-page')"
-              :aria-next-label="$t('menu.aria-next-page')"
-              :aria-previous-label="$t('menu.aria-previous-page')"
-              order="is-centered"
-              range-after="3"
-              range-before="3"
-              :rounded="true"
-         />
-       </template>
+            v-model="currentPage"
+            :current-page.sync="currentPage"
+            :per-page="perPage"
+            :total="tableValues.length"
+            role="navigation"
+            :aria-label="$t('menu.aria-pagination')"
+            :aria-current-label="$t('menu.aria-curent-page')"
+            :aria-next-label="$t('menu.aria-next-page')"
+            :aria-previous-label="$t('menu.aria-previous-page')"
+            order="is-centered"
+            range-after="3"
+            range-before="3"
+            :rounded="true"
+          />
+        </template>
         <b-table-column
           v-for="column in columns"
           :key="column.id"
@@ -54,7 +54,7 @@
               size="is-small"
               type="is-dark"
               v-if="showBtnTablDynamicColumn(props.row[column.id])"
-              @click="showModal(column.id,props.row[column.id])"
+              @click="showModal(column.id, props.row[column.id])"
               icon-left="eye"
               rounded
               style="height: inherit"
@@ -71,7 +71,9 @@
                 </div>
                 <div class="card-content">
                   <div class="columns modalArrayObj" v-for="key in modalArrayObj" :key="key.id">
-                    <p class="column" v-if="key.column">{{ key.column }} {{ $t('ponctuation.colon')}}</p>
+                    <p class="column" v-if="key.column">
+                      {{ key.column }} {{ $t("ponctuation.colon") }}
+                    </p>
                     <p class="column" v-if="key.value">{{ key.value }}</p>
                   </div>
                 </div>
@@ -144,21 +146,23 @@ export default class ReferenceTableView extends Vue {
         obj[a[0]] = a[1];
         return obj;
       });
-    if(this.referencesDynamic) {
+    if (this.referencesDynamic) {
       for (let i = 0; i < this.referencesDynamic.referenceValues.length; i++) {
         let hierarchicalKey = this.referencesDynamic.referenceValues[i].hierarchicalKey;
         for (let j = 0; j < this.modalArrayObj.length; j++) {
           if (this.modalArrayObj[j][hierarchicalKey]) {
-            let column = this.referencesDynamic.referenceValues[i].values[this.display] ?
-                this.referencesDynamic.referenceValues[i].values[this.display] : hierarchicalKey ;
+            let column = this.referencesDynamic.referenceValues[i].values[this.display]
+              ? this.referencesDynamic.referenceValues[i].values[this.display]
+              : hierarchicalKey;
             let value = this.modalArrayObj[j][hierarchicalKey];
             this.modalArrayObj[j] = { ...this.modalArrayObj[j], column: column, value: value };
           }
         }
-        for(let j = 0; j < tablDynamicColumn.length; j++) {
+        for (let j = 0; j < tablDynamicColumn.length; j++) {
           if (tablDynamicColumn[j] === hierarchicalKey) {
-            let value = this.referencesDynamic.referenceValues[i].values[this.display] ?
-                this.referencesDynamic.referenceValues[i].values[this.display] : columName ;
+            let value = this.referencesDynamic.referenceValues[i].values[this.display]
+              ? this.referencesDynamic.referenceValues[i].values[this.display]
+              : columName;
             this.modalArrayObj[j] = { ...this.modalArrayObj[j], value: value };
           }
         }
@@ -187,11 +191,14 @@ export default class ReferenceTableView extends Vue {
   }
 
   multiplicity(column, arrayValues) {
-    for(let i = 0; i < this.tableValues.length ; i++) {
-      let showModal = Object.entries(this.tableValues[i])
-          .filter((a) => a[1]);
+    for (let i = 0; i < this.tableValues.length; i++) {
+      let showModal = Object.entries(this.tableValues[i]).filter((a) => a[1]);
       for (let j = 0; j < showModal.length; j++) {
-        if (showModal[j][0] === column && showModal[j][1] === arrayValues && Array.isArray(showModal[j][1])) {
+        if (
+          showModal[j][0] === column &&
+          showModal[j][1] === arrayValues &&
+          Array.isArray(showModal[j][1])
+        ) {
           return true;
         }
       }
@@ -284,13 +291,13 @@ export default class ReferenceTableView extends Vue {
       );
     }
     for (let i = 0; i < this.columns.length; i++) {
-      if(this.application.references[this.columns[i].id]) {
+      if (this.application.references[this.columns[i].id]) {
         this.referencesDynamic = await this.referenceService.getReferenceValues(
-            this.applicationName,
-            this.columns[i].id
+          this.applicationName,
+          this.columns[i].id
         );
       }
     }
   }
 }
-</script>
\ No newline at end of file
+</script>
diff --git a/ui/src/views/references/ReferencesManagementView.vue b/ui/src/views/references/ReferencesManagementView.vue
index d512a9a64ed259670e0ec175e981a2704e219b4f..ee623847db6cc2b77aff8ec1972a7d627f0f5634 100644
--- a/ui/src/views/references/ReferencesManagementView.vue
+++ b/ui/src/views/references/ReferencesManagementView.vue
@@ -186,11 +186,7 @@ export default class ReferencesManagementView extends Vue {
     this.errorsMessages = [];
     const reference = this.findReferenceByLabel(label);
     try {
-      await this.referenceService.createReference(
-        this.applicationName,
-        reference.id,
-        refFile
-      );
+      await this.referenceService.createReference(this.applicationName, reference.id, refFile);
       this.alertService.toastSuccess(this.$t("alert.reference-updated"));
     } catch (errors) {
       await this.checkMessageErrors(errors);
@@ -225,4 +221,4 @@ export default class ReferencesManagementView extends Vue {
   margin-bottom: 10px;
   border: 1px solid white;
 }
-</style>
\ No newline at end of file
+</style>
diff --git a/ui/text.text b/ui/text.text
new file mode 100644
index 0000000000000000000000000000000000000000..b0055b87708592a9697cb8506c0511c1ceba1aac
--- /dev/null
+++ b/ui/text.text
@@ -0,0 +1,228 @@
+
+> ui@0.1.0 serve
+> mkdir -p public/files &&  cp  ../Documentation_fichier_Yaml.pdf public/files/aide.pdf;vue-cli-service serve
+
+ INFO  Starting development server...
+ WARNING  Compiled with 2 warnings18:00:50
+
+ warning  in ./src/views/application/ApplicationsView.vue?vue&type=style&index=0&id=4d2ab301&lang=scss&scoped=true&
+
+Module Warning (from ./node_modules/postcss-loader/src/index.js):
+Warning
+
+(20:5) start value has mixed support, consider using flex-start instead
+
+ @ ./node_modules/vue-style-loader??ref--9-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--9-oneOf-1-2!./node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/application/ApplicationsView.vue?vue&type=style&index=0&id=4d2ab301&lang=scss&scoped=true& 4:14-489 15:3-20:5 16:22-497
+ @ ./src/views/application/ApplicationsView.vue?vue&type=style&index=0&id=4d2ab301&lang=scss&scoped=true&
+ @ ./src/views/application/ApplicationsView.vue
+ @ ./src/router/index.js
+ @ ./src/main.js
+ @ multi (webpack)-dev-server/client?http://localhost:8082&sockPath=/sockjs-node (webpack)/hot/dev-server.js ./src/main.js
+
+ warning  in ./src/views/documentation/HelpView.vue?vue&type=style&index=0&id=f391d316&lang=scss&scoped=true&
+
+Module Warning (from ./node_modules/postcss-loader/src/index.js):
+Warning
+
+(23:5) start value has mixed support, consider using flex-start instead
+
+ @ ./node_modules/vue-style-loader??ref--9-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--9-oneOf-1-2!./node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/documentation/HelpView.vue?vue&type=style&index=0&id=f391d316&lang=scss&scoped=true& 4:14-481 15:3-20:5 16:22-489
+ @ ./src/views/documentation/HelpView.vue?vue&type=style&index=0&id=f391d316&lang=scss&scoped=true&
+ @ ./src/views/documentation/HelpView.vue
+ @ ./src/router/index.js
+ @ ./src/main.js
+ @ multi (webpack)-dev-server/client?http://localhost:8082&sockPath=/sockjs-node (webpack)/hot/dev-server.js ./src/main.js
+
+
+  App running at:
+  - Local:   http://localhost:8082/ 
+  - Network: unavailable
+
+  Note that the development build is not optimized.
+  To create a production build, run npm run build.
+
+ WAIT  Compiling...18:02:51
+
+ WARNING  Compiled with 2 warnings18:02:52
+
+ warning  in ./src/views/application/ApplicationsView.vue?vue&type=style&index=0&id=4d2ab301&lang=scss&scoped=true&
+
+Module Warning (from ./node_modules/postcss-loader/src/index.js):
+Warning
+
+(20:5) start value has mixed support, consider using flex-start instead
+
+ @ ./node_modules/vue-style-loader??ref--9-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--9-oneOf-1-2!./node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/application/ApplicationsView.vue?vue&type=style&index=0&id=4d2ab301&lang=scss&scoped=true& 4:14-489 15:3-20:5 16:22-497
+ @ ./src/views/application/ApplicationsView.vue?vue&type=style&index=0&id=4d2ab301&lang=scss&scoped=true&
+ @ ./src/views/application/ApplicationsView.vue
+ @ ./src/router/index.js
+ @ ./src/main.js
+ @ multi (webpack)-dev-server/client?http://localhost:8082&sockPath=/sockjs-node (webpack)/hot/dev-server.js ./src/main.js
+
+ warning  in ./src/views/documentation/HelpView.vue?vue&type=style&index=0&id=f391d316&lang=scss&scoped=true&
+
+Module Warning (from ./node_modules/postcss-loader/src/index.js):
+Warning
+
+(23:5) start value has mixed support, consider using flex-start instead
+
+ @ ./node_modules/vue-style-loader??ref--9-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--9-oneOf-1-2!./node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/documentation/HelpView.vue?vue&type=style&index=0&id=f391d316&lang=scss&scoped=true& 4:14-481 15:3-20:5 16:22-489
+ @ ./src/views/documentation/HelpView.vue?vue&type=style&index=0&id=f391d316&lang=scss&scoped=true&
+ @ ./src/views/documentation/HelpView.vue
+ @ ./src/router/index.js
+ @ ./src/main.js
+ @ multi (webpack)-dev-server/client?http://localhost:8082&sockPath=/sockjs-node (webpack)/hot/dev-server.js ./src/main.js
+
+
+  App running at:
+  - Local:   http://localhost:8082/ 
+  - Network: unavailable
+
+ WAIT  Compiling...18:02:53
+
+ WARNING  Compiled with 2 warnings18:02:54
+
+ warning  in ./src/views/application/ApplicationsView.vue?vue&type=style&index=0&id=4d2ab301&lang=scss&scoped=true&
+
+Module Warning (from ./node_modules/postcss-loader/src/index.js):
+Warning
+
+(20:5) start value has mixed support, consider using flex-start instead
+
+ @ ./node_modules/vue-style-loader??ref--9-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--9-oneOf-1-2!./node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/application/ApplicationsView.vue?vue&type=style&index=0&id=4d2ab301&lang=scss&scoped=true& 4:14-489 15:3-20:5 16:22-497
+ @ ./src/views/application/ApplicationsView.vue?vue&type=style&index=0&id=4d2ab301&lang=scss&scoped=true&
+ @ ./src/views/application/ApplicationsView.vue
+ @ ./src/router/index.js
+ @ ./src/main.js
+ @ multi (webpack)-dev-server/client?http://localhost:8082&sockPath=/sockjs-node (webpack)/hot/dev-server.js ./src/main.js
+
+ warning  in ./src/views/documentation/HelpView.vue?vue&type=style&index=0&id=f391d316&lang=scss&scoped=true&
+
+Module Warning (from ./node_modules/postcss-loader/src/index.js):
+Warning
+
+(23:5) start value has mixed support, consider using flex-start instead
+
+ @ ./node_modules/vue-style-loader??ref--9-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--9-oneOf-1-2!./node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/documentation/HelpView.vue?vue&type=style&index=0&id=f391d316&lang=scss&scoped=true& 4:14-481 15:3-20:5 16:22-489
+ @ ./src/views/documentation/HelpView.vue?vue&type=style&index=0&id=f391d316&lang=scss&scoped=true&
+ @ ./src/views/documentation/HelpView.vue
+ @ ./src/router/index.js
+ @ ./src/main.js
+ @ multi (webpack)-dev-server/client?http://localhost:8082&sockPath=/sockjs-node (webpack)/hot/dev-server.js ./src/main.js
+
+
+  App running at:
+  - Local:   http://localhost:8082/ 
+  - Network: unavailable
+
+ WAIT  Compiling...18:02:54
+
+ WARNING  Compiled with 2 warnings18:02:56
+
+ warning  in ./src/views/application/ApplicationsView.vue?vue&type=style&index=0&id=4d2ab301&lang=scss&scoped=true&
+
+Module Warning (from ./node_modules/postcss-loader/src/index.js):
+Warning
+
+(20:5) start value has mixed support, consider using flex-start instead
+
+ @ ./node_modules/vue-style-loader??ref--9-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--9-oneOf-1-2!./node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/application/ApplicationsView.vue?vue&type=style&index=0&id=4d2ab301&lang=scss&scoped=true& 4:14-489 15:3-20:5 16:22-497
+ @ ./src/views/application/ApplicationsView.vue?vue&type=style&index=0&id=4d2ab301&lang=scss&scoped=true&
+ @ ./src/views/application/ApplicationsView.vue
+ @ ./src/router/index.js
+ @ ./src/main.js
+ @ multi (webpack)-dev-server/client?http://localhost:8082&sockPath=/sockjs-node (webpack)/hot/dev-server.js ./src/main.js
+
+ warning  in ./src/views/documentation/HelpView.vue?vue&type=style&index=0&id=f391d316&lang=scss&scoped=true&
+
+Module Warning (from ./node_modules/postcss-loader/src/index.js):
+Warning
+
+(23:5) start value has mixed support, consider using flex-start instead
+
+ @ ./node_modules/vue-style-loader??ref--9-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--9-oneOf-1-2!./node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/documentation/HelpView.vue?vue&type=style&index=0&id=f391d316&lang=scss&scoped=true& 4:14-481 15:3-20:5 16:22-489
+ @ ./src/views/documentation/HelpView.vue?vue&type=style&index=0&id=f391d316&lang=scss&scoped=true&
+ @ ./src/views/documentation/HelpView.vue
+ @ ./src/router/index.js
+ @ ./src/main.js
+ @ multi (webpack)-dev-server/client?http://localhost:8082&sockPath=/sockjs-node (webpack)/hot/dev-server.js ./src/main.js
+
+
+  App running at:
+  - Local:   http://localhost:8082/ 
+  - Network: unavailable
+
+ WAIT  Compiling...18:02:57
+
+ WARNING  Compiled with 2 warnings18:02:58
+
+ warning  in ./src/views/application/ApplicationsView.vue?vue&type=style&index=0&id=4d2ab301&lang=scss&scoped=true&
+
+Module Warning (from ./node_modules/postcss-loader/src/index.js):
+Warning
+
+(20:5) start value has mixed support, consider using flex-start instead
+
+ @ ./node_modules/vue-style-loader??ref--9-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--9-oneOf-1-2!./node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/application/ApplicationsView.vue?vue&type=style&index=0&id=4d2ab301&lang=scss&scoped=true& 4:14-489 15:3-20:5 16:22-497
+ @ ./src/views/application/ApplicationsView.vue?vue&type=style&index=0&id=4d2ab301&lang=scss&scoped=true&
+ @ ./src/views/application/ApplicationsView.vue
+ @ ./src/router/index.js
+ @ ./src/main.js
+ @ multi (webpack)-dev-server/client?http://localhost:8082&sockPath=/sockjs-node (webpack)/hot/dev-server.js ./src/main.js
+
+ warning  in ./src/views/documentation/HelpView.vue?vue&type=style&index=0&id=f391d316&lang=scss&scoped=true&
+
+Module Warning (from ./node_modules/postcss-loader/src/index.js):
+Warning
+
+(23:5) start value has mixed support, consider using flex-start instead
+
+ @ ./node_modules/vue-style-loader??ref--9-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--9-oneOf-1-2!./node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/documentation/HelpView.vue?vue&type=style&index=0&id=f391d316&lang=scss&scoped=true& 4:14-481 15:3-20:5 16:22-489
+ @ ./src/views/documentation/HelpView.vue?vue&type=style&index=0&id=f391d316&lang=scss&scoped=true&
+ @ ./src/views/documentation/HelpView.vue
+ @ ./src/router/index.js
+ @ ./src/main.js
+ @ multi (webpack)-dev-server/client?http://localhost:8082&sockPath=/sockjs-node (webpack)/hot/dev-server.js ./src/main.js
+
+
+  App running at:
+  - Local:   http://localhost:8082/ 
+  - Network: unavailable
+
+ WAIT  Compiling...10:08:18
+
+ WARNING  Compiled with 2 warnings10:08:20
+
+ warning  in ./src/views/application/ApplicationsView.vue?vue&type=style&index=0&id=4d2ab301&lang=scss&scoped=true&
+
+Module Warning (from ./node_modules/postcss-loader/src/index.js):
+Warning
+
+(20:5) start value has mixed support, consider using flex-start instead
+
+ @ ./node_modules/vue-style-loader??ref--9-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--9-oneOf-1-2!./node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/application/ApplicationsView.vue?vue&type=style&index=0&id=4d2ab301&lang=scss&scoped=true& 4:14-489 15:3-20:5 16:22-497
+ @ ./src/views/application/ApplicationsView.vue?vue&type=style&index=0&id=4d2ab301&lang=scss&scoped=true&
+ @ ./src/views/application/ApplicationsView.vue
+ @ ./src/router/index.js
+ @ ./src/main.js
+ @ multi (webpack)-dev-server/client?http://localhost:8082&sockPath=/sockjs-node (webpack)/hot/dev-server.js ./src/main.js
+
+ warning  in ./src/views/documentation/HelpView.vue?vue&type=style&index=0&id=f391d316&lang=scss&scoped=true&
+
+Module Warning (from ./node_modules/postcss-loader/src/index.js):
+Warning
+
+(23:5) start value has mixed support, consider using flex-start instead
+
+ @ ./node_modules/vue-style-loader??ref--9-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--9-oneOf-1-2!./node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/documentation/HelpView.vue?vue&type=style&index=0&id=f391d316&lang=scss&scoped=true& 4:14-481 15:3-20:5 16:22-489
+ @ ./src/views/documentation/HelpView.vue?vue&type=style&index=0&id=f391d316&lang=scss&scoped=true&
+ @ ./src/views/documentation/HelpView.vue
+ @ ./src/router/index.js
+ @ ./src/main.js
+ @ multi (webpack)-dev-server/client?http://localhost:8082&sockPath=/sockjs-node (webpack)/hot/dev-server.js ./src/main.js
+
+
+  App running at:
+  - Local:   http://localhost:8082/ 
+  - Network: unavailable
+