diff --git a/.gitignore b/.gitignore
index abf174d05b187a9c365e34e176ef2cc7a03c8913..fb36086fbf534507b984754dbcff14f4947b22c4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,45 +1,13 @@
-# Byte-compiled / optimized / DLL files
-__pycache__/
-*.py[cod]
-*$py.class
-
-# C extensions
-*.so
-
-# Distribution / packaging
-build/
-dist/
-*.egg-info/
-
-# Installer logs
-pip-log.txt
-pip-delete-this-directory.txt
-
-# Virtual environments
-venv/
-.env
-.venv/
-
-# PyInstaller
-*.manifest
-*.spec
-
-# Unit test / coverage reports
-htmlcov/
-.tox/
-.nox/
-.coverage
+.tox
+bom.json
 coverage.xml
-.cache
-.pytest_cache/
-
-# Sphinx documentation
-docs/_build/
-
-# Editor / OS junk
+.coverage
+htmlcov
+*.egg-info
+__pycache__
+.vscode
+docs/build
 .DS_Store
-Thumbs.db
-.idea/
-.vscode/
-*.swp
-*.swo
\ No newline at end of file
+
+# drawio tmp files
+*.bkp
diff --git a/Changelog.md b/Changelog.md
new file mode 100644
index 0000000000000000000000000000000000000000..fb87af914d4b627a37b0e17616d9c0afa5652eb9
--- /dev/null
+++ b/Changelog.md
@@ -0,0 +1,6 @@
+# Changelog
+
+All notable changes to this project will be documented in this file.
+
+## [0.1] - 2025-06-07
+- api prototype/demo
diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000000000000000000000000000000000000..e5953d6962cf6ada5343a2dc5ab3344be347801c
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,12 @@
+// https://gitlab.geant.net/live-projects/jenkins-pipeline/-/tree/master/vars
+library 'SWDPipeline'
+
+// Parameters:
+// project_name (must match the name of the project in GitLab/SWD release jenkins)
+// extra_recipients (optional, list of email addresses to always receive notifications, in addition to the default in jenkins)
+// python_test_versions (list of python versions, resolving to docker tags, to test against)
+String name = 'mapping-provider'
+List<String> extraRecipients = ['erik.reid@geant.org']
+List<String> pythonTestVersions = ['3.11']
+
+SimplePythonBuild(name, extraRecipients, pythonTestVersions)
diff --git a/docs/source/conf.py b/docs/source/conf.py
index d52fe2040888b5fcd07aa1b3c59ca5e1e0f15b6b..847d7a488db5c62b68a29018a84339204dee583c 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -7,6 +7,7 @@ from datetime import datetime
 import json
 import os
 import sys
+import tempfile
 
 sys.path.insert(
     0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..", ".."))
@@ -28,7 +29,7 @@ release = '0.0'
 
 extensions = [
     "sphinx_rtd_theme",
-    # "sphinx.ext.autodoc",
+    "sphinx.ext.autodoc",
     "sphinx.ext.coverage",
     "sphinxcontrib.plantuml",
     "sphinxcontrib.openapi",
@@ -53,7 +54,30 @@ html_theme = 'sphinx_rtd_theme'
 html_static_path = ['_static']
 
 
-api_schema = create_app().openapi()
+# we need a minimal/parseable config file in order to
+# start the server and dump the schema
+with tempfile.NamedTemporaryFile(delete=False) as f:
+
+    bogus_config = {
+        'inventory': 'http://bogus',
+        'reporting': 'https://bogus',
+        'correlator_exchange': 'bogus',
+        'brian': {
+            'hostname': 'bogus',
+            'username': 'bogus',
+            'password': 'bogus',
+            'database': 'bogus',
+            'measurement': 'bogus',
+        }
+    }
+    with open(f.name, 'w') as f:
+        json.dump(bogus_config, f)
+        f.flush()
+        os.environ['SETTINGS_FILENAME'] = f.name
+
+    api_schema = create_app().openapi()
+
 openapi_filename = os.path.join(os.path.dirname(__file__), "openapi.json")
 with open(openapi_filename, 'w') as f:
     json.dump(api_schema, f, indent=4)
+
diff --git a/docs/source/mapping_provider.rst b/docs/source/mapping_provider.rst
deleted file mode 100644
index dad01fb843acad3b5ee1364bea300af8dc375ecd..0000000000000000000000000000000000000000
--- a/docs/source/mapping_provider.rst
+++ /dev/null
@@ -1,22 +0,0 @@
-mapping_provider package
-=========================
-
-Submodules
-----------
-
-mapping\_provider.main module
------------------------------
-
-.. automodule:: mapping_provider.main
-   :members:
-   :undoc-members:
-   :show-inheritance:
-
-Module contents
----------------
-
-.. automodule:: mapping_provider
-   :members:
-   :undoc-members:
-   :show-inheritance:
-
diff --git a/docs/source/modules.rst b/docs/source/modules.rst
deleted file mode 100644
index 823c103fbb5633a3b8f2ac6452ff7ab5c1c8d67d..0000000000000000000000000000000000000000
--- a/docs/source/modules.rst
+++ /dev/null
@@ -1,8 +0,0 @@
-mapping_provider
-================
-
-.. toctree::
-   :maxdepth: 4
-
-   mapping_provider
-
diff --git a/docs/source/planning/design.drawio b/docs/source/planning/design.drawio
index 2fa3e7478218d57f4fed3e4baeeff9734c38630d..297de3a7958ecc841e8176b1e72d0a4adf262c89 100644
--- a/docs/source/planning/design.drawio
+++ b/docs/source/planning/design.drawio
@@ -1,49 +1,49 @@
-<mxfile host="Electron" agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/26.0.9 Chrome/128.0.6613.186 Electron/32.2.5 Safari/537.36" version="26.0.9">
+<mxfile host="Electron" agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/26.0.9 Chrome/128.0.6613.186 Electron/32.2.5 Safari/537.36" version="26.0.9" pages="3">
   <diagram name="hl-arch" id="52Qc7nEq3IphXZwXqFKS">
-    <mxGraphModel dx="1579" dy="543" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
+    <mxGraphModel dx="1841" dy="664" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
       <root>
         <mxCell id="0" />
         <mxCell id="1" parent="0" />
-        <mxCell id="qRnl4kCob0Xuz_cL3leS-1" value="mapping provider" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;fillColor=#dae8fc;strokeColor=#6c8ebf;verticalAlign=bottom;align=right;spacingRight=5;" vertex="1" parent="1">
+        <mxCell id="qRnl4kCob0Xuz_cL3leS-1" value="mapping provider" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;fillColor=#dae8fc;strokeColor=#6c8ebf;verticalAlign=bottom;align=right;spacingRight=5;" parent="1" vertex="1">
           <mxGeometry x="110" y="30" width="240" height="240" as="geometry" />
         </mxCell>
-        <mxCell id="qRnl4kCob0Xuz_cL3leS-2" value="map web server" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;fillColor=#dae8fc;strokeColor=#6c8ebf;verticalAlign=bottom;align=right;spacingRight=5;" vertex="1" parent="1">
+        <mxCell id="qRnl4kCob0Xuz_cL3leS-2" value="map web server" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;fillColor=#dae8fc;strokeColor=#6c8ebf;verticalAlign=bottom;align=right;spacingRight=5;" parent="1" vertex="1">
           <mxGeometry x="-230" y="70" width="270" height="260" as="geometry" />
         </mxCell>
-        <mxCell id="qRnl4kCob0Xuz_cL3leS-3" value="processor&lt;div&gt;web&lt;/div&gt;&lt;div&gt;service&lt;/div&gt;" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
+        <mxCell id="qRnl4kCob0Xuz_cL3leS-3" value="processor&lt;div&gt;web&lt;/div&gt;&lt;div&gt;service&lt;/div&gt;" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
           <mxGeometry x="-120" y="170" width="120" height="60" as="geometry" />
         </mxCell>
-        <mxCell id="qRnl4kCob0Xuz_cL3leS-4" value="mapping-provider" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
+        <mxCell id="qRnl4kCob0Xuz_cL3leS-4" value="mapping-provider" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
           <mxGeometry x="170" y="170" width="120" height="60" as="geometry" />
         </mxCell>
-        <mxCell id="qRnl4kCob0Xuz_cL3leS-5" value="GSO" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
+        <mxCell id="qRnl4kCob0Xuz_cL3leS-5" value="GSO" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
           <mxGeometry x="460" y="50" width="110" height="60" as="geometry" />
         </mxCell>
-        <mxCell id="qRnl4kCob0Xuz_cL3leS-6" value="" style="endArrow=classic;startArrow=classic;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="qRnl4kCob0Xuz_cL3leS-3" target="qRnl4kCob0Xuz_cL3leS-4">
+        <mxCell id="qRnl4kCob0Xuz_cL3leS-6" value="" style="endArrow=classic;startArrow=classic;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="qRnl4kCob0Xuz_cL3leS-3" target="qRnl4kCob0Xuz_cL3leS-4" edge="1">
           <mxGeometry width="50" height="50" relative="1" as="geometry">
             <mxPoint x="110" y="260" as="sourcePoint" />
             <mxPoint x="160" y="210" as="targetPoint" />
           </mxGeometry>
         </mxCell>
-        <mxCell id="qRnl4kCob0Xuz_cL3leS-7" value="REST" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
+        <mxCell id="qRnl4kCob0Xuz_cL3leS-7" value="REST" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
           <mxGeometry x="50" y="175" width="60" height="30" as="geometry" />
         </mxCell>
-        <mxCell id="qRnl4kCob0Xuz_cL3leS-8" value="template" style="shape=note;whiteSpace=wrap;html=1;backgroundOutline=1;darkOpacity=0.05;size=12;dashed=1;dashPattern=1 2;" vertex="1" parent="1">
+        <mxCell id="qRnl4kCob0Xuz_cL3leS-8" value="template" style="shape=note;whiteSpace=wrap;html=1;backgroundOutline=1;darkOpacity=0.05;size=12;dashed=1;dashPattern=1 2;" parent="1" vertex="1">
           <mxGeometry x="-100" y="270" width="80" height="30" as="geometry" />
         </mxCell>
-        <mxCell id="qRnl4kCob0Xuz_cL3leS-9" value="" style="endArrow=classic;html=1;rounded=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" edge="1" parent="1" source="qRnl4kCob0Xuz_cL3leS-8" target="qRnl4kCob0Xuz_cL3leS-3">
+        <mxCell id="qRnl4kCob0Xuz_cL3leS-9" value="" style="endArrow=classic;html=1;rounded=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" parent="1" source="qRnl4kCob0Xuz_cL3leS-8" target="qRnl4kCob0Xuz_cL3leS-3" edge="1">
           <mxGeometry width="50" height="50" relative="1" as="geometry">
             <mxPoint x="110" y="280" as="sourcePoint" />
             <mxPoint x="160" y="230" as="targetPoint" />
           </mxGeometry>
         </mxCell>
-        <mxCell id="qRnl4kCob0Xuz_cL3leS-10" value="Client" style="shape=umlActor;verticalLabelPosition=bottom;verticalAlign=top;html=1;outlineConnect=0;" vertex="1" parent="1">
+        <mxCell id="qRnl4kCob0Xuz_cL3leS-10" value="Client" style="shape=umlActor;verticalLabelPosition=bottom;verticalAlign=top;html=1;outlineConnect=0;" parent="1" vertex="1">
           <mxGeometry x="-400" y="105" width="30" height="60" as="geometry" />
         </mxCell>
-        <mxCell id="qRnl4kCob0Xuz_cL3leS-11" value="map/gui" style="shape=note;whiteSpace=wrap;html=1;backgroundOutline=1;darkOpacity=0.05;size=12;" vertex="1" parent="1">
+        <mxCell id="qRnl4kCob0Xuz_cL3leS-11" value="map/gui" style="shape=note;whiteSpace=wrap;html=1;backgroundOutline=1;darkOpacity=0.05;size=12;" parent="1" vertex="1">
           <mxGeometry x="-210" y="120" width="80" height="30" as="geometry" />
         </mxCell>
-        <mxCell id="qRnl4kCob0Xuz_cL3leS-12" value="" style="endArrow=classic;html=1;rounded=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0;entryY=0;entryDx=80;entryDy=21;entryPerimeter=0;" edge="1" parent="1" source="qRnl4kCob0Xuz_cL3leS-3" target="qRnl4kCob0Xuz_cL3leS-11">
+        <mxCell id="qRnl4kCob0Xuz_cL3leS-12" value="" style="endArrow=classic;html=1;rounded=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0;entryY=0;entryDx=80;entryDy=21;entryPerimeter=0;" parent="1" source="qRnl4kCob0Xuz_cL3leS-3" target="qRnl4kCob0Xuz_cL3leS-11" edge="1">
           <mxGeometry width="50" height="50" relative="1" as="geometry">
             <mxPoint x="30" y="270" as="sourcePoint" />
             <mxPoint x="80" y="220" as="targetPoint" />
@@ -52,13 +52,13 @@
             </Array>
           </mxGeometry>
         </mxCell>
-        <mxCell id="qRnl4kCob0Xuz_cL3leS-13" value="" style="endArrow=classic;html=1;rounded=0;exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="1" source="qRnl4kCob0Xuz_cL3leS-11" target="qRnl4kCob0Xuz_cL3leS-10">
+        <mxCell id="qRnl4kCob0Xuz_cL3leS-13" value="" style="endArrow=classic;html=1;rounded=0;exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" source="qRnl4kCob0Xuz_cL3leS-11" target="qRnl4kCob0Xuz_cL3leS-10" edge="1">
           <mxGeometry width="50" height="50" relative="1" as="geometry">
             <mxPoint x="30" y="250" as="sourcePoint" />
             <mxPoint x="80" y="200" as="targetPoint" />
           </mxGeometry>
         </mxCell>
-        <mxCell id="qRnl4kCob0Xuz_cL3leS-14" value="" style="endArrow=classic;html=1;rounded=0;exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="qRnl4kCob0Xuz_cL3leS-5" target="qRnl4kCob0Xuz_cL3leS-4">
+        <mxCell id="qRnl4kCob0Xuz_cL3leS-14" value="" style="endArrow=classic;html=1;rounded=0;exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="qRnl4kCob0Xuz_cL3leS-5" target="qRnl4kCob0Xuz_cL3leS-4" edge="1">
           <mxGeometry width="50" height="50" relative="1" as="geometry">
             <mxPoint x="170" y="230" as="sourcePoint" />
             <mxPoint x="480" y="200" as="targetPoint" />
@@ -68,16 +68,16 @@
             </Array>
           </mxGeometry>
         </mxCell>
-        <mxCell id="qRnl4kCob0Xuz_cL3leS-15" value="Inventory Provider" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
+        <mxCell id="qRnl4kCob0Xuz_cL3leS-15" value="Inventory Provider" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
           <mxGeometry x="460" y="130" width="110" height="60" as="geometry" />
         </mxCell>
-        <mxCell id="qRnl4kCob0Xuz_cL3leS-16" value="Dashboard" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
+        <mxCell id="qRnl4kCob0Xuz_cL3leS-16" value="Dashboard" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
           <mxGeometry x="460" y="205" width="110" height="60" as="geometry" />
         </mxCell>
-        <mxCell id="qRnl4kCob0Xuz_cL3leS-17" value="BRIAN (InfluxDB)" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
+        <mxCell id="qRnl4kCob0Xuz_cL3leS-17" value="BRIAN (InfluxDB)" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
           <mxGeometry x="460" y="280" width="110" height="60" as="geometry" />
         </mxCell>
-        <mxCell id="qRnl4kCob0Xuz_cL3leS-18" value="" style="endArrow=classic;html=1;rounded=0;exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="qRnl4kCob0Xuz_cL3leS-17" target="qRnl4kCob0Xuz_cL3leS-4">
+        <mxCell id="qRnl4kCob0Xuz_cL3leS-18" value="" style="endArrow=classic;html=1;rounded=0;exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="qRnl4kCob0Xuz_cL3leS-17" target="qRnl4kCob0Xuz_cL3leS-4" edge="1">
           <mxGeometry width="50" height="50" relative="1" as="geometry">
             <mxPoint x="470" y="90" as="sourcePoint" />
             <mxPoint x="300" y="210" as="targetPoint" />
@@ -87,7 +87,7 @@
             </Array>
           </mxGeometry>
         </mxCell>
-        <mxCell id="qRnl4kCob0Xuz_cL3leS-19" value="" style="endArrow=classic;html=1;rounded=0;exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="qRnl4kCob0Xuz_cL3leS-15" target="qRnl4kCob0Xuz_cL3leS-4">
+        <mxCell id="qRnl4kCob0Xuz_cL3leS-19" value="" style="endArrow=classic;html=1;rounded=0;exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="qRnl4kCob0Xuz_cL3leS-15" target="qRnl4kCob0Xuz_cL3leS-4" edge="1">
           <mxGeometry width="50" height="50" relative="1" as="geometry">
             <mxPoint x="470" y="90" as="sourcePoint" />
             <mxPoint x="300" y="210" as="targetPoint" />
@@ -97,7 +97,7 @@
             </Array>
           </mxGeometry>
         </mxCell>
-        <mxCell id="qRnl4kCob0Xuz_cL3leS-20" value="" style="endArrow=classic;html=1;rounded=0;exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="qRnl4kCob0Xuz_cL3leS-16" target="qRnl4kCob0Xuz_cL3leS-4">
+        <mxCell id="qRnl4kCob0Xuz_cL3leS-20" value="" style="endArrow=classic;html=1;rounded=0;exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="qRnl4kCob0Xuz_cL3leS-16" target="qRnl4kCob0Xuz_cL3leS-4" edge="1">
           <mxGeometry width="50" height="50" relative="1" as="geometry">
             <mxPoint x="470" y="170" as="sourcePoint" />
             <mxPoint x="300" y="210" as="targetPoint" />
@@ -107,10 +107,10 @@
             </Array>
           </mxGeometry>
         </mxCell>
-        <mxCell id="qRnl4kCob0Xuz_cL3leS-21" value="cache/state" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;" vertex="1" parent="1">
+        <mxCell id="qRnl4kCob0Xuz_cL3leS-21" value="cache/state" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;" parent="1" vertex="1">
           <mxGeometry x="170" y="50" width="120" height="60" as="geometry" />
         </mxCell>
-        <mxCell id="qRnl4kCob0Xuz_cL3leS-22" value="" style="endArrow=none;html=1;rounded=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;entryPerimeter=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;strokeWidth=3;fillColor=#0050ef;strokeColor=#001DBC;" edge="1" parent="1" source="qRnl4kCob0Xuz_cL3leS-4" target="qRnl4kCob0Xuz_cL3leS-21">
+        <mxCell id="qRnl4kCob0Xuz_cL3leS-22" value="" style="endArrow=none;html=1;rounded=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;entryPerimeter=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;strokeWidth=3;fillColor=#0050ef;strokeColor=#001DBC;" parent="1" source="qRnl4kCob0Xuz_cL3leS-4" target="qRnl4kCob0Xuz_cL3leS-21" edge="1">
           <mxGeometry width="50" height="50" relative="1" as="geometry">
             <mxPoint x="170" y="190" as="sourcePoint" />
             <mxPoint x="220" y="140" as="targetPoint" />
@@ -119,4 +119,148 @@
       </root>
     </mxGraphModel>
   </diagram>
+  <diagram id="Vyj2DZUMcDZlOFkA0oKl" name="ml-arch">
+    <mxGraphModel dx="1841" dy="664" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
+      <root>
+        <mxCell id="0" />
+        <mxCell id="1" parent="0" />
+        <mxCell id="u84TBxn3RrhLRYBlKo7H-23" value="mapping-provider&lt;div&gt;(FastAPI)&lt;/div&gt;" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
+          <mxGeometry x="200" y="460" width="120" height="60" as="geometry" />
+        </mxCell>
+        <mxCell id="u84TBxn3RrhLRYBlKo7H-26" value="REST/Ajax/htmx/etc" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
+          <mxGeometry x="70" y="540" width="130" height="30" as="geometry" />
+        </mxCell>
+        <mxCell id="u84TBxn3RrhLRYBlKo7H-27" value="client browser" style="whiteSpace=wrap;html=1;shape=mxgraph.basic.document;align=center;verticalAlign=bottom;fillColor=#dae8fc;strokeColor=#6c8ebf;" vertex="1" parent="1">
+          <mxGeometry x="-115" y="440" width="155" height="150" as="geometry" />
+        </mxCell>
+        <mxCell id="u84TBxn3RrhLRYBlKo7H-29" value="dom (+svg)" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
+          <mxGeometry x="-100" y="460" width="110" height="30" as="geometry" />
+        </mxCell>
+        <mxCell id="u84TBxn3RrhLRYBlKo7H-30" value="js/jquery/htmx/etc" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
+          <mxGeometry x="-100" y="530" width="110" height="30" as="geometry" />
+        </mxCell>
+        <mxCell id="u84TBxn3RrhLRYBlKo7H-25" value="" style="endArrow=classic;startArrow=classic;html=1;rounded=0;entryX=0.45;entryY=1;entryDx=0;entryDy=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;strokeColor=#999999;entryPerimeter=0;" edge="1" parent="1" source="u84TBxn3RrhLRYBlKo7H-30" target="u84TBxn3RrhLRYBlKo7H-23">
+          <mxGeometry width="50" height="50" relative="1" as="geometry">
+            <mxPoint x="-50" y="630" as="sourcePoint" />
+            <mxPoint x="40" y="585" as="targetPoint" />
+            <Array as="points">
+              <mxPoint x="254" y="545" />
+            </Array>
+          </mxGeometry>
+        </mxCell>
+        <mxCell id="u84TBxn3RrhLRYBlKo7H-31" value="" style="endArrow=classic;html=1;rounded=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;strokeColor=#0000CC;strokeWidth=2;" edge="1" parent="1" source="u84TBxn3RrhLRYBlKo7H-30" target="u84TBxn3RrhLRYBlKo7H-29">
+          <mxGeometry width="50" height="50" relative="1" as="geometry">
+            <mxPoint x="180" y="420" as="sourcePoint" />
+            <mxPoint x="230" y="370" as="targetPoint" />
+          </mxGeometry>
+        </mxCell>
+        <mxCell id="u84TBxn3RrhLRYBlKo7H-34" value="" style="endArrow=classic;html=1;rounded=0;exitX=0;exitY=0.5;exitDx=0;exitDy=0;strokeColor=#999999;" edge="1" parent="1" source="u84TBxn3RrhLRYBlKo7H-23">
+          <mxGeometry width="50" height="50" relative="1" as="geometry">
+            <mxPoint x="180" y="420" as="sourcePoint" />
+            <mxPoint x="40" y="490" as="targetPoint" />
+          </mxGeometry>
+        </mxCell>
+        <mxCell id="u84TBxn3RrhLRYBlKo7H-35" value="HTTP" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
+          <mxGeometry x="90" y="460" width="50" height="30" as="geometry" />
+        </mxCell>
+        <mxCell id="u84TBxn3RrhLRYBlKo7H-37" value="Inventory Provider" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
+          <mxGeometry x="420" y="337.5" width="110" height="60" as="geometry" />
+        </mxCell>
+        <mxCell id="u84TBxn3RrhLRYBlKo7H-38" value="Reporting Provider" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
+          <mxGeometry x="420" y="417.5" width="110" height="60" as="geometry" />
+        </mxCell>
+        <mxCell id="u84TBxn3RrhLRYBlKo7H-39" value="Dashboard" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
+          <mxGeometry x="420" y="502.5" width="110" height="60" as="geometry" />
+        </mxCell>
+        <mxCell id="u84TBxn3RrhLRYBlKo7H-40" value="BRIAN (InfluxDB)" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
+          <mxGeometry x="420" y="582.5" width="110" height="60" as="geometry" />
+        </mxCell>
+        <mxCell id="u84TBxn3RrhLRYBlKo7H-41" value="GSO" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
+          <mxGeometry x="630" y="337.5" width="110" height="60" as="geometry" />
+        </mxCell>
+        <mxCell id="u84TBxn3RrhLRYBlKo7H-42" value="" style="endArrow=classic;startArrow=classic;html=1;rounded=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" edge="1" parent="1" source="u84TBxn3RrhLRYBlKo7H-23" target="u84TBxn3RrhLRYBlKo7H-37">
+          <mxGeometry width="50" height="50" relative="1" as="geometry">
+            <mxPoint x="280" y="300" as="sourcePoint" />
+            <mxPoint x="330" y="250" as="targetPoint" />
+            <Array as="points">
+              <mxPoint x="350" y="490" />
+              <mxPoint x="350" y="368" />
+            </Array>
+          </mxGeometry>
+        </mxCell>
+        <mxCell id="u84TBxn3RrhLRYBlKo7H-43" value="" style="endArrow=classic;startArrow=classic;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" edge="1" parent="1" source="u84TBxn3RrhLRYBlKo7H-23" target="u84TBxn3RrhLRYBlKo7H-38">
+          <mxGeometry width="50" height="50" relative="1" as="geometry">
+            <mxPoint x="320" y="490" as="sourcePoint" />
+            <mxPoint x="400" y="378" as="targetPoint" />
+            <Array as="points">
+              <mxPoint x="350" y="490" />
+              <mxPoint x="350" y="448" />
+            </Array>
+          </mxGeometry>
+        </mxCell>
+        <mxCell id="u84TBxn3RrhLRYBlKo7H-44" value="" style="endArrow=classic;startArrow=classic;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" edge="1" parent="1" source="u84TBxn3RrhLRYBlKo7H-23" target="u84TBxn3RrhLRYBlKo7H-39">
+          <mxGeometry width="50" height="50" relative="1" as="geometry">
+            <mxPoint x="330" y="500" as="sourcePoint" />
+            <mxPoint x="400" y="458" as="targetPoint" />
+            <Array as="points">
+              <mxPoint x="350" y="490" />
+              <mxPoint x="350" y="533" />
+            </Array>
+          </mxGeometry>
+        </mxCell>
+        <mxCell id="u84TBxn3RrhLRYBlKo7H-45" value="" style="endArrow=classic;startArrow=classic;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" edge="1" parent="1" source="u84TBxn3RrhLRYBlKo7H-23" target="u84TBxn3RrhLRYBlKo7H-40">
+          <mxGeometry width="50" height="50" relative="1" as="geometry">
+            <mxPoint x="330" y="500" as="sourcePoint" />
+            <mxPoint x="400" y="543" as="targetPoint" />
+            <Array as="points">
+              <mxPoint x="350" y="490" />
+              <mxPoint x="350" y="613" />
+            </Array>
+          </mxGeometry>
+        </mxCell>
+        <mxCell id="u84TBxn3RrhLRYBlKo7H-46" value="" style="endArrow=classic;startArrow=classic;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="1" source="u84TBxn3RrhLRYBlKo7H-37" target="u84TBxn3RrhLRYBlKo7H-41">
+          <mxGeometry width="50" height="50" relative="1" as="geometry">
+            <mxPoint x="290" y="410" as="sourcePoint" />
+            <mxPoint x="340" y="360" as="targetPoint" />
+          </mxGeometry>
+        </mxCell>
+      </root>
+    </mxGraphModel>
+  </diagram>
+  <diagram id="Sg8FFZnVH_nSFxczj_8h" name="svg-class-schematic">
+    <mxGraphModel dx="1014" dy="664" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
+      <root>
+        <mxCell id="0" />
+        <mxCell id="1" parent="0" />
+        <mxCell id="6I3-yhUzZdZ5X9dP0GwG-2" value="" style="whiteSpace=wrap;html=1;shape=mxgraph.basic.document" vertex="1" parent="1">
+          <mxGeometry x="364" width="436" height="440" as="geometry" />
+        </mxCell>
+        <mxCell id="6I3-yhUzZdZ5X9dP0GwG-1" value="&lt;pre lang=&quot;xml&quot; class=&quot;code highlight&quot;&gt;&amp;lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; ...&amp;gt;&lt;br&gt;  &amp;lt;defs&amp;gt;&lt;br&gt;    &amp;lt;style&amp;gt;&lt;br&gt;      .up {&lt;br&gt;        fill: #00ff00;&lt;br&gt;      }&lt;br&gt;      .down {&lt;br&gt;        fill: #ff0000;&lt;br&gt;      }&lt;br&gt;      .router {&lt;br&gt;        fill: #0000ff;&lt;br&gt;      }&lt;br&gt;    &amp;lt;/style&amp;gt;&lt;br&gt; &amp;lt;/defs&amp;gt;&lt;br&gt;  &amp;lt;g id=&quot;Trunks&quot;&amp;gt;&lt;br&gt;    &amp;lt;path id=&quot;BRU-CAM&quot; class=&quot;up&quot; d=&quot;...&quot;/&amp;gt;&lt;br&gt;    &amp;lt;path id=&quot;CAM-PAR&quot; class=&quot;up&quot; d=&quot;....&quot;/&amp;gt;&lt;br&gt;    &amp;lt;path id=&quot;PAR-AMS&quot; class=&quot;down&quot; d=&quot;...&quot;/&amp;gt;&lt;br&gt;    &amp;lt;path id=&quot;AMS-LON&quot; class=&quot;down&quot; d=&quot;...&quot;/&amp;gt;&lt;br&gt;  &amp;lt;/g&amp;gt;&lt;br&gt;  &amp;lt;g id=&quot;Routers&quot;&amp;gt;&lt;br&gt;    &amp;lt;circle id=&quot;AMS&quot; class=&quot;router&quot; cx .. cy .. r ../&amp;gt;&lt;br&gt;    &amp;lt;circle id=&quot;PAR&quot; class=&quot;router&quot; cx .. cy .. r ../&amp;gt;&lt;br&gt;    &amp;lt;circle id=&quot;CAM&quot; class=&quot;router&quot; cx .. cy .. r ../&amp;gt;&lt;br&gt;    &amp;lt;circle id=&quot;BRU&quot; class=&quot;router&quot; cx .. cy .. r ../&amp;gt;&lt;br&gt;    &amp;lt;circle id=&quot;LON&quot; class=&quot;router&quot; cx .. cy .. r ../&amp;gt;&lt;br&gt;  &amp;lt;/g&amp;gt;&lt;br&gt;&amp;lt;/svg&amp;gt;&lt;br&gt;&lt;/pre&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;" style="text;html=1;align=left;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
+          <mxGeometry x="380" y="10" width="410" height="430" as="geometry" />
+        </mxCell>
+        <mxCell id="6I3-yhUzZdZ5X9dP0GwG-7" value="" style="whiteSpace=wrap;html=1;shape=mxgraph.basic.document;verticalAlign=bottom;strokeColor=#0000CC;" vertex="1" parent="1">
+          <mxGeometry x="100" y="80" width="180" height="110" as="geometry" />
+        </mxCell>
+        <mxCell id="6I3-yhUzZdZ5X9dP0GwG-9" value="&lt;font style=&quot;font-size: 24px; color: rgb(0, 0, 204);&quot;&gt;&amp;lt;script .. / &amp;gt;&lt;/font&gt;" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
+          <mxGeometry x="120" y="110" width="140" height="35" as="geometry" />
+        </mxCell>
+        <mxCell id="6I3-yhUzZdZ5X9dP0GwG-11" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="1" source="6I3-yhUzZdZ5X9dP0GwG-7" target="6I3-yhUzZdZ5X9dP0GwG-7">
+          <mxGeometry relative="1" as="geometry" />
+        </mxCell>
+        <mxCell id="6I3-yhUzZdZ5X9dP0GwG-12" value="" style="endArrow=classic;startArrow=none;html=1;rounded=0;exitX=0.5;exitY=1;exitDx=0;exitDy=0;startFill=0;strokeColor=#0000CC;" edge="1" parent="1" source="6I3-yhUzZdZ5X9dP0GwG-9" target="6I3-yhUzZdZ5X9dP0GwG-13">
+          <mxGeometry width="50" height="50" relative="1" as="geometry">
+            <mxPoint x="440" y="310" as="sourcePoint" />
+            <mxPoint x="210" y="430" as="targetPoint" />
+            <Array as="points">
+              <mxPoint x="190" y="310" />
+              <mxPoint x="615" y="310" />
+            </Array>
+          </mxGeometry>
+        </mxCell>
+        <mxCell id="6I3-yhUzZdZ5X9dP0GwG-13" value="" style="ellipse;whiteSpace=wrap;html=1;strokeColor=#b85450;fillColor=#f8cecc;opacity=30;" vertex="1" parent="1">
+          <mxGeometry x="590" y="273" width="50" height="20" as="geometry" />
+        </mxCell>
+      </root>
+    </mxGraphModel>
+  </diagram>
 </mxfile>
diff --git a/docs/source/planning/hld.rst b/docs/source/planning/hld.rst
index e4daf0c21f0af52da8ed29c7432d25e37c8ddda1..89470d2eafdcf7e0d206a63a5f4b8f52858cc2d5 100644
--- a/docs/source/planning/hld.rst
+++ b/docs/source/planning/hld.rst
@@ -35,6 +35,24 @@ Ideas
 - For the Geant-managed heat maps: maybe nice to agree upon a simple grid-locked geo-node/edge approach
 
 
+Updated High-Level Architecture
+-------------------------------
+
+.. only:: drawio
+
+   .. drawio-image:: design.drawio
+      :page-name: ml-arch
+
+
+Schematic of SVG Element Management
+-------------------------------------
+
+.. only:: drawio
+
+   .. drawio-image:: design.drawio
+      :page-name: svg-class-schematic
+
+
 High-Level Architecture
 -------------------------
 
diff --git a/mapping_provider/__init__.py b/mapping_provider/__init__.py
index aa309f9cfa78136a8ef621a23d83e13d37b4dffa..22fda74567995b898a573c934c34ef4bac364245 100644
--- a/mapping_provider/__init__.py
+++ b/mapping_provider/__init__.py
@@ -1,15 +1,88 @@
-"""Initializes the FastAPI application."""
+"""
+Default entry point for the FastAPI application.
+"""
+import contextlib
+import logging
+import tempfile
+import threading
+from collections.abc import AsyncIterator
+from functools import partial
 
 from fastapi import FastAPI
 
-from mapping_provider.api.common import router as version_router
+from mapping_provider import config, environment
+from mapping_provider.api import common, map
+from mapping_provider.backends import brian, cache, correlator, inventory
+
+logger = logging.getLogger(__name__)
+
+
+@contextlib.asynccontextmanager
+async def lifespan(app: FastAPI, app_config: config.Configuration) -> AsyncIterator[None]:
+
+    if not app_config.rmq:
+        return  # don't start any background tasks
+
+    with tempfile.TemporaryDirectory() as _tmp_working_dir:
+
+        cache.init(_tmp_working_dir)
+
+        stop_event = threading.Event()
+        _correlator_thread = threading.Thread(
+            target=correlator.consume_status,
+            daemon=True,
+            kwargs={
+                'correlator_state_broadcast_exchange_name': app_config.correlator_exchange,
+                'rmq_params': app_config.rmq,
+                'stop_event': stop_event,
+            })
+        _correlator_thread.start()
+
+        _inventory_thread = threading.Thread(
+            target=inventory.worker_proc,
+            daemon=True,
+            kwargs={
+                'inventory_base_uri': app_config.inventory,
+                'reporting_base_uri': app_config.reporting,
+                'refresh_frequency_seconds': 300,
+                'stop_event': stop_event,
+            })
+        _inventory_thread.start()
+
+        _brian_thread = threading.Thread(
+            target=brian.worker_proc,
+            daemon=True,
+            kwargs={
+                'brian_params': app_config.brian,
+                'refresh_frequency_seconds': 300,
+                'stop_event': stop_event,
+            })
+        _brian_thread.start()
+
+        yield None  # wait here until the app is shutting down (mypy needs a value to be yielded)
+
+        stop_event.set()
+        _correlator_thread.join(timeout=10)
+        _inventory_thread.join(timeout=10)
+        logger.info("background threads joined")
 
 
 def create_app() -> FastAPI:
-    """Create a FastAPI application."""
+    """
+    Creates the FastAPI application instance, with routers attached.
+    """
+    environment.setup_logging()
+
+    app_config = config.load()
+    if app_config.sentry:
+        environment.setup_sentry(app_config.sentry)
+
     app = FastAPI(
         title="Mapping provider",
         description="Mapping provider endpoints for GÉANT maps",
+        lifespan=partial(lifespan, app_config=app_config),
     )
-    app.include_router(version_router)
+    app.include_router(common.router)
+    app.include_router(map.router, prefix='/map')
+
     return app
diff --git a/mapping_provider/api/common.py b/mapping_provider/api/common.py
index 9c528b0e71b78ccb6f8a8f607359a2013ff60c50..3712b8e96d5cd7a76724cbd7bdbd0f5c0515ef37 100644
--- a/mapping_provider/api/common.py
+++ b/mapping_provider/api/common.py
@@ -1,14 +1,22 @@
-from importlib.metadata import PackageNotFoundError, version
+from importlib.metadata import version
 
 from fastapi import APIRouter
+from pydantic import BaseModel
 
 router = APIRouter()
 
 
+class Version(BaseModel):
+    module: str
+    api: str
+
+
 @router.get("/version")
-def get_version() -> dict[str, str]:
-    """Get the version of the package."""
-    try:
-        return {"version": version("mapping_provider")}
-    except PackageNotFoundError:
-        return {"version": "unknown"}
+def get_version() -> Version:
+    """
+    handler for /version
+    """
+    return Version(
+        module = version('mapping_provider'),
+        api = '0.1'
+    )
diff --git a/mapping_provider/api/map.py b/mapping_provider/api/map.py
new file mode 100644
index 0000000000000000000000000000000000000000..54fdba9b8b3f03bee869be61c44731966415784c
--- /dev/null
+++ b/mapping_provider/api/map.py
@@ -0,0 +1,148 @@
+from typing import Any
+
+import jsonschema
+import requests
+from fastapi import APIRouter, HTTPException
+from pydantic import BaseModel
+
+from mapping_provider import config
+from mapping_provider.backends import services
+
+router = APIRouter()
+
+
+class Pop(BaseModel):
+    latitude: float | None
+    longitude: float | None
+    name: str
+    abbreviation: str
+    city: str
+    country: str
+
+
+class PopList(BaseModel):
+    pops: list[Pop]
+
+
+class Equipment(BaseModel):
+    name: str
+    pop: str
+    status: str
+
+
+class EquipmentList(BaseModel):
+    equipment: list[Equipment]
+
+
+INPROV_POP_LIST_SCHEMA = {
+    '$schema': 'https://json-schema.org/draft/2020-12/schema',
+
+    'definitions': {
+        'pop': {
+            'type': 'object',
+            'properties': {
+                'name': {'type': 'string'},
+                'abbreviation': {'type': 'string'},
+                'city': {'type': 'string'},
+                'country': {'type': 'string'},
+                'latitude': {'type': ['number', 'null']},
+                'longitude': {'type': ['number', 'null']},
+            },
+            'required': ['name', 'abbreviation', 'city', 'country', 'latitude', 'longitude'],
+            'additionalProperties': True,
+        },
+    },
+
+    'type': 'array',
+    'items': {'$ref': '#/definitions/pop'}
+}
+
+INPROV_EQUIPMENT_LIST_SCHEMA = {
+    '$schema': 'https://json-schema.org/draft/2020-12/schema',
+
+    'definitions': {
+        'router': {
+            'type': 'object',
+            'properties': {
+                'name': {'type': 'string'},
+                'pop': {'type': 'string'},
+                'status': {'type': 'string'},
+            },
+            'required': ['name', 'pop', 'status'],
+        },
+    },
+
+    'type': 'array',
+    'items': {'$ref': '#/definitions/router'}
+}
+
+
+@router.get("/pops")
+def get_pops() -> PopList:
+    """
+    handler for /pops
+    """
+    # TODO: catch/handle the usual exceptions
+
+    app_params = config.load()
+    rv = requests.get(
+        f'{app_params.inventory}/map/pops',
+        headers={'Accept': 'application/json'})
+    rv.raise_for_status()
+    pop_list_obj = rv.json()
+    jsonschema.validate(pop_list_obj, INPROV_POP_LIST_SCHEMA)
+
+    def _make_pop(pop_dict: dict[str, Any]) -> Pop:
+        return Pop(
+            latitude=pop_dict['latitude'],
+            longitude=pop_dict['longitude'],
+            name=pop_dict['name'],
+            abbreviation=pop_dict['abbreviation'],
+            city=pop_dict['city'],
+            country=pop_dict['country'],
+        )
+    return PopList(pops=list(map(_make_pop, pop_list_obj)))
+
+
+@router.get("/equipment")
+def get_equipment() -> EquipmentList:
+    """
+    handler for /equipment
+    """
+    # TODO: catch/handle the usual exceptions
+
+    app_params = config.load()
+    rv = requests.get(
+        f'{app_params.inventory}/map/equipment',
+        headers={'Accept': 'application/json'})
+    rv.raise_for_status()
+    equipment_list_obj = rv.json()
+    jsonschema.validate(equipment_list_obj, INPROV_EQUIPMENT_LIST_SCHEMA)
+
+    def _make_equipment(equipment_dict: dict[str, Any]) -> Equipment:
+        return Equipment(
+            name=equipment_dict['name'],
+            pop=equipment_dict['pop'],
+            status=equipment_dict['status'],
+        )
+    return EquipmentList(equipment=list(map(_make_equipment, equipment_list_obj)))
+
+
+@router.get("/services")
+@router.get("/services/{service_type}")
+def get_services(service_type: str | None = None) -> services.ServiceList:
+    """
+    handler for /trunks
+    """
+    return_value = services.build_service_info_list(service_type=service_type)
+    if not return_value.services:
+        raise HTTPException(status_code=404, detail=f'unrecognized service type: {service_type}')
+    return return_value
+
+
+@router.get("/trunks")
+def get_trunks() -> services.ServiceList:
+    """
+    handler for /trunks, same as /services/IP TRUNK
+    """
+    return get_services(service_type='IP TRUNK')
diff --git a/mapping_provider/backends/__init__.py b/mapping_provider/backends/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/mapping_provider/backends/brian.py b/mapping_provider/backends/brian.py
new file mode 100644
index 0000000000000000000000000000000000000000..c2914b3e0eaf22a8c04f661209fe26aa0d9780f7
--- /dev/null
+++ b/mapping_provider/backends/brian.py
@@ -0,0 +1,185 @@
+import contextlib
+import logging
+import time
+from collections.abc import Generator
+from threading import Event
+from typing import Any
+
+from influxdb import InfluxDBClient
+
+from mapping_provider import config
+from mapping_provider.backends import cache
+
+logger = logging.getLogger(__name__)
+
+# os.environ['SETTINGS_FILENAME'] = os.path.join(os.path.dirname(__file__), 'config.json')
+
+# params = config.load()
+
+
+
+CACHED_BRIAN_SCID_RATES_FILENAME = 'brian-scid-rates.json'
+
+CACHED_SCID_RATES_SCHEMA = {
+    "$schema": "https://json-schema.org/draft/2020-12/schema",
+
+    "definitions": {
+
+        "in-out-rates": {
+            "type": "object",
+            "properties": {
+                "ingress": {"type": ["number", "null"]},
+                "egress": {"type": ["number", "null"]},
+            },
+            "required": ["ingress", "egress"],
+            "additionalProperties": False,
+        },
+        "rate-stats": {
+            "type": "object",
+            "properties": {
+                "latest": {"$ref": "#/definitions/in-out-rates"},
+                "mean": {"$ref": "#/definitions/in-out-rates"},
+                "max": {"$ref": "#/definitions/in-out-rates"},
+            },
+            "required": ["latest", "mean", "max"],
+            "additionalProperties": False,
+        },
+        "service-rate": {
+            "type": "object",
+            "properties": {
+                "scid": {"type": "string"},
+                "values": {"$ref": "#/definitions/rate-stats"},
+            },
+            "required": ["scid", "values"],
+            "additionalProperties": False,
+        },
+    },
+
+    "type": "array",
+    "items": {"$ref": "#/definitions/service-rate"},
+}
+
+@contextlib.contextmanager
+def influx_client(
+    influx_params: config.InfluxConnectionParams) -> Generator[InfluxDBClient]:
+    """
+    context manager for creating an influx db connection
+
+    exactly one of schema_name or database should be provided
+
+    :param influx_params: the 'influx' element from config
+    :param database: a key from INFLUX_COUNTER_SCHEMAS
+    :return:
+    """
+
+    client = None
+    try:
+        client = InfluxDBClient(
+            host=influx_params.hostname,
+            port=influx_params.port,
+            database=influx_params.database,
+            username=influx_params.username,
+            password=influx_params.password,
+            ssl=influx_params.ssl,
+            verify_ssl=influx_params.ssl)
+        yield client
+    finally:
+        if client:
+            logger.debug('closing influx session')
+            client.close()
+
+
+def _load_scid_rates_rows(
+        influx_params: config.InfluxConnectionParams,
+        window: str = '24h') -> Generator[dict[str, str | float | None]]:
+    """
+    Return the count of all fields, grouped by
+    hostname & interface_name.
+
+    :param influx_params: the 'influx' element from config
+    :param schema_name: a key from INFLUX_COUNTER_SCHEMAS
+    :param window: time filter
+    :return:
+    """
+
+    with influx_client(influx_params) as influx:
+
+        query = ('select'
+                 ' last(ingress) as latest_ingress,'
+                 ' last(egress) as latest_egress,'
+                 ' mean(ingress) as mean_ingress,'
+                 ' mean(egress) as mean_egress,'
+                 ' max(ingress) as max_ingress,'
+                 ' max(egress) as max_egress'
+                 ' from scid_rates'
+                 f' where time > now() - {window}'
+                 ' group by scid')
+
+        logger.debug(query)
+        result = influx.query(query)
+
+        for series in result.raw['series']:
+            tags = series['tags']
+            columns = series['columns']
+            values = series['values']
+            assert len(values) == 1
+
+            for row in values:
+                rate = {'scid': tags['scid']}
+                for field_name, field_value in zip(columns, row, strict=False):
+                    rate[field_name] = field_value
+                yield rate
+
+
+def load_scid_rates(influx_params: config.InfluxConnectionParams) -> list[dict[str, Any]]:
+    rates = []
+
+    def _bitrate_or_none(row: dict[str, Any], field_name: str) -> float | None:
+        _rate = row.get(field_name, None)
+        assert isinstance(_rate, float | None)  # mypy noise
+        if _rate:
+            return _rate * 8
+        return _rate  # could be 0 or None
+
+    for r in _load_scid_rates_rows(influx_params):
+
+        values = {
+            'latest': {
+                'ingress': _bitrate_or_none(r, 'latest_ingress'),
+                'egress': _bitrate_or_none(r, 'latest_egress')
+            },
+            'mean': {
+                'ingress': _bitrate_or_none(r, 'mean_ingress'),
+                'egress': _bitrate_or_none(r, 'mean_egress')
+            },
+            'max': {
+                'ingress': _bitrate_or_none(r, 'max_ingress'),
+                'egress': _bitrate_or_none(r, 'max_egress')
+            },
+        }
+        rates.append({
+            'scid': r['scid'],
+            'values': values
+        })
+
+    cache.set(CACHED_BRIAN_SCID_RATES_FILENAME, rates)
+    return rates  # <-- caller can also retrieve this from the cache
+
+
+def worker_proc(
+        brian_params: config.InfluxConnectionParams,
+        refresh_frequency_seconds: int,
+        stop_event: Event | None = None) -> None:
+
+    def _should_stop() -> bool:
+        return stop_event.is_set() if stop_event else False
+
+    while not _should_stop():
+
+        load_scid_rates(brian_params)
+
+        # wait and the restart the loop
+        if stop_event:
+            stop_event.wait(timeout=refresh_frequency_seconds)
+        else:
+            time.sleep(refresh_frequency_seconds)
diff --git a/mapping_provider/backends/cache.py b/mapping_provider/backends/cache.py
new file mode 100644
index 0000000000000000000000000000000000000000..31021523bf7c1b71d15963246dc4f2ade6e9a7bc
--- /dev/null
+++ b/mapping_provider/backends/cache.py
@@ -0,0 +1,42 @@
+"""
+Trivial caching module for the mapping provider.
+
+The global variable `cache_dir` is set during FastAPI server startup.
+
+Could be replaced with a proper caching module in the future, or maybe
+just a simple dict.
+"""
+import json
+import logging
+import os
+from typing import Any
+
+logger = logging.getLogger(__name__)
+_cache_dir: str | None = None
+
+
+def init(cache_dir: str) -> None:
+    global _cache_dir
+    assert _cache_dir is None, "cache_dir has already been initialized"
+    _cache_dir = cache_dir
+    logger.debug(f"set cache directory: {_cache_dir}")
+
+
+def set(filename: str, data: Any) -> None:
+    """
+    data must be JSON-serializable.
+    """
+    assert _cache_dir is not None, "cache_dir hasn't been initialized"
+    with open(os.path.join(_cache_dir, filename), 'w') as f:
+        f.write(json.dumps(data))
+    logger.debug(f"wrote cached data: {filename}")
+
+
+def get(filename: str) -> Any:
+    """
+    Loads the cached data, parses it as json & returns the object.
+    """
+    assert _cache_dir is not None, "cache_dir hasn't been initialized"
+    with open(os.path.join(_cache_dir, filename)) as f:
+        logger.debug(f"reading cached data: {filename}")
+        return json.load(f)
diff --git a/mapping_provider/backends/correlator.py b/mapping_provider/backends/correlator.py
new file mode 100644
index 0000000000000000000000000000000000000000..d9ec3b710cd3c03db2bd227d4b735236640f7df6
--- /dev/null
+++ b/mapping_provider/backends/correlator.py
@@ -0,0 +1,157 @@
+import logging
+import os
+import socket
+import threading
+import time
+from typing import TYPE_CHECKING, Any
+
+if TYPE_CHECKING:
+    from mapping_provider.config import RMQConnectionParams
+
+from pika.exchange_type import ExchangeType
+
+from . import cache
+from .rmq.exchange import RabbitMQClient, default_rmq_connection_params
+
+logger = logging.getLogger(__name__)
+
+CACHED_CORRELATOR_STATE_FILENAME = 'correlator-state.json'
+ALARM_STATE_MESSAGE_SCHEMA = {
+    "$schema": "https://json-schema.org/draft/2020-12/schema",
+    "definitions": {
+        "list-of-strings": {
+            # shorthand for a repeated type ...
+            "type": "array",
+            "items": {"type": "string"},
+        },
+        "location": {
+            "type": "object",
+            "properties": {
+                "site": {"type": "string"},
+                "equipment": {"type": "string"}
+            },
+        },
+        "severity": {
+            "type": "string",
+            # TODO: gen from AlarmSeverity
+            "enum": ["HIDE", "WARNING", "MINOR", "MAJOR", "CRITICAL"],
+        },
+        "endpoint": {
+            "type": "object",
+            "properties": {
+                "uuid": {"type": "string"},
+                "type": {"type": "string"},
+                "name": {"type": "string"},
+                "projects": {"$ref": "#/definitions/list-of-strings"},
+                "alarm": {"type": "string"},
+                "init_time": {"type": "number"},
+                "last_activity_ts": {"type": "number"},
+                "services": {"type": "array", "items": {"type": "object"}},
+                "locations": {
+                    "type": "array",
+                    "items": {"$ref": "#/definitions/location"},
+                },
+                # not needed - sanity checks only
+                "event_history": {"$ref": "#/definitions/list-of-strings"},
+                "up": {"type": "boolean"},
+                # skipping validation of type-specific params
+                # such as peer, router, interfaces, snmp, asn, etc
+            },
+            "required": [
+                "uuid",
+                "type",
+                "name",
+                "alarm",
+                "projects",
+                "init_time",
+                "last_activity_ts",
+                "locations",
+                "event_history",
+                "up",
+            ],
+        },
+        "alarm": {
+            "type": "object",
+            "properties": {
+                "uuid": {"type": "string"},
+                "db_id": {"type": "integer"},
+                "phase": {
+                    "type": "string",
+                    "enum": ["PENDING", "FINALIZED", "KILL_ME"],
+                },
+                "final_severity": {
+                    # this field is null until phase is FINALIZED
+                    "oneOf": [{"$ref": "#/definitions/severity"}, {"type": "null"}]
+                },
+                "severity": {"$ref": "#/definitions/severity"},
+                "state": {
+                    "type": "string",
+                    "enum": ["OPEN", "CLOSED"],  # TODO: gen from AlarmState
+                },
+                # note: list-of-strings is in _ENDPOINT_SCHEMA_DEFS
+                "endpoints": {"$ref": "#/definitions/list-of-strings"},
+                "description": {"type": "string"},
+                "devoured": {"type": "array", "items": {"type": "integer"}},
+            },
+            "required": [
+                "uuid",
+                "db_id",
+                "phase",
+                "severity",
+                "final_severity",
+                "state",
+                "endpoints",
+                "description",
+            ],
+        },
+    },
+    "type": "object",
+    "properties": {
+        "alarms": {"type": "array", "items": {"$ref": "#/definitions/alarm"}},
+        "endpoints": {"type": "array", "items": {"$ref": "#/definitions/endpoint"}},
+    },
+    "required": ["alarms", "endpoints"],
+}
+
+
+def handle_correlator_state_broadcast(message: dict[str, Any]) -> None:
+    cache.set(CACHED_CORRELATOR_STATE_FILENAME, message)
+
+
+def consume_status(
+        correlator_state_broadcast_exchange_name: str,
+        rmq_params: 'RMQConnectionParams',
+        stop_event: threading.Event | None = None) -> None:
+    """
+    Consume the correlator state broadcast exchange forever.
+    When a message is received, update the global availability state cache.
+
+    :param correlator_state_broadcast_exchange_name:
+        The name of the correlator state broadcast exchange.
+    :param rmq_params: RabbitMQ connection parameters.
+    """
+
+    cp = default_rmq_connection_params(
+        hostname=rmq_params.brokers,
+        username=rmq_params.username,
+        password=rmq_params.password,
+        vhost=rmq_params.vhost)
+
+    queue_name = (
+        f"mapping-provider-{socket.getfqdn()}"
+        f"-{os.getpid()}.{threading.get_ident()}.{time.time()}"
+    )
+
+    client = RabbitMQClient(
+        connection_params=cp,
+        exchange_name=correlator_state_broadcast_exchange_name,
+        exchange_type=ExchangeType.fanout,
+        queue_name=queue_name,
+        exclusive=True,
+        reconnect_on_idle_timeout=120,
+        stop_event=stop_event)
+
+    client.consume_forever(
+        callback=handle_correlator_state_broadcast,
+        json=True,
+        schema=ALARM_STATE_MESSAGE_SCHEMA)
diff --git a/mapping_provider/backends/inventory.py b/mapping_provider/backends/inventory.py
new file mode 100644
index 0000000000000000000000000000000000000000..cb90ebe0c6f8d2ec081b4aed1de9dc097084004b
--- /dev/null
+++ b/mapping_provider/backends/inventory.py
@@ -0,0 +1,179 @@
+import concurrent.futures
+import logging
+import time
+from threading import Event
+from typing import Any
+
+import jsonschema
+import requests
+
+from . import cache
+
+logger = logging.getLogger(__name__)
+
+REPORTING_SCID_CURRENT_CACHE_FILENAME = 'reporting-scid-current.json'
+INPROV_EQUIPMENT_CACHE_FILENAME = 'inprov-equipment.json'
+
+
+REPORTING_SCID_CURRENT_CACHE_SCHEMA = {
+    '$schema': 'https://json-schema.org/draft/2020-12/schema',
+    'definitions': {
+
+        'interface': {
+            'type': 'object',
+            'properties': {
+                'hostname': {'type': 'string'},
+                'interface': {'type': 'string'},
+                # 'addresses': {
+                #     'type': 'array',
+                #     'items': {'type': 'string'}
+                # }
+            },
+            'required': ['hostname', 'interface']
+        },
+
+        'lambda_interface': {
+            'type': 'object',
+            'properties': {
+                'equipment': {'type': 'string'},
+                'port': {'type': 'string'},
+            },
+            'required': ['equipment', 'port']
+        },
+
+        'service': {
+            'type': 'object',
+            'properties': {
+                'scid': {'type': 'string'},
+                'sid': {'type': 'string'},
+                'name': {'type': 'string'},
+                'speed': {'type': 'integer'},
+                'status': {'type': 'string'},
+                # 'monitored': {'type': 'boolean'},
+                'service_type': {'type': ['string', 'null']},
+                # 'imsid': {'type': 'integer'},
+                # 'customers': {
+                #     'type': 'array',
+                #     'items': {'type': 'string'}
+                # },
+                'endpoints': {
+                    'type': 'array',
+                    'items': {
+                        'anyOf': [
+                            {'$ref': '#/definitions/interface'},
+                            {'$ref': '#/definitions/lambda_interface'},
+                        ]
+                    }
+                }
+            },
+            'required': ['scid', 'sid', 'name', 'speed', 'status', 'service_type', 'endpoints'],
+            # 'required': ['scid', 'sid', 'name',
+            #              'speed', 'status', 'monitored',
+            #              'service_type', 'imsid', 'customers', 'endpoints'],
+            # 'additionalProperties': False
+        },
+    },
+
+    'type': 'array',
+    'items': {'$ref': '#/definitions/service'}
+}
+
+
+INPROV_EQUIPMENT_LIST_SCHEMA = {
+    '$schema': 'https://json-schema.org/draft/2020-12/schema',
+
+    'definitions': {
+        'equipment': {
+            'type': 'object',
+            'properties': {
+                'name': {'type': 'string'},
+                'pop': {'type': 'string'},
+                'status': {'type': 'string'},
+            },
+            'required': ['name', 'pop', 'status'],
+            # 'additionalProperties': False
+        },
+    },
+
+    'type': 'array',
+    'items': {'$ref': '#/definitions/equipment'}
+}
+
+
+def _load_and_cache_json(
+        key: str,
+        url: str,
+        cache_filename: str,
+        schema: dict[str, Any] | None = None) -> dict[str, Any]:
+    """
+    Load the JSON from the URL, return and cache it.
+
+    :param key: key to return with the loaded data for distinguishing futures
+    :param url: URL to load the data from
+    :param cache_filename: filename to cache the data under
+    """
+    # TODO: proper error handling
+    # TODO: maybe try to return cached data if http fails?
+    rv = requests.get(url)
+    rv.raise_for_status()
+
+    rsp_object = rv.json()
+    if schema:
+        jsonschema.validate(instance=rsp_object, schema=schema)
+
+    cache.set(cache_filename, rsp_object)
+    return {
+        'key': key,
+        'value': rsp_object
+    }
+
+
+def _load_all_inventory(inventory_base_uri: str, reporting_base_uri: str) -> dict[str, Any]:
+    """
+    Load and process service info from inventory+reporting provider.
+
+    :param inventory_base_uri: base URI of the inventory provider
+    :param reporting_base_uri: base URI of the reporting provider
+    :return: list of services
+    """
+
+    with concurrent.futures.ThreadPoolExecutor(max_workers=1) as executor:
+        futures = [
+            executor.submit(
+                _load_and_cache_json,
+                key='map-services',
+                url=f'{inventory_base_uri}/map/equipment',
+                cache_filename=INPROV_EQUIPMENT_CACHE_FILENAME,
+                schema=INPROV_EQUIPMENT_LIST_SCHEMA),
+            executor.submit(
+                _load_and_cache_json,
+                key='scid-current',
+                url=f'{reporting_base_uri}/scid/current',
+                cache_filename=REPORTING_SCID_CURRENT_CACHE_FILENAME,
+                schema=REPORTING_SCID_CURRENT_CACHE_SCHEMA),
+        ]
+        responses = {}
+        for _f in concurrent.futures.as_completed(futures):
+            responses[_f.result()['key']] = _f.result()['value']
+
+    return responses
+
+
+def worker_proc(
+        inventory_base_uri: str,
+        reporting_base_uri: str,
+        refresh_frequency_seconds: int,
+        stop_event: Event | None = None) -> None:
+
+    def _should_stop() -> bool:
+        return stop_event.is_set() if stop_event else False
+
+    while not _should_stop():
+
+        _load_all_inventory(inventory_base_uri, reporting_base_uri)
+
+        # wait and the restart the loop
+        if stop_event:
+            stop_event.wait(timeout=refresh_frequency_seconds)
+        else:
+            time.sleep(refresh_frequency_seconds)
diff --git a/mapping_provider/backends/rmq/__init__.py b/mapping_provider/backends/rmq/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/mapping_provider/backends/rmq/exchange.py b/mapping_provider/backends/rmq/exchange.py
new file mode 100644
index 0000000000000000000000000000000000000000..ef3f5fe004d2a4e396e9ea4195518746bb3b76c7
--- /dev/null
+++ b/mapping_provider/backends/rmq/exchange.py
@@ -0,0 +1,562 @@
+"""
+
+copied from: dashboard-v3-python v0.226, dashboard.messaging.exchange
+updated typehints to satisfy mypy, and linted with changes suggested by ruff
+
+"""
+import json
+import logging
+import threading
+import time
+from collections.abc import Callable, Generator, Iterator, Sequence
+from json import JSONDecodeError
+from typing import Any
+
+import jsonschema
+import pika
+import pika.channel
+from pika.adapters.blocking_connection import BlockingChannel
+from pika.exceptions import AMQPError
+from pika.exchange_type import ExchangeType
+
+from .queue import setup_channel
+
+logger = logging.getLogger(__name__)
+
+
+def now() -> float:
+    return time.monotonic()
+
+
+def default_rmq_connection_params(
+    hostname: str | Sequence[str],
+    username: str,
+    password: str,
+    vhost: str,
+    port: int = 5672,
+) -> Sequence[pika.ConnectionParameters]:
+    """
+    build a list of pika.ConnectionParameters objects for connecting
+    to the cluster
+
+    :param hostname: hostname or list of hostnames
+    :param username: username (same for all hostnames)
+    :param password: password (same for all hostnames)
+    :param vhost: connection vhost
+    :param port: port (default value = 5672, same for all hostnames)
+    :return: list of pika.ConnectionParameters
+    """
+    hostnames = [hostname] if isinstance(hostname, str) else hostname
+    logger.debug(f"rmq hostnames: {hostnames}")
+    return [
+        pika.ConnectionParameters(
+            host=h,
+            port=port,
+            virtual_host=vhost,
+            credentials=pika.PlainCredentials(username, password),
+        )
+        for h in hostnames
+    ]
+
+
+class RMQResponse:
+    def __init__(
+        self,
+        body: bytes,
+        client: "RabbitMQClient",
+        delivery_tag: int = 0,
+        reply_to: str | None = None
+    ):
+        self.body = body
+        self.client = client
+        self.delivery_tag = delivery_tag
+        self.reply_to = reply_to
+
+    def ack(self) -> None:
+        # TODO: Handle AMQP error when acking fails
+        self.client.maybe_ack(self.delivery_tag)
+
+    def json(self, schema: dict[str, Any] | None = None) -> Any:
+        """try and load the response body as a json object.
+        :param schema: Optional. A jsonschema dictionary to validate the json response
+        if the json parsing or validation fails, this method will ensure that the
+        message is still acked
+        """
+        try:
+            result = json.loads(self.body)
+            if schema is not None:
+                jsonschema.validate(result, schema)
+        except (JSONDecodeError, jsonschema.ValidationError):
+            self.ack()  # Maybe we should actually nack the message here
+            raise
+        return result
+
+    def reply(self, body: str | bytes) -> None:
+        self.client.send_message(
+            body=body,
+            exchange_name="",
+            exchange_type=ExchangeType.direct,
+            routing_key=self.reply_to,
+        )
+
+
+class RabbitMQClient:
+    """
+    A RabbitMQClient can connect to RabbitMQ and persisently maintain that connection.
+    It will reconnect on connection failures. It has two modes of operation for
+    consuming a queue. The first is by explicitly requesting messages through the
+    ``get_message`` method:
+
+    .. code-block:: python
+
+        consumer = RabbitMQConsumer(cp, 'exchange', 'queue', exchange_type='fanout')
+        while True:
+            response = consumer.get_message()
+            ... # handle message
+            response.ack()
+
+    or through it's run_forever mode:
+
+    .. code-block:: python
+
+        def mycallback(message: dict):
+            pass
+
+        consumer = RabbitMQConsumer(cp, 'exchange', 'queue', exchange_type='fanout')
+        consumer.run_forever(mycallback, json=True)
+
+    The consumer is not thread safe and only a single message may be handled at a time
+
+    For sending messages (producing), you can use the `send_message()` method. This
+    method will ensure that a message is sent, by reconnecting to rabbitmq in case of
+    a failure.
+    """
+
+    STOP_CHECK_FREQUENCY_S = 5
+    PAUSE_BEFORE_RECONNECT_S = 5
+    DEFAULT_PREFETCH_COUNT = 50
+    connection: pika.BlockingConnection | None = None
+    channel: BlockingChannel | None = None
+    consumer: Iterator[Any] | None = None
+    # consumer: Generator[Any, None, None] | None = None
+    last_message_ts = None
+    _close_time = None
+
+    def __init__(
+        self,
+        connection_params: pika.ConnectionParameters | Sequence[pika.ConnectionParameters],
+        exchange_name: str,
+        exchange_type: ExchangeType,
+        queue_name: str | None = None,
+        routing_keys: str | Sequence[str] | None = None,
+        exclusive: bool = False,
+        single_active_consumer: bool = False,
+        quorum_queue: bool = False,
+        prefetch_count: int = DEFAULT_PREFETCH_COUNT,
+        auto_ack: bool = False,
+        reconnect_on_idle_timeout: float | None = None,
+        reconnect_callback: Callable[[], None] | None= None,
+        error_callback: Callable[[Exception], None] | None = None,
+        stop_event: threading.Event | None = None,
+        pause_before_reconnect: float | None = PAUSE_BEFORE_RECONNECT_S,
+    ):
+        """
+        :param connection_params: rmq connection parameters
+        :param exchange_name: rmq exchange name
+        :param queue_name: rmq queue name
+        :param exchange_type: rmw exchange type, either 'direct' or 'fanout'
+        :param routing_keys: Either a single string or a sequence of strings that will
+            be used as routing key for 'direct' exchanges. Default: None
+        :param exclusive: is this an exclusive queue? Exclusive queues are destroying on
+            disconnect. Default: False
+        :param single_active_consumer: The queue has can have a maximum of 1 active
+            consumer. If multiple consumers are connecting to the same queue, they do
+            not receive any messages until the current active consumer disconnects for
+            some reason and they become the active consumer. Default: False.
+        :param prefetch_count: Limit the number of messages to prefetch from the broker.
+            This is highly recommended. Set to None to disable and let the broker
+            decide. Default: ``DEFAULT_PREFETCH_COUNT``
+        :param auto_ack: automatically acknowledge messages. Default: False.
+        :param reconnect_callback: Optional callback that will be called when
+            reconnecting. Default: None
+        :param error_callback: Optional callback that will be called when an AMQPEror
+            is raised or an invalid json message is received. Default: None
+        :param reconnect_on_timeout: Maximum idle time between subsequent
+            messages before triggering a reconnect. Default: None
+        :param pause_before_reconnect: Sleep a number of seconds between disconnecting
+            and reconnecting. Supply a value that evaluates to False (0, None, False) to
+            disable sleeping. Default: ``PAUSE_BEFORE_RECONNECT_S``.
+        :param stop_event: A `threading.Event` that will be checked periodically to
+            determine whether the consumer should stop. Default: None
+        """
+
+        self.connection_params = self._ensure_connection_params(connection_params)
+        self.exchange_name = exchange_name
+        self.queue_name = queue_name
+        self.exchange_type = exchange_type
+
+        self.routing_keys: Sequence[str] = []  # for mypy
+        if routing_keys is None:
+            self.routing_keys = []
+        elif isinstance(routing_keys, str):
+            self.routing_keys = [routing_keys]
+        elif isinstance(routing_keys, Sequence):
+            self.routing_keys = routing_keys
+        else:
+            raise AssertionError("impossible - only here for mypy clarity")
+
+        self.exclusive = exclusive
+        self.single_active_consumer = single_active_consumer
+        self.quorum_queue = quorum_queue
+        self.prefetch_count = prefetch_count
+        self.auto_ack = auto_ack
+        self.reconnect_on_idle_timeout = reconnect_on_idle_timeout
+        self.reconnect_callback = reconnect_callback
+        self.error_callback = error_callback
+        self.stop_event = stop_event
+        self.pause_before_reconnect = pause_before_reconnect
+
+    @staticmethod
+    def _ensure_connection_params(
+        connection_params: dict[str, Any] | pika.ConnectionParameters | Sequence[pika.ConnectionParameters]
+    ) -> pika.ConnectionParameters | Sequence[pika.ConnectionParameters]:
+        if not isinstance(connection_params, dict):
+            return connection_params
+
+        if "hostname" in connection_params:
+            hostname = connection_params["hostname"]
+        elif "hostnames" in connection_params:
+            hostname = connection_params["hostnames"]
+        else:
+            raise ValueError(
+                "Connection parameters must contain either 'hostname' or 'hostnames'"
+            )
+        return default_rmq_connection_params(
+            hostname,
+            username=connection_params["username"],
+            password=connection_params["password"],
+            vhost=connection_params["vhost"],
+        )
+
+    def connection_str(self) -> str:
+        result = self.exchange_name
+        if self.queue_name:
+            result += f"/{self.queue_name}"
+        if self.routing_keys and self.routing_keys[0]:
+            result += f" with routing key(s): {','.join(self.routing_keys)}"
+        return result
+
+    def __enter__(self) -> "RabbitMQClient":
+        return self
+
+    def __exit__(self, *args: Any, **kwargs: Any) -> None:
+        self.close()
+
+    def __del__(self) -> None:
+        self.close()
+
+    def _connect(self, as_consumer: bool = True) -> tuple[pika.BlockingConnection, BlockingChannel, str | None]:
+        if self.connection is not None:
+            raise RuntimeError("Already connected")
+
+        if self._close_time is not None:
+            logger.warning(f"Detected rmq disconnect from {self.connection_str()}")
+            if self.reconnect_callback is not None:
+                self.reconnect_callback()
+
+        self._pause_before_reconnect()
+        logger.info(f"Connecting to rmq {self.connection_str()}")
+
+        connection = pika.BlockingConnection(self.connection_params)
+        channel, queue = setup_channel(
+            connection=connection,
+            exchange_name=self.exchange_name,
+            exchange_type=self.exchange_type,
+            queue_name=self.queue_name if as_consumer else None,
+            exclusive=self.exclusive,
+            single_active_consumer=self.single_active_consumer,
+            routing_keys=self.routing_keys,
+            prefetch_count=self.prefetch_count,
+            force_quorum_queue=self.quorum_queue,
+        )
+
+        return connection, channel, queue
+
+    def connect_consumer(self, timeout: float | None = None) -> None:
+        """
+        Create a channel and bind to the exchange/queue, setting the internal `consumer`
+        attribute
+
+        :param timeout: an optional timeout in seconds. The consumer will
+        yield None if no message is received within ``timeout`` seconds. default:
+        RabbitMQClient.STOP_CHECK_FREQUENCY_S
+
+        """
+        if self.consumer is not None:
+            return
+        timeout = timeout if timeout is not None else self.STOP_CHECK_FREQUENCY_S
+
+        self.connection, self.channel, self.queue_name = self._connect(as_consumer=True)
+
+        assert self.queue_name  # should be defined by _connect
+        self.consumer = self.channel.consume(
+            queue=self.queue_name, auto_ack=self.auto_ack, inactivity_timeout=timeout
+        )
+
+    def connect_publisher(self) -> None:
+        if self.connection is not None:
+            return
+        self.connection, self.channel, _ = self._connect(as_consumer=False)
+
+    def close(self) -> None:
+        if self.connection and self.connection.is_open:
+            self.connection.close()
+        self.consumer = None
+        self.channel = None
+        self.connection = None
+        self._close_time = now()
+
+    def consume_queue(self,
+                      json: bool = False,
+                      schema: dict[str, Any] | None = None,
+                      timeout: float | None = None,
+                      as_response: bool = False) -> Generator[Any]:
+        """
+        :param json: set to True to json decode all messages before invoking the
+            callback. This is ignored if ``as_response`` is set to True. Default False
+        :param schema: An optional jsonschema to validate the message against. Requires
+            the json parameter to be set to True
+        :param timeout: Optional timeout in seconds. See ``RabbitMQClient.get_message``.
+            In case of a timeout, this function will yield ``None``
+        :param as_response: yield ``RMQResponse`` objects instead of raw bytes or json
+            dictionary
+        """
+        if schema is not None and not json:
+            raise ValueError("Must set json to True when supplying a json schema")
+        with self:
+            while self._should_continue():
+                try:
+                    response = self.get_message(timeout=timeout, reset_last_ts=False)
+                except TimeoutError:
+                    yield None
+                    continue
+                except CancelledError:
+                    return
+                if as_response:
+                    yield response
+                elif json:
+                    try:
+                        yield response.json(schema=schema)
+                    except (JSONDecodeError, jsonschema.ValidationError) as e:
+                        logger.exception("error parsing message")
+                        self._handle_recoverable_error(e)
+                        continue
+                else:
+                    yield response.body
+
+                try:
+                    response.ack()
+                except AMQPError as e:
+                    logger.exception("Error while acknowledging message")
+                    self._handle_recoverable_error(e)
+                    self.close()  # trigger reconnect
+
+    def consume_forever(
+        self,
+        callback: Callable[[Any], None],
+        json: bool = False,
+        schema: dict[str, Any] | None = None,
+        timeout: float | None = None,
+        as_response: bool = False
+    ) -> None:
+        """
+        See RabbitMQClient.consume_queue for other other paramters
+
+        :param callback: a function that takes a message coming from the queue as a
+            single argument
+        """
+        for result in self.consume_queue(
+            json=json, schema=schema, timeout=timeout, as_response=as_response
+        ):
+            callback(result)
+
+    def get_message(
+        self, timeout: float | None = None, reset_last_ts: bool | None = None
+    ) -> RMQResponse:
+        """
+        Get a message from the queue, reconnecting when necessary. This may block
+        indefinitely.
+        :param timeout: Optional timeout in seconds. If given, this method will raise
+            `TimeoutError` if the timeout expired before a message was received. The
+            connection will be kept open. Warning: setting a large timeout may make
+            the program less responsive, since it will override the default timeout
+            (``RabbitMQClient.STOP_CHECK_FREQUENCY_S``)
+        :param reset_last_ts: whether or not to reset the last time a message was
+            received (RabbitMQClient.last_message_ts) at the beginning of this function.
+            Setting this to False will ensure that this function will correctly detect
+            when the connection has been idle for too long over multiple calls that do
+            not yield a message, but when the function does return because of a timeout.
+            By default this is set to False if a timeout is given. If no timeout is
+            given, this is by default set to True.
+        :return: An RMQResponse or None. If it is a valid response, the `content`
+            attribute is set the raw body of the message. It is set to None if returning
+            after the RabbitMQClient.stop_event is set
+        :raises TimeoutError: If a given custom timeout was reached while waiting for
+            messages
+        :raises Cancelled: After a ``RabbitMQClient.stop_event`` was set
+        """
+        if reset_last_ts is None:
+            reset_last_ts = timeout is None
+
+        if not self.last_message_ts or reset_last_ts:
+            self.last_message_ts = now()
+
+        while self._should_continue():
+            try:
+                self.connect_consumer(timeout=timeout)
+                try:
+                    assert self.consumer is not None
+
+                    method, properties, body = next(self.consumer)
+                except StopIteration:
+                    # Consumer was cancelled by broker
+                    logger.warning(f"Broker closed connection {self.connection_str()}")
+                    self.close()
+                    continue
+
+                if not self._should_continue():
+                    break
+
+                if body is not None:  # STOP_CHECK_FREQUENCY_S timeout
+                    self.last_message_ts = now()
+                    return RMQResponse(
+                        body=body,
+                        client=self,
+                        delivery_tag=method.delivery_tag,
+                        reply_to=properties.reply_to,
+                    )
+
+                if self._is_idle_for_too_long():
+                    logger.warning(
+                        f"No message received from '{self.connection_str()}' in"
+                        f" {self.reconnect_on_idle_timeout} seconds, reconnecting"
+                    )
+                    self.last_message_ts = now()
+                    self.close()
+                    continue
+
+                if timeout is not None:
+                    raise TimeoutError
+
+            except AMQPError as e:
+                logger.exception(
+                    f"An error occured while reading '{self.connection_str()}'"
+                )
+                self._handle_recoverable_error(e)
+                self.close()
+
+        raise CancelledError
+
+    def send_message(
+        self,
+        body: str | bytes,
+        exchange_name: str | None = None,
+        exchange_type: ExchangeType | None = None,
+        routing_key: str | None = None,
+        properties: pika.BasicProperties | None = None,
+    ) -> None:
+        """
+        Send a message to the exchange, retrying on AMQPError to ensure delivery
+        :param body: the message body (str or bytes)
+        :param exchange_name: Override exchange name. Default: None
+        :param exchange_type: Override exchange type. Default: None
+        :param routing_key: Override routing key. Default: None
+        :param properties: Additional pika.spec.BasicProperties message properties.
+            Default: None
+        """
+        if exchange_name is None:
+            exchange_name = self.exchange_name
+        if not exchange_type:
+            exchange_type = self.exchange_type
+
+        if routing_key is None:
+            routing_keys = self.routing_keys
+        else:
+            routing_keys = [routing_key]
+
+        if len(routing_keys) != 1:
+            raise RuntimeError("Can only publish messages with a single routing key")
+
+        if exchange_name != "" and (
+            (exchange_name, exchange_type) != (self.exchange_name, self.exchange_type)
+        ):
+            self.connect_publisher()
+            assert self.channel is not None
+            self.channel.exchange_declare(
+                exchange=exchange_name, exchange_type=exchange_type
+            )
+
+        while self._should_continue():
+            self.connect_publisher()
+            assert self.channel is not None
+
+            try:
+                self.channel.basic_publish(
+                    exchange=exchange_name,
+                    routing_key=routing_keys[0],
+                    # mypy won't allow str|bytes here, so ...
+                    body=body if isinstance(body, bytes) else body.encode('utf-8'),
+                    properties=properties,
+                )
+
+            except AMQPError as e:
+                logger.exception(
+                    f"An error occured sending a message to {exchange_name}"
+                    + f" with routing key '{routing_key}'"
+                    if routing_key
+                    else ""
+                )
+                self._handle_recoverable_error(e)
+                self.close()
+
+    def _should_continue(self) -> bool:
+        return not (self.stop_event and self.stop_event.is_set())
+
+    def _is_idle_for_too_long(self) -> bool:
+        idle_time = (
+            now() - self.last_message_ts if self.last_message_ts is not None else 0
+        )
+        return (
+            self.reconnect_on_idle_timeout is not None
+            and idle_time > self.reconnect_on_idle_timeout
+        )
+
+    def _pause_before_reconnect(self) -> None:
+        if not self.pause_before_reconnect or self._close_time is None:
+            return
+        sleep_time = self._close_time + self.pause_before_reconnect - now()
+        if sleep_time > 0:
+            time.sleep(sleep_time)
+
+    def maybe_ack(self, tag: int) -> None:
+        if self.auto_ack:
+            return  # noop
+        assert self.channel, "channel should be defined by _connect"
+        self.channel.basic_ack(delivery_tag=tag)
+
+    def _handle_recoverable_error(self, exception: Exception) -> None:
+        if self.error_callback:
+            self.error_callback(exception)
+
+
+class TimeoutError(Exception):
+    """Raised whenever RabbitMQClient.get_message was called with a ``timeout`` and
+    that timeout occured while waiting for a message"""
+
+    pass
+
+
+class CancelledError(RuntimeError):
+    """Raised whenever RabbitMQClient.stop_event was set while waiting for a message"""
+
+    pass
diff --git a/mapping_provider/backends/rmq/queue.py b/mapping_provider/backends/rmq/queue.py
new file mode 100644
index 0000000000000000000000000000000000000000..1aa8ffdf67d8df126cc8ad79275c6c03390df8b9
--- /dev/null
+++ b/mapping_provider/backends/rmq/queue.py
@@ -0,0 +1,153 @@
+"""
+
+copied from: dashboard-v3-python v0.226, dashboard.messaging.queue
+updated typehints to satisfy mypy, and linted with changes suggested by ruff
+
+"""
+
+import logging
+import os
+from collections.abc import Sequence
+from typing import Any
+
+from pika.adapters.blocking_connection import BlockingChannel, BlockingConnection
+from pika.exceptions import ChannelClosedByBroker
+from pika.exchange_type import ExchangeType
+
+DASHBOARD_USE_QUORUM_QUEUE = os.getenv(
+    "DASHBOARD_USE_QUORUM_QUEUE", ""
+).lower() not in {"0", "", "false"}
+
+logger = logging.getLogger(__name__)
+
+
+def loose_queue_declare(
+    channel: BlockingChannel,
+    queue: str = "",
+    exclusive: bool = False,
+    single_active_consumer: bool = False,
+    force_quorum_queue: bool = False,
+) -> str | None:
+    """declare a queue (either classic or quorum, depending on the USE_QUORUM_QUEUE
+    global variable and if it is a ``dashboard.*`` queue). In case of a failure that
+    the queue already exists as a different type, this function fails silently.
+
+    :param channel: the channel to use
+    :param queue: the queue name. If empty string, the broker will create a unique queue
+        name (default: '')
+    :param kwargs: additional parameters to pass to ``channel.queue_declare``
+    """
+    durable = False
+    arguments: dict[str, Any] = {}
+    if force_quorum_queue or (
+        DASHBOARD_USE_QUORUM_QUEUE and queue.startswith("dashboard.")
+    ):
+        durable = True
+        arguments["x-queue-type"] = "quorum"
+    if single_active_consumer:
+        arguments["x-single-active-consumer"] = True
+    try:
+        result = channel.queue_declare(
+            queue, durable=durable, exclusive=exclusive, arguments=arguments or None
+        )
+        assert isinstance(result.method.queue, str)  # for mypy
+        return result.method.queue
+
+    except ChannelClosedByBroker as e:
+        if e.reply_code == 406:  # PRECONDITION_FAILED due to incompatible queue type
+            requested_type, existing_type = "classic", "quorum"
+            if DASHBOARD_USE_QUORUM_QUEUE:
+                requested_type, existing_type = existing_type, requested_type
+            logger.warning(
+                f"Trying to declare {requested_type} queue '{queue}'"
+                f" but queue already exists as {existing_type} queue"
+            )
+            return None
+        raise
+
+
+def setup_channel(
+    connection: BlockingConnection,
+    exchange_name: str,
+    exchange_type: ExchangeType = ExchangeType.fanout,
+    queue_name: str | None = None,
+    queue_declare: bool = True,
+    exclusive: bool = False,
+    single_active_consumer: bool = False,
+    routing_keys: Sequence[str] = [],
+    prefetch_count: int | None = None,
+    force_quorum_queue: bool = False,
+) -> tuple[BlockingChannel, str | None]:
+    """Setup a channel and declare the exchange and optionally the queue.
+
+    :param connection: A ``pika`` ``BlockingConnection``
+    :param exchange_name: the exchange to declare
+    :param exchange_type: the exchange type (default: ``fanout``)
+    :param queue_name: The queue to bind to, if given. Can be set to empty string to
+        get a temporary queue from the broker. When queue_name=None, the channel can
+        only be used for publishing (default: None)
+    :param queue_declare: Whether to declare the queue before binding (default: True)
+    :param exclusive: Whether this should be declared as an exclusive queue (default:
+        False)
+    :param routing_keys: Optional routing keys to bind to the queue.
+    :returns: A tuple (channel: ``BlockingChannel``, queue_name: Optional[str])
+    """
+    channel = connection.channel()
+    if prefetch_count is not None:
+        channel.basic_qos(prefetch_count=prefetch_count)
+
+    if exchange_name != "":  # cannot declare default exchange
+        channel.exchange_declare(exchange=exchange_name, exchange_type=exchange_type)
+
+    if queue_name is None:
+        return channel, None
+
+    if queue_name == "" and not queue_declare:
+        raise ValueError("must set queue_declare=True when supplying empty queue name")
+    if queue_name == "" and not exclusive:
+        raise ValueError("must set exclusive=True for anonymous queues")
+    if exclusive and single_active_consumer:
+        raise ValueError("Exclusive queues cannot have single active consumer")
+
+    if queue_declare:
+        if exclusive:
+            # Short circuit exclusive queues that are never quorum and never
+            # pre-exist
+            result = channel.queue_declare(queue_name, exclusive=True)
+            queue_name = result.method.queue
+        else:
+            queue_name = loose_queue_declare(
+                channel,
+                queue_name,
+                exclusive=exclusive,
+                single_active_consumer=single_active_consumer,
+                force_quorum_queue=force_quorum_queue,
+            )
+
+            # if a queue declare fails, the channel is in an unusable state.
+            # Start over but skip the declare
+            if queue_name is None:
+                return setup_channel(
+                    connection=connection,
+                    exchange_name=exchange_name,
+                    exchange_type=exchange_type,
+                    queue_name=queue_name,
+                    queue_declare=False,
+                    exclusive=exclusive,
+                    routing_keys=routing_keys,
+                    prefetch_count=prefetch_count,
+                    single_active_consumer=single_active_consumer,
+                    force_quorum_queue=force_quorum_queue,
+                )
+
+    assert queue_name, "queue name must not be empty here"
+ 
+    if not routing_keys:
+        # in case no routing keys are provided (as for fanout exchanges),
+        # ensure the queue is still bound to the exchange
+         channel.queue_bind(exchange=exchange_name, queue=queue_name)
+
+    for rk in routing_keys:
+        channel.queue_bind(exchange=exchange_name, queue=queue_name, routing_key=rk)
+
+    return channel, queue_name
diff --git a/mapping_provider/backends/services.py b/mapping_provider/backends/services.py
new file mode 100644
index 0000000000000000000000000000000000000000..7406a0ebb29dbc150a2fd2297eb978aa22cd1a22
--- /dev/null
+++ b/mapping_provider/backends/services.py
@@ -0,0 +1,147 @@
+import logging
+import re
+from collections.abc import Generator
+from typing import Any
+
+from pydantic import BaseModel
+
+from . import brian, cache, correlator, inventory
+
+logger = logging.getLogger(__name__)
+
+
+class BitRates(BaseModel):
+    ingress: float | None
+    egress: float | None
+
+
+class Overlays(BaseModel):
+    speed: int
+    up: bool
+    latest: BitRates
+    mean: BitRates
+    max: BitRates
+
+
+class Service(BaseModel):
+    sid: str
+    scid: str
+    name: str
+    type: str
+    pops: list[str]
+    # TODO: temporarily removed for simplicity (first map POC is only POP-based)
+    # equipment: list[str]
+    overlays: Overlays
+
+
+class ServiceList(BaseModel):
+    services: list[Service]
+
+
+def endpoint_equipment(endpoint: dict[str, Any]) -> str:
+    """
+    convert the correlator router hostname or optical equipment name
+    to the inventory equipment format
+    """
+    def _hostname_to_equipment(_hn: str) -> str:
+        m = re.match(r'^(.+)\.geant\.net$', _hn)
+        if not m:
+            logger.error(f'unexpected hostname pattern: {_hn}')
+            return '?'
+        return m.group(1).upper()
+
+    if 'hostname' in endpoint:
+        return _hostname_to_equipment(endpoint['hostname'])
+    elif 'equipment' in endpoint:
+        _name = endpoint['equipment']
+        assert isinstance(_name, str)  # mypy noise
+        return _name
+
+    # should already be validated
+    raise AssertionError(f'no equipment or hostname in endpoint: {endpoint}')
+
+
+def _services(service_type: str | None = None) -> Generator[Service]:
+    """
+    load the cached backend data and yield map service records
+
+    only return operational services that match the service type, if provided
+    """
+    try:
+        scid_current = cache.get(inventory.REPORTING_SCID_CURRENT_CACHE_FILENAME)
+        correlator_state = cache.get(correlator.CACHED_CORRELATOR_STATE_FILENAME)
+        brian_rates = cache.get(brian.CACHED_BRIAN_SCID_RATES_FILENAME)
+        equipment_list = cache.get(inventory.INPROV_EQUIPMENT_CACHE_FILENAME)
+    except FileNotFoundError:
+        logger.exception('not enough data available to build the service list')
+        return
+
+    def _get_down_correlator_services() -> Generator[str]:
+        for _e in correlator_state['endpoints']:
+            if _e['up']:
+                continue
+            for _s in _e['services']:
+                if 'sid' in _s:
+                    yield _s['sid']
+
+
+    down_service_sids = set(_get_down_correlator_services())
+    brian_scid_rates = {r['scid']: r['values'] for r in brian_rates}
+
+    equipment_dict = {_x['name']: _x for _x in equipment_list}
+
+    def _get_equipment_pop(equipment_name: str) -> str:
+        if equipment_name not in equipment_dict:
+            # TODO: is this really possible if all data is read from IMS at the same time?
+            logger.error(f'unknown endpoint equipment: {equipment_name}')
+            return '?'
+        _pop_name = equipment_dict[equipment_name]['pop']
+        assert isinstance(_pop_name, str)  # mypy noise
+        return _pop_name
+
+    for _s in scid_current:
+
+        if _s['status'] != 'operational':
+            continue
+
+        if service_type and _s['service_type'] != service_type:
+            continue
+
+        equipment = sorted(set(map(endpoint_equipment, _s['endpoints'])))
+        pops = sorted(set(map(_get_equipment_pop, equipment)))
+        
+        rates = brian_scid_rates.get(_s['scid'], {})
+        overlays = Overlays(
+            speed = _s['speed'],
+            up = _s['sid'] not in down_service_sids,
+            latest = BitRates(
+                egress = rates.get('latest', {}).get('egress'),
+                ingress = rates.get('latest', {}).get('ingress'),
+            ),
+            mean = BitRates(
+                egress = rates.get('mean', {}).get('egress'),
+                ingress = rates.get('mean', {}).get('ingress'),
+            ),
+            max = BitRates(
+                egress = rates.get('max', {}).get('egress'),
+                ingress = rates.get('max', {}).get('ingress'),
+            ),
+        )
+
+        yield Service(
+            sid = _s['sid'],
+            scid = _s['scid'],
+            name = _s['name'],
+            type = _s['service_type'],
+            pops = pops,
+            # TODO: temporarily removed for simplicity (first map POC is only POP-based)
+            # equipment = equipment,
+            overlays = overlays,
+        )
+
+
+def build_service_info_list(service_type: str | None = None) -> ServiceList:
+    """
+    return a list of mappable info about all operational services
+    """  
+    return ServiceList(services=list(_services(service_type)))
diff --git a/mapping_provider/config.py b/mapping_provider/config.py
new file mode 100644
index 0000000000000000000000000000000000000000..c83d7064acd05770d05a707b39752eeea554b2ab
--- /dev/null
+++ b/mapping_provider/config.py
@@ -0,0 +1,55 @@
+import os
+
+from pydantic import BaseModel, Field, HttpUrl
+
+
+class InfluxConnectionParams(BaseModel):
+    hostname: str
+    port: int = 8086
+    ssl: bool = True
+    username: str
+    password: str
+    database: str
+    measurement: str
+
+
+class RMQConnectionParams(BaseModel):
+    brokers: list[str]
+    username: str
+    password: str
+    vhost: str
+
+
+class SentryConfig(BaseModel):
+    dsn: str
+    environment: str
+    level: str = Field(
+        default='error',
+        pattern="^(debug|info|warning|error)$")
+
+    # @field_validator('level')
+    # @classmethod
+    # def validate_level(cls, v):
+    #     if v not in ['debug', 'info', 'warning', 'error']:
+    #         raise ValueError('level must be one of: debug, info, warning, error')
+    #     return v
+
+class Configuration(BaseModel):
+    sentry: SentryConfig | None = None
+    inventory: HttpUrl
+    reporting: HttpUrl
+    rmq: RMQConnectionParams | None = None
+    correlator_exchange: str = 'dashboard.alarms.broadcast'
+    brian: InfluxConnectionParams
+
+
+def load() -> Configuration:
+    """
+    Loads, validates and returns configuration parameters from
+    the file named in the environment variable 'SETTINGS_FILENAME'.
+
+    :return:
+    """
+    assert 'SETTINGS_FILENAME' in os.environ
+    with open(os.environ['SETTINGS_FILENAME']) as f:
+        return Configuration.model_validate_json(f.read())
diff --git a/mapping_provider/environment.py b/mapping_provider/environment.py
new file mode 100644
index 0000000000000000000000000000000000000000..2319555abc09ab5ca98794c7684a3514d3b797b4
--- /dev/null
+++ b/mapping_provider/environment.py
@@ -0,0 +1,96 @@
+"""
+Environment setup
+===================
+
+.. autofunction:: mapping_provider.environment.setup_logging
+
+.. autofunction:: mapping_provider.environment.setup_sentry
+
+"""
+import json
+import logging
+import logging.config
+import os
+from typing import TYPE_CHECKING
+
+if TYPE_CHECKING:
+    from mapping_provider.config import SentryConfig
+
+import sentry_sdk
+from sentry_sdk.integrations.logging import LoggingIntegration
+
+LOGGING_DEFAULT_CONFIG = {
+    'version': 1,
+    'disable_existing_loggers': False,
+    'formatters': {
+        'simple': {
+            'format': '%(asctime)s - %(name)s '
+                      '(%(lineno)d) - %(levelname)s - %(message)s'
+        }
+    },
+
+    'handlers': {
+        'console': {
+            'class': 'logging.StreamHandler',
+            'level': 'DEBUG',
+            'formatter': 'simple',
+            'stream': 'ext://sys.stdout'
+        }
+
+    },
+
+    'loggers': {
+        'mapping_provider': {
+            'level': 'DEBUG',
+            'handlers': ['console'],
+            'propagate': False
+        }
+    },
+
+    'root': {
+        'level': 'WARNING',
+        'handlers': ['console']
+    }
+}
+
+
+def setup_logging() -> None:
+    """
+    Sets up logging using the configured filename.
+
+    if LOGGING_CONFIG is defined in the environment, use this for
+    the filename, otherwise use LOGGING_DEFAULT_CONFIG
+    """
+    logging_config = LOGGING_DEFAULT_CONFIG
+    if 'LOGGING_CONFIG' in os.environ:
+        filename = os.environ['LOGGING_CONFIG']
+        with open(filename) as f:
+            logging_config = json.load(f)
+
+    logging.config.dictConfig(logging_config)
+
+
+def setup_sentry(sentry_config_params: 'SentryConfig') -> None:
+    """
+    Sets up the sentry instrumentation based on the Configuration.sentry params.
+    """
+    match str(sentry_config_params.level):
+        case 'debug':
+            level = logging.DEBUG
+        case 'info':
+            level = logging.INFO
+        case 'warning':
+            level = logging.WARNING
+        case 'error':
+            level = logging.ERROR
+
+    sentry_sdk.init(
+        dsn=sentry_config_params.dsn,
+        environment=sentry_config_params.environment,
+        integrations=[
+            LoggingIntegration(
+                level=logging.INFO,  # Capture info and above as breadcrumbs
+                event_level=level  # Send records as events
+            ),
+        ],
+    )
diff --git a/pyproject.toml b/pyproject.toml
index cdeac565c37fdc9a4f47530c7a09f6413028ef66..30f93d0c84d8ed6b5899d46fe48eac3ba6393e49 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,12 +1,58 @@
+[build-system]
+requires = ["setuptools>=61.0", "wheel"]
+build-backend = "setuptools.build_meta"
+
+[project]
+name = "mapping-provider"
+version = "0.1"
+description = "A webservice providing information for GEANT maps."
+authors = [
+    {name = "GÉANT", email = "swd@geant.org"}
+]
+license = "MIT"
+readme = "README.md"
+requires-python = ">=3.10"
+classifiers = [
+    "Programming Language :: Python :: 3",
+    "Framework :: FastAPI",
+    "Operating System :: OS Independent",
+]
+dependencies = [
+    "fastapi",
+    "requests",
+    "jsonschema",
+    "sentry_sdk",
+    "pika",
+    "influxdb"
+]
+
+[tool.setuptools]
+include-package-data = true
+
+[tool.setuptools.packages.find]
+exclude = ["test"]
+
+
 [tool.ruff]
 line-length = 120
 target-version = "py313"
-select = ["E", "F", "I", "B", "UP", "N"]
-fixable = ["ALL"]
+lint.select = ["E", "F", "I", "B", "UP", "N"]
+lint.fixable = ["ALL"]
 exclude = ["tests", "docs", "build"]
 
 [tool.mypy]
 python_version = "3.13"
 strict = true
 warn_unused_ignores = true
-warn_return_any = true
\ No newline at end of file
+warn_return_any = true
+
+[[tool.mypy.overrides]]
+module = ["influxdb"]
+ignore_missing_imports = true
+
+[tool.coverage.run]
+source = ["mapping_provider"]
+omit = [
+    "mapping_provider/backends/rmq/*",
+    "test/*"
+]
diff --git a/requirements.txt b/requirements.txt
index 8cedf04a6b774601a712430bfb7494d302f9fb80..992283d039449eb0f1a267085e8696e3930d66a3 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,13 +1,14 @@
 fastapi
-uvicorn[standard]
+requests
+jsonschema
+sentry_sdk
+pika
+influxdb
 
-sphinx
-sphinx-rtd-theme
-sphinxcontrib-plantuml
-sphinxcontrib-drawio
-sphinxcontrib-openapi
+httpx  # required for fastapi TestClient
+pytest
+responses
 
 ruff
 mypy
-tox
 pre-commit
diff --git a/setup.py b/setup.py
deleted file mode 100644
index 5e5209c7d2b398fa6ee6b7e28f954dc397cc8133..0000000000000000000000000000000000000000
--- a/setup.py
+++ /dev/null
@@ -1,26 +0,0 @@
-from setuptools import find_packages, setup
-
-setup(
-    name="mapping-provider",
-    version="0.1",
-    description="A FastAPI app to provide mapping services for GEANT maps.",
-    author="GÉANT",
-    author_email="info@geant.org",
-    license="MIT",
-    packages=find_packages(where="mapping_provider"),
-    package_dir={"": "mapping_provider"},
-    include_package_data=True,
-    python_requires=">=3.10",
-    install_requires=[
-        "fastapi",
-        "uvicorn[standard]"
-    ],
-    long_description=open("README.md", encoding="utf-8").read(),
-    long_description_content_type="text/markdown",
-    classifiers=[
-        "Programming Language :: Python :: 3",
-        "Framework :: FastAPI",
-        "License :: OSI Approved :: MIT License",
-        "Operating System :: OS Independent",
-    ],
-)
\ No newline at end of file
diff --git a/test/__init__.py b/test/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/test/common.py b/test/common.py
new file mode 100644
index 0000000000000000000000000000000000000000..6eeed165455dd53e3164ab6ffd5ccb55bcf19464
--- /dev/null
+++ b/test/common.py
@@ -0,0 +1,9 @@
+import json
+import os
+
+DATA_DIR = os.path.join(os.path.dirname(__file__), 'data')
+
+
+def load_test_data(filename: str) -> dict:
+    with open(os.path.join(DATA_DIR, filename)) as f:
+        return json.load(f)
\ No newline at end of file
diff --git a/test/conftest.py b/test/conftest.py
new file mode 100644
index 0000000000000000000000000000000000000000..eaf9eabf82bc5c059266e9239ef3141cc1e4cc59
--- /dev/null
+++ b/test/conftest.py
@@ -0,0 +1,76 @@
+import json
+import os
+import tempfile
+from unittest.mock import patch
+
+import pytest
+from fastapi.testclient import TestClient
+
+from mapping_provider import create_app
+from mapping_provider.backends import brian, cache, correlator, inventory
+
+from .common import load_test_data
+
+
+@pytest.fixture
+def dummy_config():
+    return {
+        'sentry': {
+            'dsn': 'https://token@hostname.geant.org:1111/a/b',
+            'environment': 'unit tests'
+        },
+        'inventory': 'https://inventory.bogus.domain',
+        'reporting': 'http://reporting.another-bogus.domain',
+        # no rmq param to skip correlator thread
+        # 'rmq': {
+        #     'brokers': [
+        #         'test-noc-alarms01.geant.org',
+        #         'test-noc-alarms02.geant.org',
+        #         'test-noc-alarms03.geant.org'
+        #     ],
+        #     'username': 'guest',
+        #     'password': 'guest',
+        #     'vhost': '/'
+        # },
+        'brian': {
+            'hostname': 'bogus hostname',
+            'username': 'bogus username',
+            'password': 'bogus password',
+            'database': 'bogus database name',
+            'measurement': 'bogus measurement'
+        }
+    }
+
+
+@pytest.fixture
+def dummy_config_filename(dummy_config):
+    with tempfile.NamedTemporaryFile(delete=False) as f:
+        f.write(json.dumps(dummy_config).encode('utf-8'))
+        f.flush()
+        yield f.name
+
+
+@pytest.fixture
+def client(dummy_config_filename):
+    os.environ['SETTINGS_FILENAME'] = dummy_config_filename
+
+    with tempfile.TemporaryDirectory() as tmp_dir:
+
+        # there's no rmq in the test config data, so cache won't be initialized
+        cache.init(tmp_dir)
+        cache.set(inventory.REPORTING_SCID_CURRENT_CACHE_FILENAME, load_test_data('scid-current.json'))
+        cache.set(inventory.INPROV_EQUIPMENT_CACHE_FILENAME, load_test_data('inprov-equipment.json'))
+        cache.set(correlator.CACHED_CORRELATOR_STATE_FILENAME, load_test_data('correlator-state.json'))
+        cache.set(brian.CACHED_BRIAN_SCID_RATES_FILENAME, load_test_data('brian-scid-rates.json'))
+ 
+        with patch('sentry_sdk.init') as _mock_sentry_init:
+            yield TestClient(create_app())
+
+
+@pytest.fixture(autouse=True)
+def run_around_tests():
+    assert cache._cache_dir is None  # test env sanity check
+    yield
+
+    # make sure cache is set to unused before the next test
+    cache._cache_dir = None
diff --git a/test/data/brian-scid-rates.json b/test/data/brian-scid-rates.json
new file mode 100644
index 0000000000000000000000000000000000000000..6cf72585865e6760fd261452d54732b2521c7439
--- /dev/null
+++ b/test/data/brian-scid-rates.json
@@ -0,0 +1,21711 @@
+[
+  {
+    "scid": "001fd553-67ff-48b4-846f-66a4826da403",
+    "values": {
+      "latest": {
+        "ingress": 23905.872909698995,
+        "egress": 6703529.150501672
+      },
+      "mean": {
+        "ingress": 23673.540828484496,
+        "egress": 9807637.489547532
+      },
+      "max": {
+        "ingress": 32404.039867109634,
+        "egress": 125760136.78114478
+      }
+    }
+  },
+  {
+    "scid": "0033b1af-565c-407d-8ef0-02731e4db3db",
+    "values": {
+      "latest": {
+        "ingress": 1056889168.1594684,
+        "egress": 5488945238.538206
+      },
+      "mean": {
+        "ingress": 831909124.5303842,
+        "egress": 4163699864.5844836
+      },
+      "max": {
+        "ingress": 1573122305.28,
+        "egress": 9500893019.295681
+      }
+    }
+  },
+  {
+    "scid": "004ae718-4713-482a-8acb-320baca30538",
+    "values": {
+      "latest": {
+        "ingress": 1734.0533333333333,
+        "egress": 578.72
+      },
+      "mean": {
+        "ingress": 25701.56473565371,
+        "egress": 571.1876189205185
+      },
+      "max": {
+        "ingress": 247400.24080267557,
+        "egress": 593.3333333333334
+      }
+    }
+  },
+  {
+    "scid": "00d1ac99-ffaa-4aad-9d0b-ceb23131a804",
+    "values": {
+      "latest": {
+        "ingress": 25544.266666666666,
+        "egress": 27124.72
+      },
+      "mean": {
+        "ingress": 25794.94531022562,
+        "egress": 27285.629672674593
+      },
+      "max": {
+        "ingress": 26945.59468438538,
+        "egress": 27739.08
+      }
+    }
+  },
+  {
+    "scid": "01a59152-95f8-4c63-bf50-55a6efb86716",
+    "values": {
+      "latest": {
+        "ingress": 5626382780.693334,
+        "egress": 1320574432.4533334
+      },
+      "mean": {
+        "ingress": 4412387366.8123,
+        "egress": 2212007450.553421
+      },
+      "max": {
+        "ingress": 13183883731.774086,
+        "egress": 4291006796.7524753
+      }
+    }
+  },
+  {
+    "scid": "01aaf261-0b82-4007-b69c-b7f247643dc8",
+    "values": {
+      "latest": {
+        "ingress": 201361.3023255814,
+        "egress": 199005.60797342192
+      },
+      "mean": {
+        "ingress": 215906.13414035633,
+        "egress": 213278.24566263298
+      },
+      "max": {
+        "ingress": 241368.21262458473,
+        "egress": 238622.34113712376
+      }
+    }
+  },
+  {
+    "scid": "0204ee59-4ec9-4eb4-b8e3-910f5d8a8aa4",
+    "values": {
+      "latest": {
+        "ingress": 10900908708.346666,
+        "egress": 16822891132.693333
+      },
+      "mean": {
+        "ingress": 18435909868.575516,
+        "egress": 12514535431.784693
+      },
+      "max": {
+        "ingress": 70235081605.18272,
+        "egress": 47057772431.89333
+      }
+    }
+  },
+  {
+    "scid": "025e686e-7979-48cb-9d23-5f77e704f357",
+    "values": {
+      "latest": {
+        "ingress": 1368.9066666666668,
+        "egress": 1045.0933333333332
+      },
+      "mean": {
+        "ingress": 1384.307901274764,
+        "egress": 1042.4117257428854
+      },
+      "max": {
+        "ingress": 1518.48,
+        "egress": 1056.6153846153845
+      }
+    }
+  },
+  {
+    "scid": "026371d6-05e3-48e6-81ec-0a44004996d4",
+    "values": {
+      "latest": {
+        "ingress": 107717637.46666667,
+        "egress": 1439648697.92
+      },
+      "mean": {
+        "ingress": 124410167.1275036,
+        "egress": 1155532172.4989767
+      },
+      "max": {
+        "ingress": 435154591.36,
+        "egress": 1778326318.8
+      }
+    }
+  },
+  {
+    "scid": "02fe0dda-4e19-44fa-be82-ea14b607a917",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "0309a79c-b66b-457a-a49a-9e016bfca27a",
+    "values": {
+      "latest": {
+        "ingress": 441398210.88,
+        "egress": 294011249.6533333
+      },
+      "mean": {
+        "ingress": 509174683.7499175,
+        "egress": 310656287.7220542
+      },
+      "max": {
+        "ingress": 736884523.0933334,
+        "egress": 1346112875.44
+      }
+    }
+  },
+  {
+    "scid": "03166d35-404a-4121-83cf-fe4844d98116",
+    "values": {
+      "latest": {
+        "ingress": 2672746137.4666667,
+        "egress": 7094018441.066667
+      },
+      "mean": {
+        "ingress": 4788486352.784289,
+        "egress": 10226667191.415136
+      },
+      "max": {
+        "ingress": 10027931124.96,
+        "egress": 20465577461.573334
+      }
+    }
+  },
+  {
+    "scid": "03344604-d6ce-49aa-af06-cfb3a8acc083",
+    "values": {
+      "latest": {
+        "ingress": 879760120.2408026,
+        "egress": 376435184.72240806
+      },
+      "mean": {
+        "ingress": 968658094.8124506,
+        "egress": 424083300.46959865
+      },
+      "max": {
+        "ingress": 2058805287.1760798,
+        "egress": 900566370.7375416
+      }
+    }
+  },
+  {
+    "scid": "0336ce95-0865-4e10-8297-1852351b5cb3",
+    "values": {
+      "latest": {
+        "ingress": 39719819.57333333,
+        "egress": 275526945.68
+      },
+      "mean": {
+        "ingress": 51871454.86562032,
+        "egress": 192768036.49964434
+      },
+      "max": {
+        "ingress": 378189873.0099668,
+        "egress": 1011142463.4933333
+      }
+    }
+  },
+  {
+    "scid": "0352e3a7-96df-40e6-b67a-a0c8a97ef10a",
+    "values": {
+      "latest": {
+        "ingress": 3988.0266666666666,
+        "egress": 3215.5466666666666
+      },
+      "mean": {
+        "ingress": 3965.513813365276,
+        "egress": 3159.7981389865445
+      },
+      "max": {
+        "ingress": 4165.018302828619,
+        "egress": 3366.56
+      }
+    }
+  },
+  {
+    "scid": "035f3ea4-e9f7-4fab-ae02-1da086b3066f",
+    "values": {
+      "latest": {
+        "ingress": 2757630812.9066668,
+        "egress": 10202292357.36
+      },
+      "mean": {
+        "ingress": 2559845801.673226,
+        "egress": 4291244316.011418
+      },
+      "max": {
+        "ingress": 8550858583.667221,
+        "egress": 23808185081.0782
+      }
+    }
+  },
+  {
+    "scid": "037d5ea2-86d1-475c-a866-a5c8a5178fc2",
+    "values": {
+      "latest": {
+        "ingress": 764451332.5182724,
+        "egress": 96835135.4950166
+      },
+      "mean": {
+        "ingress": 532384209.9098543,
+        "egress": 133274286.91729642
+      },
+      "max": {
+        "ingress": 862532538.89701,
+        "egress": 622350507.3177258
+      }
+    }
+  },
+  {
+    "scid": "037dff5d-fbde-4c1a-9a7b-efd817e4aeb6",
+    "values": {
+      "latest": {
+        "ingress": 358277609.94666666,
+        "egress": 87202962.88
+      },
+      "mean": {
+        "ingress": 319126465.8335355,
+        "egress": 56847652.627531886
+      },
+      "max": {
+        "ingress": 657102187.8145696,
+        "egress": 127224088.85049833
+      }
+    }
+  },
+  {
+    "scid": "03bff316-d89d-49db-9fba-8b4eae6dd764",
+    "values": {
+      "latest": {
+        "ingress": 11475.946666666667,
+        "egress": 2860424081.386667
+      },
+      "mean": {
+        "ingress": 11758.409991055962,
+        "egress": 3410212854.209282
+      },
+      "max": {
+        "ingress": 27507.84,
+        "egress": 12464233710.876255
+      }
+    }
+  },
+  {
+    "scid": "03d2213d-0c6b-4952-98d4-68b2f329a989",
+    "values": {
+      "latest": {
+        "ingress": 566.5066666666667,
+        "egress": 8898.506666666666
+      },
+      "mean": {
+        "ingress": 563.8835011443589,
+        "egress": 8758.808130541342
+      },
+      "max": {
+        "ingress": 569.92,
+        "egress": 20472.90365448505
+      }
+    }
+  },
+  {
+    "scid": "0412f0c0-6563-4c55-a8c4-042165afd59f",
+    "values": {
+      "latest": {
+        "ingress": 3432.4533333333334,
+        "egress": 3243.12
+      },
+      "mean": {
+        "ingress": 3377.179244201945,
+        "egress": 3250.7313470626245
+      },
+      "max": {
+        "ingress": 3848.2923588039866,
+        "egress": 3341.4133333333334
+      }
+    }
+  },
+  {
+    "scid": "041394e0-28f1-4a19-972d-34d0f91d699d",
+    "values": {
+      "latest": {
+        "ingress": 26901.933774834437,
+        "egress": 28811.258278145695
+      },
+      "mean": {
+        "ingress": 26932.592643064916,
+        "egress": 29350.323253392744
+      },
+      "max": {
+        "ingress": 31516.113144758736,
+        "egress": 33803.531772575254
+      }
+    }
+  },
+  {
+    "scid": "046c358c-9230-4322-a876-838482ae63db",
+    "values": {
+      "latest": {
+        "ingress": 324.628762541806,
+        "egress": 1397.8595317725753
+      },
+      "mean": {
+        "ingress": 334.46509029319674,
+        "egress": 1411.1969201801128
+      },
+      "max": {
+        "ingress": 698.5960264900663,
+        "egress": 4337.546666666667
+      }
+    }
+  },
+  {
+    "scid": "04843eec-b9c5-4dd1-8a43-7f874ee05891",
+    "values": {
+      "latest": {
+        "ingress": 4.556291390728477,
+        "egress": 861.1390728476821
+      },
+      "mean": {
+        "ingress": 44.381274948258906,
+        "egress": 881.0396093475539
+      },
+      "max": {
+        "ingress": 180.20066889632108,
+        "egress": 1248.7466666666667
+      }
+    }
+  },
+  {
+    "scid": "04a96079-f89a-43a4-a32b-2c5881bd86d4",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 974.72
+      },
+      "mean": {
+        "ingress": 2.5723971842275604,
+        "egress": 979.8110596877402
+      },
+      "max": {
+        "ingress": 15.788079470198676,
+        "egress": 994.8079470198676
+      }
+    }
+  },
+  {
+    "scid": "04e60051-4466-4f09-9cec-208be27aa98e",
+    "values": {
+      "latest": {
+        "ingress": 2740183458.6666665,
+        "egress": 737695977.36
+      },
+      "mean": {
+        "ingress": 3173472476.1727805,
+        "egress": 1803762368.5731068
+      },
+      "max": {
+        "ingress": 8056067867.215947,
+        "egress": 3039794753.568106
+      }
+    }
+  },
+  {
+    "scid": "056e1335-1735-4b11-88e5-c714ec34e475",
+    "values": {
+      "latest": {
+        "ingress": 23.277591973244146,
+        "egress": 109.96655518394648
+      },
+      "mean": {
+        "ingress": 23.275866968132444,
+        "egress": 118.26075409756064
+      },
+      "max": {
+        "ingress": 25.60535117056856,
+        "egress": 131.52
+      }
+    }
+  },
+  {
+    "scid": "059389c8-1202-4993-8d9a-2f4b975e86a1",
+    "values": {
+      "latest": {
+        "ingress": 342.82666666666665,
+        "egress": 327.14666666666665
+      },
+      "mean": {
+        "ingress": 345.2654991528826,
+        "egress": 332.4233923458167
+      },
+      "max": {
+        "ingress": 351.06666666666666,
+        "egress": 352.42384105960264
+      }
+    }
+  },
+  {
+    "scid": "05ae0cfa-d9ee-45ae-b40f-fb8904386e66",
+    "values": {
+      "latest": {
+        "ingress": 18767.493333333332,
+        "egress": 447.06666666666666
+      },
+      "mean": {
+        "ingress": 20048.685034231217,
+        "egress": 446.44842010609847
+      },
+      "max": {
+        "ingress": 25977.79264214047,
+        "egress": 596.3322259136213
+      }
+    }
+  },
+  {
+    "scid": "05ce1635-9ed0-418a-b891-0db007aea3d9",
+    "values": {
+      "latest": {
+        "ingress": 651917850.6225165,
+        "egress": 6725417831.417218
+      },
+      "mean": {
+        "ingress": 1819678040.4382634,
+        "egress": 4330968725.414265
+      },
+      "max": {
+        "ingress": 18261312254.415974,
+        "egress": 41581838267.886856
+      }
+    }
+  },
+  {
+    "scid": "060cda59-53cc-4806-a968-9f7022021451",
+    "values": {
+      "latest": {
+        "ingress": 364135297.0631229,
+        "egress": 845718512.0797342
+      },
+      "mean": {
+        "ingress": 415703142.60860914,
+        "egress": 948247836.6513661
+      },
+      "max": {
+        "ingress": 893761376.48,
+        "egress": 2013981412.0
+      }
+    }
+  },
+  {
+    "scid": "064ae81a-8cd6-4e63-8167-b5def121b587",
+    "values": {
+      "latest": {
+        "ingress": 272.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 271.952911034062,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 273.81333333333333,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "065dd9a7-36b2-460f-a52c-5707c9753976",
+    "values": {
+      "latest": {
+        "ingress": 3099443840.693333,
+        "egress": 1263588980.6933334
+      },
+      "mean": {
+        "ingress": 1934102295.1485424,
+        "egress": 1420711346.7588444
+      },
+      "max": {
+        "ingress": 3748565148.0533333,
+        "egress": 2735069916.1196012
+      }
+    }
+  },
+  {
+    "scid": "0707e883-dac3-46e4-9d34-6308d31cc154",
+    "values": {
+      "latest": {
+        "ingress": 75026.45333333334,
+        "egress": 22621.52
+      },
+      "mean": {
+        "ingress": 93444.54748643842,
+        "egress": 22808.004543319665
+      },
+      "max": {
+        "ingress": 171713.22259136214,
+        "egress": 28919.52
+      }
+    }
+  },
+  {
+    "scid": "072afc6c-9f97-4878-b322-9d032a04673c",
+    "values": {
+      "latest": {
+        "ingress": 10190.746666666666,
+        "egress": 969.7066666666667
+      },
+      "mean": {
+        "ingress": 25955.109182775694,
+        "egress": 972.245216097827
+      },
+      "max": {
+        "ingress": 712914.0397350993,
+        "egress": 991.9205298013245
+      }
+    }
+  },
+  {
+    "scid": "076d42e0-f4f2-4610-b3f6-bc953f92a87f",
+    "values": {
+      "latest": {
+        "ingress": 128.63787375415282,
+        "egress": 127.28239202657808
+      },
+      "mean": {
+        "ingress": 129.50360428702453,
+        "egress": 129.36003417674334
+      },
+      "max": {
+        "ingress": 135.01333333333332,
+        "egress": 135.41333333333333
+      }
+    }
+  },
+  {
+    "scid": "078af96b-c99b-4204-8859-592dd3979164",
+    "values": {
+      "latest": {
+        "ingress": 254905.79264214047,
+        "egress": 4808.401337792642
+      },
+      "mean": {
+        "ingress": 256207.2166010011,
+        "egress": 25855.926604828812
+      },
+      "max": {
+        "ingress": 690641.8933333333,
+        "egress": 186045.57333333333
+      }
+    }
+  },
+  {
+    "scid": "07d2ccf5-ace6-49d1-8358-40c3b28125de",
+    "values": {
+      "latest": {
+        "ingress": 540499.6387959867,
+        "egress": 512585.0969899666
+      },
+      "mean": {
+        "ingress": 2236542.4330019793,
+        "egress": 551125.9291429883
+      },
+      "max": {
+        "ingress": 81692854.48,
+        "egress": 2540543.3265993265
+      }
+    }
+  },
+  {
+    "scid": "07d95826-c41f-4834-b98b-cfe3e996fca4",
+    "values": {
+      "latest": {
+        "ingress": 19509.20930232558,
+        "egress": 465764313.0631229
+      },
+      "mean": {
+        "ingress": 20659.164128732726,
+        "egress": 481986918.52532715
+      },
+      "max": {
+        "ingress": 67384.77333333333,
+        "egress": 822125001.0469799
+      }
+    }
+  },
+  {
+    "scid": "083bf08b-ccd1-4567-b29d-58136a2b4e32",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "0845570c-10fa-4473-838f-cd1041a44fef",
+    "values": {
+      "latest": {
+        "ingress": 83.89333333333333,
+        "egress": 243.68
+      },
+      "mean": {
+        "ingress": 8289.44500402733,
+        "egress": 237.35447960719222
+      },
+      "max": {
+        "ingress": 2216245.618729097,
+        "egress": 262.47491638795987
+      }
+    }
+  },
+  {
+    "scid": "086a309f-d3ad-4d91-9cdc-81424ab9a16a",
+    "values": {
+      "latest": {
+        "ingress": 2242.8704318936875,
+        "egress": 1559.654485049834
+      },
+      "mean": {
+        "ingress": 2251.8290116552985,
+        "egress": 1230.6923645991353
+      },
+      "max": {
+        "ingress": 2307.8528428093646,
+        "egress": 7718.0
+      }
+    }
+  },
+  {
+    "scid": "08c2695e-a949-4a15-b261-b11344b46fa1",
+    "values": {
+      "latest": {
+        "ingress": 91117.94666666667,
+        "egress": 15119.173333333334
+      },
+      "mean": {
+        "ingress": 124085.43436175154,
+        "egress": 14969.43869967533
+      },
+      "max": {
+        "ingress": 2941229.8,
+        "egress": 16235.466666666667
+      }
+    }
+  },
+  {
+    "scid": "0978e56e-fd3d-46bf-a550-cb078488c6e2",
+    "values": {
+      "latest": {
+        "ingress": 78.82666666666667,
+        "egress": 96.72
+      },
+      "mean": {
+        "ingress": 160080.0779223361,
+        "egress": 60103455.57133016
+      },
+      "max": {
+        "ingress": 2111606.3466666667,
+        "egress": 862806658.3733333
+      }
+    }
+  },
+  {
+    "scid": "09e9c51a-af11-42d9-8298-541cd470c9c3",
+    "values": {
+      "latest": {
+        "ingress": 302633.68,
+        "egress": 74018.8
+      },
+      "mean": {
+        "ingress": 297710.38938473776,
+        "egress": 83973.95527352109
+      },
+      "max": {
+        "ingress": 564522.1528239202,
+        "egress": 238253.06666666668
+      }
+    }
+  },
+  {
+    "scid": "0a835922-ccb5-47af-b79a-e952d2e6fc91",
+    "values": {
+      "latest": {
+        "ingress": 4351.813953488372,
+        "egress": 714.3920265780731
+      },
+      "mean": {
+        "ingress": 3291.134676219327,
+        "egress": 612.5607279843892
+      },
+      "max": {
+        "ingress": 15268.677740863788,
+        "egress": 896.7707641196014
+      }
+    }
+  },
+  {
+    "scid": "0abd37fe-8ae5-416a-9523-3cc2f747c55c",
+    "values": {
+      "latest": {
+        "ingress": 15865421.68,
+        "egress": 318130244.1066667
+      },
+      "mean": {
+        "ingress": 26814973.957003728,
+        "egress": 271587164.7932649
+      },
+      "max": {
+        "ingress": 167909815.2079208,
+        "egress": 1031432983.84
+      }
+    }
+  },
+  {
+    "scid": "0ad41ef3-e2de-4fb6-8bd7-eed2c38f4f13",
+    "values": {
+      "latest": {
+        "ingress": 6724358420.986667,
+        "egress": 34907130287.2
+      },
+      "mean": {
+        "ingress": 15156014931.428297,
+        "egress": 27272304775.189747
+      },
+      "max": {
+        "ingress": 77516354727.03679,
+        "egress": 67705905031.86622
+      }
+    }
+  },
+  {
+    "scid": "0ae14b97-3e47-431a-9f69-76b7a99a42b6",
+    "values": {
+      "latest": {
+        "ingress": 1907.2847682119204,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 521.0889626753475,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 1926.4214046822742,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "0b35c480-c57e-4d3f-bb2e-9ce8321fdd2b",
+    "values": {
+      "latest": {
+        "ingress": 5771.9866220735785,
+        "egress": 4916.628762541806
+      },
+      "mean": {
+        "ingress": 29780.30239002887,
+        "egress": 102091.913508399
+      },
+      "max": {
+        "ingress": 179737.01333333334,
+        "egress": 1052441.8666666667
+      }
+    }
+  },
+  {
+    "scid": "0b6389ef-91b8-408a-ae72-21f3a10293f4",
+    "values": {
+      "latest": {
+        "ingress": 79258484455.08725,
+        "egress": 55846059190.979866
+      },
+      "mean": {
+        "ingress": 72500305601.53798,
+        "egress": 74982866059.26096
+      },
+      "max": {
+        "ingress": 138383003305.24918,
+        "egress": 143238165291.37543
+      }
+    }
+  },
+  {
+    "scid": "0b6cfc81-e15b-4a6c-aa8a-16c5b9a03621",
+    "values": {
+      "latest": {
+        "ingress": 7216420552.802675,
+        "egress": 3286180.8695652173
+      },
+      "mean": {
+        "ingress": 811797281.0400219,
+        "egress": 15398316.864767864
+      },
+      "max": {
+        "ingress": 11399843368.611296,
+        "egress": 580495896.0
+      }
+    }
+  },
+  {
+    "scid": "0ba9ab91-4c40-4e8a-81f7-464f3335ffb1",
+    "values": {
+      "latest": {
+        "ingress": 193757.96655518396,
+        "egress": 18602677509.0301
+      },
+      "mean": {
+        "ingress": 36202.76505608235,
+        "egress": 29498377427.932632
+      },
+      "max": {
+        "ingress": 206164.14715719063,
+        "egress": 69067341467.77257
+      }
+    }
+  },
+  {
+    "scid": "0c00639c-30bd-4ee1-85af-b6c5cc212472",
+    "values": {
+      "latest": {
+        "ingress": 16374421.946666667,
+        "egress": 230046478.16
+      },
+      "mean": {
+        "ingress": 21478319.340692304,
+        "egress": 78591775.10137743
+      },
+      "max": {
+        "ingress": 211067859.72093022,
+        "egress": 336959441.1812081
+      }
+    }
+  },
+  {
+    "scid": "0c442386-a6c5-4bb8-bd2d-4eaa4d70f051",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "0c504e16-fe46-438c-ba18-c93eaf5864b5",
+    "values": {
+      "latest": {
+        "ingress": 106.33112582781457,
+        "egress": 125.43046357615894
+      },
+      "mean": {
+        "ingress": 81.45557337320274,
+        "egress": 99.19095823475466
+      },
+      "max": {
+        "ingress": 248.4252491694352,
+        "egress": 475.93355481727576
+      }
+    }
+  },
+  {
+    "scid": "0c58a836-4077-4bbb-8cb4-8ff972e60b5f",
+    "values": {
+      "latest": {
+        "ingress": 50111451.70666666,
+        "egress": 6528044.106666666
+      },
+      "mean": {
+        "ingress": 129916341.83453842,
+        "egress": 8930956.43489447
+      },
+      "max": {
+        "ingress": 943788148.2259136,
+        "egress": 29541006.96
+      }
+    }
+  },
+  {
+    "scid": "0c87d6c5-6658-46c5-84e0-450c44f06a81",
+    "values": {
+      "latest": {
+        "ingress": 3726.6754966887415,
+        "egress": 1293.7218543046358
+      },
+      "mean": {
+        "ingress": 5611.061192396658,
+        "egress": 1556.8782435156916
+      },
+      "max": {
+        "ingress": 12919.306666666667,
+        "egress": 3069.942122186495
+      }
+    }
+  },
+  {
+    "scid": "0cb5d4c0-5bde-45c0-8ee6-dab43ccbea45",
+    "values": {
+      "latest": {
+        "ingress": 272.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 271.95284798093877,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 273.81333333333333,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "0ccbc0ba-a7d2-4380-b3cb-14276291e603",
+    "values": {
+      "latest": {
+        "ingress": 213283.52,
+        "egress": 160734.56
+      },
+      "mean": {
+        "ingress": 214693.75516405946,
+        "egress": 161765.7301676163
+      },
+      "max": {
+        "ingress": 217944.53333333333,
+        "egress": 166295.06976744186
+      }
+    }
+  },
+  {
+    "scid": "0ccfae31-02dc-4fed-85f3-b53f84d32c6e",
+    "values": {
+      "latest": {
+        "ingress": 2390.3411371237457,
+        "egress": 3086.876254180602
+      },
+      "mean": {
+        "ingress": 2359.8557302394315,
+        "egress": 3035.9590948256064
+      },
+      "max": {
+        "ingress": 2441.562913907285,
+        "egress": 3725.76
+      }
+    }
+  },
+  {
+    "scid": "0d3ffc14-a905-4975-b5c2-b51fb90d4f3f",
+    "values": {
+      "latest": {
+        "ingress": 66745798.986666664,
+        "egress": 512.4533333333334
+      },
+      "mean": {
+        "ingress": 25246933.10464992,
+        "egress": 433.19354973793946
+      },
+      "max": {
+        "ingress": 75176037.04,
+        "egress": 576.8533333333334
+      }
+    }
+  },
+  {
+    "scid": "0db63f8a-6652-4840-a825-06efe07b6159",
+    "values": {
+      "latest": {
+        "ingress": 854.21926910299,
+        "egress": 1067.0033222591362
+      },
+      "mean": {
+        "ingress": 849.5147470477035,
+        "egress": 996.1248431674406
+      },
+      "max": {
+        "ingress": 889.933774834437,
+        "egress": 1622.2133333333334
+      }
+    }
+  },
+  {
+    "scid": "0db7ac4f-761f-4b46-839a-68c5c2bbfb2a",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 31.893687707641195
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 32.25296767000346
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 35.55555555555556
+      }
+    }
+  },
+  {
+    "scid": "0e27c49e-a0be-4ef6-a475-71c577f55699",
+    "values": {
+      "latest": {
+        "ingress": 190046.20735785953,
+        "egress": 624959.9464882943
+      },
+      "mean": {
+        "ingress": 2443872.1118333023,
+        "egress": 5551412.276194594
+      },
+      "max": {
+        "ingress": 77244769.4715719,
+        "egress": 68517108.24
+      }
+    }
+  },
+  {
+    "scid": "0e97e70c-3353-4ef0-b05f-6c1e21052088",
+    "values": {
+      "latest": {
+        "ingress": 2948.0664451827242,
+        "egress": 11305.75415282392
+      },
+      "mean": {
+        "ingress": 3190.3059204618503,
+        "egress": 36873.915884936876
+      },
+      "max": {
+        "ingress": 10267.6,
+        "egress": 2409021.2093023257
+      }
+    }
+  },
+  {
+    "scid": "0ea95cc4-55c2-4e50-a405-c1b993755b3e",
+    "values": {
+      "latest": {
+        "ingress": 325.7866666666667,
+        "egress": 20121494.64
+      },
+      "mean": {
+        "ingress": 326.8676212157913,
+        "egress": 1364799.1561309837
+      },
+      "max": {
+        "ingress": 359.06976744186045,
+        "egress": 27202161.386666667
+      }
+    }
+  },
+  {
+    "scid": "0ee19262-9795-47c6-b7ac-1a2f3c894857",
+    "values": {
+      "latest": {
+        "ingress": 11252.784053156147,
+        "egress": 19098978.976744186
+      },
+      "mean": {
+        "ingress": 165178.46750227147,
+        "egress": 23504355.06775441
+      },
+      "max": {
+        "ingress": 15310032.912751678,
+        "egress": 73474856.71760798
+      }
+    }
+  },
+  {
+    "scid": "0f093fc1-e929-41e9-b8eb-fa2d70ac2b41",
+    "values": {
+      "latest": {
+        "ingress": 730263505.9466667,
+        "egress": 146382144.05333334
+      },
+      "mean": {
+        "ingress": 2306354839.8189645,
+        "egress": 507839596.711383
+      },
+      "max": {
+        "ingress": 19792922527.86711,
+        "egress": 24813765463.226665
+      }
+    }
+  },
+  {
+    "scid": "0fc19f48-bb6c-4c4d-b436-c3dc3a48a540",
+    "values": {
+      "latest": {
+        "ingress": 414.5165562913907,
+        "egress": 1129.4039735099338
+      },
+      "mean": {
+        "ingress": 1077.8065039188903,
+        "egress": 893.6530817761883
+      },
+      "max": {
+        "ingress": 114453.57737104825,
+        "egress": 5060.518272425249
+      }
+    }
+  },
+  {
+    "scid": "0fdae68c-6cc3-43bb-815e-eaf867d1e0fa",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "10751c15-60e4-4d6c-b68d-c679dd2e0e46",
+    "values": {
+      "latest": {
+        "ingress": 839220562.4347826,
+        "egress": 5201195403.076923
+      },
+      "mean": {
+        "ingress": 1390190069.8716383,
+        "egress": 4532472591.500309
+      },
+      "max": {
+        "ingress": 7801944512.666667,
+        "egress": 7266590000.269361
+      }
+    }
+  },
+  {
+    "scid": "108e3f34-cbb9-400f-943a-c2c33c988be9",
+    "values": {
+      "latest": {
+        "ingress": 95.9202657807309,
+        "egress": 18775006.11295681
+      },
+      "mean": {
+        "ingress": 199.75655810676324,
+        "egress": 16844979.485645894
+      },
+      "max": {
+        "ingress": 545.1655629139073,
+        "egress": 31577584.18604651
+      }
+    }
+  },
+  {
+    "scid": "109a7ad9-69cd-4d29-abee-b4af6e73088a",
+    "values": {
+      "latest": {
+        "ingress": 27910.00664451827,
+        "egress": 63166184.07973422
+      },
+      "mean": {
+        "ingress": 25968.896228741807,
+        "egress": 67426411.10409957
+      },
+      "max": {
+        "ingress": 45391.97342192691,
+        "egress": 292935574.29333335
+      }
+    }
+  },
+  {
+    "scid": "10b9013d-7a86-4f9d-b80e-8e7501d8cf0f",
+    "values": {
+      "latest": {
+        "ingress": 185.28,
+        "egress": 1557.2533333333333
+      },
+      "mean": {
+        "ingress": 149.1868770111937,
+        "egress": 1072.682755981663
+      },
+      "max": {
+        "ingress": 186.82666666666665,
+        "egress": 2133.85690515807
+      }
+    }
+  },
+  {
+    "scid": "10c61e08-bc5f-48a8-9872-53dfffeaf984",
+    "values": {
+      "latest": {
+        "ingress": 635839763.641196,
+        "egress": 122593200.90365449
+      },
+      "mean": {
+        "ingress": 720390921.5391228,
+        "egress": 92160550.36218421
+      },
+      "max": {
+        "ingress": 1692305841.84,
+        "egress": 210670676.61333334
+      }
+    }
+  },
+  {
+    "scid": "10c8a3ba-1aea-4a22-abdb-bdb13860061f",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "10d47d94-39d8-4984-8430-300f642e8488",
+    "values": {
+      "latest": {
+        "ingress": 31557.36877076412,
+        "egress": 25587.3488372093
+      },
+      "mean": {
+        "ingress": 33450.76023375619,
+        "egress": 26482.198672241153
+      },
+      "max": {
+        "ingress": 53108.13333333333,
+        "egress": 37371.22666666667
+      }
+    }
+  },
+  {
+    "scid": "10d82154-1a1c-420d-9198-9980c7edc9d7",
+    "values": {
+      "latest": {
+        "ingress": 2490.4900662251657,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 1121.7641868725195,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 2607.3621262458473,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "1195ba87-e0a8-4c03-845e-0bc0f7d58b85",
+    "values": {
+      "latest": {
+        "ingress": 241.84615384615384,
+        "egress": 768.6688963210702
+      },
+      "mean": {
+        "ingress": 261.5640322943285,
+        "egress": 637.3902081357512
+      },
+      "max": {
+        "ingress": 324.64,
+        "egress": 1351.92
+      }
+    }
+  },
+  {
+    "scid": "119f7bbd-04ad-44cd-8d75-0293adc8dd8a",
+    "values": {
+      "latest": {
+        "ingress": 668.2006688963211,
+        "egress": 1079.0100334448161
+      },
+      "mean": {
+        "ingress": 499.1903280408916,
+        "egress": 1529.8003906324243
+      },
+      "max": {
+        "ingress": 745.8523489932886,
+        "egress": 4374.260869565217
+      }
+    }
+  },
+  {
+    "scid": "11b6f82c-1b42-440c-bf6f-0378acbf2088",
+    "values": {
+      "latest": {
+        "ingress": 25180073128.586666,
+        "egress": 28335964659.81333
+      },
+      "mean": {
+        "ingress": 17092756704.59836,
+        "egress": 20968897582.069645
+      },
+      "max": {
+        "ingress": 48179208836.933334,
+        "egress": 42264057965.07641
+      }
+    }
+  },
+  {
+    "scid": "1229a60e-761c-4004-b2a8-bd68903e764f",
+    "values": {
+      "latest": {
+        "ingress": 14840.293333333333,
+        "egress": 17950.4
+      },
+      "mean": {
+        "ingress": 14996.691753848501,
+        "egress": 18052.320032122458
+      },
+      "max": {
+        "ingress": 15613.52,
+        "egress": 18729.674418604653
+      }
+    }
+  },
+  {
+    "scid": "123790a1-ef34-4cb0-b9af-e19bbe8aa9eb",
+    "values": {
+      "latest": {
+        "ingress": 2901414678.5066667,
+        "egress": 24294297949.04
+      },
+      "mean": {
+        "ingress": 7735906951.654448,
+        "egress": 24537394537.80849
+      },
+      "max": {
+        "ingress": 47866550704.877075,
+        "egress": 63846989529.63696
+      }
+    }
+  },
+  {
+    "scid": "12c941e1-5224-453d-a807-40646b215c44",
+    "values": {
+      "latest": {
+        "ingress": 191.04635761589404,
+        "egress": 1220736.927152318
+      },
+      "mean": {
+        "ingress": 123.2270713644643,
+        "egress": 13180775.53550116
+      },
+      "max": {
+        "ingress": 350.18666666666667,
+        "egress": 277949673.2491694
+      }
+    }
+  },
+  {
+    "scid": "1300b831-c1bd-49cb-92a8-f93241c20a31",
+    "values": {
+      "latest": {
+        "ingress": 1174365293.9733334,
+        "egress": 50033504.21333333
+      },
+      "mean": {
+        "ingress": 769368693.5996451,
+        "egress": 998519312.022039
+      },
+      "max": {
+        "ingress": 3258873035.9335546,
+        "egress": 5399222764.4
+      }
+    }
+  },
+  {
+    "scid": "134acb33-59e6-4661-9677-fbbebab12a47",
+    "values": {
+      "latest": {
+        "ingress": 774938110.1270903,
+        "egress": 2692511321.284281
+      },
+      "mean": {
+        "ingress": 730706244.4704335,
+        "egress": 1516603618.9353187
+      },
+      "max": {
+        "ingress": 1396556980.9333334,
+        "egress": 3026603459.68
+      }
+    }
+  },
+  {
+    "scid": "1409a504-c174-4e78-8ed3-aaa28584bb3b",
+    "values": {
+      "latest": {
+        "ingress": 121620107.26910299,
+        "egress": 33955017.99335548
+      },
+      "mean": {
+        "ingress": 81269910.43976992,
+        "egress": 33046585.33759967
+      },
+      "max": {
+        "ingress": 156440462.8039867,
+        "egress": 251847757.26245847
+      }
+    }
+  },
+  {
+    "scid": "14199cf2-5738-4ccc-abf3-4916baacaf21",
+    "values": {
+      "latest": {
+        "ingress": 1680839.28,
+        "egress": 22225907.413333334
+      },
+      "mean": {
+        "ingress": 20783099.794108145,
+        "egress": 24609708.2352845
+      },
+      "max": {
+        "ingress": 445858273.6744186,
+        "egress": 31878970.373333335
+      }
+    }
+  },
+  {
+    "scid": "141d138b-5203-4e54-9cac-b4d66add1a62",
+    "values": {
+      "latest": {
+        "ingress": 132838020.43853821,
+        "egress": 69716994.15282393
+      },
+      "mean": {
+        "ingress": 129967091.3796732,
+        "egress": 148247714.767889
+      },
+      "max": {
+        "ingress": 197174863.94684386,
+        "egress": 959837750.5333333
+      }
+    }
+  },
+  {
+    "scid": "14555551-3ce4-4e4d-bfbf-56de8205284e",
+    "values": {
+      "latest": {
+        "ingress": 172.90666666666667,
+        "egress": 960.96
+      },
+      "mean": {
+        "ingress": 176.40550118405955,
+        "egress": 893.4355332950697
+      },
+      "max": {
+        "ingress": 329.3066666666667,
+        "egress": 1574.4053156146178
+      }
+    }
+  },
+  {
+    "scid": "14b798af-d52a-4ebc-a06b-175210a878bc",
+    "values": {
+      "latest": {
+        "ingress": 252.38538205980066,
+        "egress": 155.56146179401992
+      },
+      "mean": {
+        "ingress": 32467984.021167155,
+        "egress": 160114.16766145834
+      },
+      "max": {
+        "ingress": 491400756.26666665,
+        "egress": 2115406.453333333
+      }
+    }
+  },
+  {
+    "scid": "14d6c05d-4621-47d0-9705-2b50a5ba2607",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 247608143.4950166
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 211256919.12473014
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 349676790.192691
+      }
+    }
+  },
+  {
+    "scid": "1501ff8b-841c-436a-91be-37b2d88552a5",
+    "values": {
+      "latest": {
+        "ingress": 732883.2956810631,
+        "egress": 757375.6279069767
+      },
+      "mean": {
+        "ingress": 6587609.640779554,
+        "egress": 6979375.626466156
+      },
+      "max": {
+        "ingress": 264819624.3986711,
+        "egress": 268157217.56810632
+      }
+    }
+  },
+  {
+    "scid": "1510f7a6-b938-4e27-823c-24e2867c1f5b",
+    "values": {
+      "latest": {
+        "ingress": 345.9401993355482,
+        "egress": 1326.3255813953488
+      },
+      "mean": {
+        "ingress": 467.17586439314044,
+        "egress": 4015.340126156744
+      },
+      "max": {
+        "ingress": 16697.461794019935,
+        "egress": 379524.33222591365
+      }
+    }
+  },
+  {
+    "scid": "1518a76a-101a-4910-a4a2-330c40eee2bd",
+    "values": {
+      "latest": {
+        "ingress": 59.93311036789298,
+        "egress": 32829.3779264214
+      },
+      "mean": {
+        "ingress": 57.60402608077306,
+        "egress": 71547.79963749945
+      },
+      "max": {
+        "ingress": 62.21333333333333,
+        "egress": 2507956.066889632
+      }
+    }
+  },
+  {
+    "scid": "1531ae5c-19ba-4361-b673-b61598c7edc6",
+    "values": {
+      "latest": {
+        "ingress": 177163.12,
+        "egress": 214469.49333333335
+      },
+      "mean": {
+        "ingress": 224224.2652643697,
+        "egress": 13380800.5617656
+      },
+      "max": {
+        "ingress": 934025.8775510204,
+        "egress": 58571221.20930233
+      }
+    }
+  },
+  {
+    "scid": "15376a6e-7742-4bdd-83ad-dea544b6fc4f",
+    "values": {
+      "latest": {
+        "ingress": 47213298.32,
+        "egress": 13828865.466666667
+      },
+      "mean": {
+        "ingress": 522130502.8010606,
+        "egress": 268058627.64261687
+      },
+      "max": {
+        "ingress": 2835213748.9866667,
+        "egress": 2389146168.1866665
+      }
+    }
+  },
+  {
+    "scid": "15597b53-1a55-43ff-a666-fb4e11eeaee8",
+    "values": {
+      "latest": {
+        "ingress": 75421281705.73914,
+        "egress": 21692855323.076923
+      },
+      "mean": {
+        "ingress": 63047648177.728806,
+        "egress": 19368958186.155514
+      },
+      "max": {
+        "ingress": 115538625713.06667,
+        "egress": 39417788884.30565
+      }
+    }
+  },
+  {
+    "scid": "15aa7807-f05c-4854-9150-acb496c3159e",
+    "values": {
+      "latest": {
+        "ingress": 1409.7066666666667,
+        "egress": 1084.16
+      },
+      "mean": {
+        "ingress": 1339.5595106150865,
+        "egress": 1032.471287556978
+      },
+      "max": {
+        "ingress": 1562.843853820598,
+        "egress": 1263.731543624161
+      }
+    }
+  },
+  {
+    "scid": "15bfb61a-861f-426d-be13-45eb31eb3ec5",
+    "values": {
+      "latest": {
+        "ingress": 31161553661.306667,
+        "egress": 29901503436.8
+      },
+      "mean": {
+        "ingress": 41425090673.69403,
+        "egress": 30495968823.340096
+      },
+      "max": {
+        "ingress": 76441249563.73334,
+        "egress": 76217706772.6589
+      }
+    }
+  },
+  {
+    "scid": "15dd84bd-3042-4734-8d9b-d110596e9875",
+    "values": {
+      "latest": {
+        "ingress": 66.09966777408638,
+        "egress": 357.2093023255814
+      },
+      "mean": {
+        "ingress": 282.8866193071663,
+        "egress": 639.858904203255
+      },
+      "max": {
+        "ingress": 898.0996677740864,
+        "egress": 2299.7852348993288
+      }
+    }
+  },
+  {
+    "scid": "15e11dd8-fa00-4e14-8bfd-2604b83f3791",
+    "values": {
+      "latest": {
+        "ingress": 179.60264900662253,
+        "egress": 1025.1920529801325
+      },
+      "mean": {
+        "ingress": 185.35324907311139,
+        "egress": 869.8158724472689
+      },
+      "max": {
+        "ingress": 213.156146179402,
+        "egress": 1326.750830564784
+      }
+    }
+  },
+  {
+    "scid": "16476b10-e427-481f-b082-4a21bd54bc67",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "16644def-bcc6-4588-ad2f-e5c179d676d9",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "166d1c29-be89-44fb-82ae-4e57beb948aa",
+    "values": {
+      "latest": {
+        "ingress": 66745798.986666664,
+        "egress": 504.29333333333335
+      },
+      "mean": {
+        "ingress": 25246123.23190193,
+        "egress": 424.85901774704786
+      },
+      "max": {
+        "ingress": 75176037.04,
+        "egress": 567.4133333333333
+      }
+    }
+  },
+  {
+    "scid": "167e7247-a2ff-42dc-973d-da88fce9b5dd",
+    "values": {
+      "latest": {
+        "ingress": 715499908.2933333,
+        "egress": 4413083195.146667
+      },
+      "mean": {
+        "ingress": 650062410.0478821,
+        "egress": 2242209827.482643
+      },
+      "max": {
+        "ingress": 1167563466.4451828,
+        "egress": 4634340900.225914
+      }
+    }
+  },
+  {
+    "scid": "16b8d896-9d4a-403f-9cc5-f087a3137a68",
+    "values": {
+      "latest": {
+        "ingress": 3.6026490066225167,
+        "egress": 1192.635761589404
+      },
+      "mean": {
+        "ingress": 5.008238507039381,
+        "egress": 1113.0834262098099
+      },
+      "max": {
+        "ingress": 17.966777408637874,
+        "egress": 1530.88
+      }
+    }
+  },
+  {
+    "scid": "16c14584-c205-4c28-85da-ed53bfed4f0e",
+    "values": {
+      "latest": {
+        "ingress": 303337609.5733333,
+        "egress": 170214356.56
+      },
+      "mean": {
+        "ingress": 179796586.54381323,
+        "egress": 119930764.78675021
+      },
+      "max": {
+        "ingress": 368182362.73754156,
+        "egress": 325001895.2026578
+      }
+    }
+  },
+  {
+    "scid": "16db554a-970f-450c-8a43-82ba1f91b0e6",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 108.65116279069767
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 121.2735568426734
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 788.9966777408638
+      }
+    }
+  },
+  {
+    "scid": "16e502b0-920a-4640-9ef1-2a8096549750",
+    "values": {
+      "latest": {
+        "ingress": 15611815283.36,
+        "egress": 12986495758.933332
+      },
+      "mean": {
+        "ingress": 4720060492.864265,
+        "egress": 10304522907.26837
+      },
+      "max": {
+        "ingress": 17092998450.453333,
+        "egress": 22411030578.392025
+      }
+    }
+  },
+  {
+    "scid": "172d87f3-530c-4232-ba67-6f52e5f96274",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 384325030.96345514
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 387532346.05614454
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 525186584.42524916
+      }
+    }
+  },
+  {
+    "scid": "17380d2a-e6f5-4ed9-abb1-b8663ead67a0",
+    "values": {
+      "latest": {
+        "ingress": 222.18666666666667,
+        "egress": 2333843376.0
+      },
+      "mean": {
+        "ingress": 255.89290416035433,
+        "egress": 6043440790.799753
+      },
+      "max": {
+        "ingress": 388.27906976744185,
+        "egress": 23853278983.813953
+      }
+    }
+  },
+  {
+    "scid": "176feff7-9335-4f01-a527-da9957f620f3",
+    "values": {
+      "latest": {
+        "ingress": 7774.431893687708,
+        "egress": 4871.920265780731
+      },
+      "mean": {
+        "ingress": 8621.620793519733,
+        "egress": 10941.954279401192
+      },
+      "max": {
+        "ingress": 13707.52,
+        "egress": 296933.92
+      }
+    }
+  },
+  {
+    "scid": "1777015a-4a61-4db2-ab7b-3d51c51b72c8",
+    "values": {
+      "latest": {
+        "ingress": 2068477031.9466667,
+        "egress": 4648222648.853333
+      },
+      "mean": {
+        "ingress": 1854975339.2432888,
+        "egress": 4376353985.804076
+      },
+      "max": {
+        "ingress": 3197547797.0764117,
+        "egress": 6701752316.27907
+      }
+    }
+  },
+  {
+    "scid": "1791eae3-5f75-43d0-996a-e2e149477442",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.15837509165694347
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 1.979933110367893
+      }
+    }
+  },
+  {
+    "scid": "187ba847-387a-4e22-9264-3cf431bce396",
+    "values": {
+      "latest": {
+        "ingress": 1294732744.7491639,
+        "egress": 1258152856.374582
+      },
+      "mean": {
+        "ingress": 1550601078.8347218,
+        "egress": 1893019569.987211
+      },
+      "max": {
+        "ingress": 4835877669.209302,
+        "egress": 6351482069.458194
+      }
+    }
+  },
+  {
+    "scid": "1899bd82-2345-4f25-b429-64871446c65b",
+    "values": {
+      "latest": {
+        "ingress": 563760.8266666667,
+        "egress": 64447706.50666667
+      },
+      "mean": {
+        "ingress": 77403596.81268732,
+        "egress": 63776028.4565496
+      },
+      "max": {
+        "ingress": 3017782694.9333334,
+        "egress": 234191542.93333334
+      }
+    }
+  },
+  {
+    "scid": "18aab95f-bcf9-4ed4-934f-129083d5823a",
+    "values": {
+      "latest": {
+        "ingress": 78.61333333333333,
+        "egress": 94.24
+      },
+      "mean": {
+        "ingress": 79.85228085230271,
+        "egress": 95.9574714844828
+      },
+      "max": {
+        "ingress": 96.4,
+        "egress": 110.21333333333334
+      }
+    }
+  },
+  {
+    "scid": "18d4726a-65ef-42a5-ac74-503469d02b14",
+    "values": {
+      "latest": {
+        "ingress": 116.27906976744185,
+        "egress": 937.2225913621262
+      },
+      "mean": {
+        "ingress": 136.63438506003783,
+        "egress": 950.9489476045161
+      },
+      "max": {
+        "ingress": 4249.913621262458,
+        "egress": 1791.8933333333334
+      }
+    }
+  },
+  {
+    "scid": "1906b294-314f-4feb-84f2-a75af3a64a75",
+    "values": {
+      "latest": {
+        "ingress": 148.91694352159467,
+        "egress": 163139228.38538206
+      },
+      "mean": {
+        "ingress": 285.40238777304876,
+        "egress": 106961674.37765649
+      },
+      "max": {
+        "ingress": 1729.0099667774086,
+        "egress": 205901871.86754966
+      }
+    }
+  },
+  {
+    "scid": "192b2225-8d32-4244-a9ba-e19e9d4273b5",
+    "values": {
+      "latest": {
+        "ingress": 60749.083612040136,
+        "egress": 20093.77926421405
+      },
+      "mean": {
+        "ingress": 78672.97691830168,
+        "egress": 20658.685797300986
+      },
+      "max": {
+        "ingress": 145695.12582781457,
+        "egress": 27081.08609271523
+      }
+    }
+  },
+  {
+    "scid": "19411b00-b039-4b1a-8c37-7bbfed9c31ef",
+    "values": {
+      "latest": {
+        "ingress": 154522.15282392027,
+        "egress": 127473.30232558139
+      },
+      "mean": {
+        "ingress": 1181781.7964075105,
+        "egress": 1119330.0945204003
+      },
+      "max": {
+        "ingress": 49654380.59800664,
+        "egress": 21274806.48
+      }
+    }
+  },
+  {
+    "scid": "196accbc-ea01-42d8-9b12-137606d287f2",
+    "values": {
+      "latest": {
+        "ingress": 1459311065.0666666,
+        "egress": 801002223.6
+      },
+      "mean": {
+        "ingress": 1508452436.6673985,
+        "egress": 636182256.006574
+      },
+      "max": {
+        "ingress": 6403241379.906355,
+        "egress": 1443184803.0564785
+      }
+    }
+  },
+  {
+    "scid": "19929b39-8a7b-4f4a-9194-4dfbdc9d897a",
+    "values": {
+      "latest": {
+        "ingress": 15722.675585284282,
+        "egress": 13938.247491638796
+      },
+      "mean": {
+        "ingress": 2810091.8621130725,
+        "egress": 156254.62556248758
+      },
+      "max": {
+        "ingress": 140302806.68456376,
+        "egress": 25964083.61461794
+      }
+    }
+  },
+  {
+    "scid": "19d57a2e-2063-4b30-b5ee-d5c8a3e4ef54",
+    "values": {
+      "latest": {
+        "ingress": 1599.3578595317726,
+        "egress": 361.95317725752506
+      },
+      "mean": {
+        "ingress": 2272.87424261021,
+        "egress": 365.1201803548243
+      },
+      "max": {
+        "ingress": 5344.158940397351,
+        "egress": 387.38666666666666
+      }
+    }
+  },
+  {
+    "scid": "1a41ae31-c0ed-4056-9127-f7f2570d53a1",
+    "values": {
+      "latest": {
+        "ingress": 689936253.28,
+        "egress": 1375426762.96
+      },
+      "mean": {
+        "ingress": 470378067.7427712,
+        "egress": 720023637.0067085
+      },
+      "max": {
+        "ingress": 1499050828.56,
+        "egress": 1752689912.0810812
+      }
+    }
+  },
+  {
+    "scid": "1a6b5d97-f769-43cd-b75f-ba5346b13fc0",
+    "values": {
+      "latest": {
+        "ingress": 639.010033444816,
+        "egress": 449.95317725752506
+      },
+      "mean": {
+        "ingress": 448.0011172864386,
+        "egress": 417.88679904606465
+      },
+      "max": {
+        "ingress": 2687.682119205298,
+        "egress": 481.7748344370861
+      }
+    }
+  },
+  {
+    "scid": "1b3404b0-f271-4ab6-b084-d126f781adb3",
+    "values": {
+      "latest": {
+        "ingress": 1269862898.64,
+        "egress": 7292268652.613334
+      },
+      "mean": {
+        "ingress": 979868196.5219206,
+        "egress": 5391303457.269826
+      },
+      "max": {
+        "ingress": 1842720239.8133333,
+        "egress": 10992982852.0
+      }
+    }
+  },
+  {
+    "scid": "1b595534-bf95-4045-a5c3-3ed6c179ba0c",
+    "values": {
+      "latest": {
+        "ingress": 40335978993.04,
+        "egress": 11452712319.466667
+      },
+      "mean": {
+        "ingress": 29118678297.158073,
+        "egress": 9565909278.908485
+      },
+      "max": {
+        "ingress": 47163483101.28904,
+        "egress": 25375266583.865772
+      }
+    }
+  },
+  {
+    "scid": "1b5e2ca1-168b-4beb-a65f-3c46d8be4f66",
+    "values": {
+      "latest": {
+        "ingress": 423738094.40531564,
+        "egress": 1200797132.8903654
+      },
+      "mean": {
+        "ingress": 616080275.0616034,
+        "egress": 471513162.1689559
+      },
+      "max": {
+        "ingress": 1693248142.24,
+        "egress": 1869761356.7574751
+      }
+    }
+  },
+  {
+    "scid": "1b5ed316-dd35-4c6b-9898-29bc24be3450",
+    "values": {
+      "latest": {
+        "ingress": 333801.4448160535,
+        "egress": 98674.5685618729
+      },
+      "mean": {
+        "ingress": 308014.89652346284,
+        "egress": 87032.44054881795
+      },
+      "max": {
+        "ingress": 572111.5466666666,
+        "egress": 276457.6644295302
+      }
+    }
+  },
+  {
+    "scid": "1b9cb927-8e22-4b7b-8525-f1350ed1886e",
+    "values": {
+      "latest": {
+        "ingress": 331734512.9866667,
+        "egress": 536459.1733333333
+      },
+      "mean": {
+        "ingress": 313215754.3138938,
+        "egress": 295896.7502432961
+      },
+      "max": {
+        "ingress": 950794017.3023256,
+        "egress": 837800.5066666667
+      }
+    }
+  },
+  {
+    "scid": "1bd07732-d4af-4e17-94f3-b1f826937ab6",
+    "values": {
+      "latest": {
+        "ingress": 117058.77333333333,
+        "egress": 85621.97333333333
+      },
+      "mean": {
+        "ingress": 13297869.47091338,
+        "egress": 221542.90054827608
+      },
+      "max": {
+        "ingress": 56736846.666666664,
+        "egress": 756909.4933333333
+      }
+    }
+  },
+  {
+    "scid": "1be23e35-d3d5-4aff-b48b-5d491fb9dff2",
+    "values": {
+      "latest": {
+        "ingress": 6555.183946488294,
+        "egress": 12130180206.501673
+      },
+      "mean": {
+        "ingress": 6284.169634892151,
+        "egress": 2096224443.4870076
+      },
+      "max": {
+        "ingress": 7610.516556291391,
+        "egress": 22087115469.832775
+      }
+    }
+  },
+  {
+    "scid": "1bec2d3e-df91-4002-acd8-9ec061c1b85c",
+    "values": {
+      "latest": {
+        "ingress": 487.62666666666667,
+        "egress": 6164349.52
+      },
+      "mean": {
+        "ingress": 499.98555094279243,
+        "egress": 1890556.57723364
+      },
+      "max": {
+        "ingress": 643.96,
+        "egress": 6931832.773333333
+      }
+    }
+  },
+  {
+    "scid": "1c1ff9c5-79ec-409c-9986-133ea9923853",
+    "values": {
+      "latest": {
+        "ingress": 909924.4119601329,
+        "egress": 2051692.73089701
+      },
+      "mean": {
+        "ingress": 888032.1866368962,
+        "egress": 2020072.4789449498
+      },
+      "max": {
+        "ingress": 1108699.52,
+        "egress": 2113569.3066666666
+      }
+    }
+  },
+  {
+    "scid": "1c3d5086-6663-42a8-9a0b-59ff278af1d4",
+    "values": {
+      "latest": {
+        "ingress": 93270.4,
+        "egress": 62143.41333333333
+      },
+      "mean": {
+        "ingress": 168989522.1708095,
+        "egress": 16571675.290372524
+      },
+      "max": {
+        "ingress": 1475900035.3333333,
+        "egress": 476784229.36
+      }
+    }
+  },
+  {
+    "scid": "1c5bbd17-a4f2-4284-bb8b-ce0127edbd23",
+    "values": {
+      "latest": {
+        "ingress": 202691952.74666667,
+        "egress": 203341892.72
+      },
+      "mean": {
+        "ingress": 125075213.77666807,
+        "egress": 832971831.1578124
+      },
+      "max": {
+        "ingress": 795182980.4,
+        "egress": 5553866379.692307
+      }
+    }
+  },
+  {
+    "scid": "1c8039f6-3f5e-4d28-b082-5a304bd02f8d",
+    "values": {
+      "latest": {
+        "ingress": 26649.461794019935,
+        "egress": 404255.2026578073
+      },
+      "mean": {
+        "ingress": 28755.674512343918,
+        "egress": 721700.3155899418
+      },
+      "max": {
+        "ingress": 89153.83388704319,
+        "egress": 2733424.8533333335
+      }
+    }
+  },
+  {
+    "scid": "1caee5e3-485a-4fe8-b0c1-2993bfe84943",
+    "values": {
+      "latest": {
+        "ingress": 5048926319.625418,
+        "egress": 12205932274.943144
+      },
+      "mean": {
+        "ingress": 5231301573.306525,
+        "egress": 16158629711.361362
+      },
+      "max": {
+        "ingress": 12245014900.266666,
+        "egress": 41819249733.74086
+      }
+    }
+  },
+  {
+    "scid": "1d343d79-0dbf-4e8b-8e1e-f3e586fe6c0b",
+    "values": {
+      "latest": {
+        "ingress": 299344804.16,
+        "egress": 1151298700.1333334
+      },
+      "mean": {
+        "ingress": 202271494.49262616,
+        "egress": 1324786054.9203088
+      },
+      "max": {
+        "ingress": 851019968.1866666,
+        "egress": 6180184382.314382
+      }
+    }
+  },
+  {
+    "scid": "1d8c3a7d-c23f-4c26-87a1-7e7d880631a5",
+    "values": {
+      "latest": {
+        "ingress": 2361235544.722408,
+        "egress": 366923039.1438127
+      },
+      "mean": {
+        "ingress": 1667689919.7299995,
+        "egress": 477957730.34146595
+      },
+      "max": {
+        "ingress": 3148907909.2441473,
+        "egress": 3079327356.4682274
+      }
+    }
+  },
+  {
+    "scid": "1dd01503-0e23-46b7-b4c8-056ca91ca1a1",
+    "values": {
+      "latest": {
+        "ingress": 900469540.4266666,
+        "egress": 1485584072.16
+      },
+      "mean": {
+        "ingress": 625466512.8657373,
+        "egress": 1153009083.3054123
+      },
+      "max": {
+        "ingress": 1295826382.6622074,
+        "egress": 1910476859.6
+      }
+    }
+  },
+  {
+    "scid": "1dd2f3d5-4714-4201-9027-d0115be4a1da",
+    "values": {
+      "latest": {
+        "ingress": 50.32,
+        "egress": 4.8
+      },
+      "mean": {
+        "ingress": 47.3578704744158,
+        "egress": 4.923817703043893
+      },
+      "max": {
+        "ingress": 57.070234113712374,
+        "egress": 11.68
+      }
+    }
+  },
+  {
+    "scid": "1dfeb152-3454-4f24-acc9-72fcd33d2063",
+    "values": {
+      "latest": {
+        "ingress": 70954.74666666667,
+        "egress": 21620.88
+      },
+      "mean": {
+        "ingress": 88061.19323457866,
+        "egress": 21605.26933456725
+      },
+      "max": {
+        "ingress": 166032.39867109634,
+        "egress": 27926.666666666668
+      }
+    }
+  },
+  {
+    "scid": "1e02d94a-8cad-412a-86f0-8032dd9dc83f",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 6668663.043189369
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 23308744.727812707
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 61172879.17333333
+      }
+    }
+  },
+  {
+    "scid": "1e22ab62-4cfe-4989-a814-9f4c97684f53",
+    "values": {
+      "latest": {
+        "ingress": 4289880.426666667,
+        "egress": 864661.1466666666
+      },
+      "mean": {
+        "ingress": 6226058.14990083,
+        "egress": 16228012.868264126
+      },
+      "max": {
+        "ingress": 47782968.693333335,
+        "egress": 182357427.42474917
+      }
+    }
+  },
+  {
+    "scid": "1e244e65-16d8-4d0f-ab8f-895ae6890721",
+    "values": {
+      "latest": {
+        "ingress": 513.2266666666667,
+        "egress": 495.84
+      },
+      "mean": {
+        "ingress": 459.7560068106165,
+        "egress": 454.43157190397693
+      },
+      "max": {
+        "ingress": 872.561872909699,
+        "egress": 1044.48
+      }
+    }
+  },
+  {
+    "scid": "1ea05a59-68b3-405e-b16d-25bf2ced49e9",
+    "values": {
+      "latest": {
+        "ingress": 982.1129568106312,
+        "egress": 5603497.913621263
+      },
+      "mean": {
+        "ingress": 985.5274253487876,
+        "egress": 7256002.584230613
+      },
+      "max": {
+        "ingress": 995.295681063123,
+        "egress": 66748643.81456953
+      }
+    }
+  },
+  {
+    "scid": "1eaffd5f-d60b-4d52-9be7-5ec5aa424e84",
+    "values": {
+      "latest": {
+        "ingress": 2049855063.2026577,
+        "egress": 133355674.12624584
+      },
+      "mean": {
+        "ingress": 1546430782.0173924,
+        "egress": 160426856.44647968
+      },
+      "max": {
+        "ingress": 2472499811.5083055,
+        "egress": 485588007.70666665
+      }
+    }
+  },
+  {
+    "scid": "1eec53f9-ea26-45be-aaca-6d02d3eaa1ae",
+    "values": {
+      "latest": {
+        "ingress": 3484.16,
+        "egress": 3784.08
+      },
+      "mean": {
+        "ingress": 27619852.01244801,
+        "egress": 3813.7898358381353
+      },
+      "max": {
+        "ingress": 483949210.8361204,
+        "egress": 4049.3645484949834
+      }
+    }
+  },
+  {
+    "scid": "1f8e5e54-3ced-49c6-9bb6-0eb5f2d1d919",
+    "values": {
+      "latest": {
+        "ingress": 6874.64,
+        "egress": 4607.413333333333
+      },
+      "mean": {
+        "ingress": 7690.415353539404,
+        "egress": 10833.300190943903
+      },
+      "max": {
+        "ingress": 13880.66889632107,
+        "egress": 307127.4381270903
+      }
+    }
+  },
+  {
+    "scid": "1fd474d6-a2e9-4a72-bd8d-157b625888c6",
+    "values": {
+      "latest": {
+        "ingress": 1581.6454849498327,
+        "egress": 2202.6755852842807
+      },
+      "mean": {
+        "ingress": 1610.5075549172234,
+        "egress": 2116.9946773346364
+      },
+      "max": {
+        "ingress": 1968.4238410596026,
+        "egress": 5243.066666666667
+      }
+    }
+  },
+  {
+    "scid": "1ffac299-0dd2-4176-8ef8-4396c5e8c82d",
+    "values": {
+      "latest": {
+        "ingress": 836092.3178807948,
+        "egress": 679979.1523178808
+      },
+      "mean": {
+        "ingress": 873664.1495833718,
+        "egress": 723430.1882223593
+      },
+      "max": {
+        "ingress": 1067217.3820598007,
+        "egress": 910873.5149501661
+      }
+    }
+  },
+  {
+    "scid": "201a2e2e-e629-4f2a-8b58-8943f20bd3fc",
+    "values": {
+      "latest": {
+        "ingress": 1269862788.3466666,
+        "egress": 7292268594.533334
+      },
+      "mean": {
+        "ingress": 979885587.7027656,
+        "egress": 5391347281.8622465
+      },
+      "max": {
+        "ingress": 1842720139.5466666,
+        "egress": 10992982821.68
+      }
+    }
+  },
+  {
+    "scid": "203bd8cd-b9a4-4670-85a9-66656b2a0a33",
+    "values": {
+      "latest": {
+        "ingress": 2780.24,
+        "egress": 4432.293333333333
+      },
+      "mean": {
+        "ingress": 4295.366628798161,
+        "egress": 10640.563301407203
+      },
+      "max": {
+        "ingress": 38514.768718802,
+        "egress": 55481.277870216305
+      }
+    }
+  },
+  {
+    "scid": "207ab701-434f-4965-abe7-6fd9f318f0a3",
+    "values": {
+      "latest": {
+        "ingress": 484808.32,
+        "egress": 518871.84
+      },
+      "mean": {
+        "ingress": 457366.0067209996,
+        "egress": 501363.7979558246
+      },
+      "max": {
+        "ingress": 663811.5083056479,
+        "egress": 599401.9667774086
+      }
+    }
+  },
+  {
+    "scid": "20a13559-cc78-425a-b4c7-b9be4a7535e7",
+    "values": {
+      "latest": {
+        "ingress": 16474484.48,
+        "egress": 239620985.6
+      },
+      "mean": {
+        "ingress": 34444381.40192614,
+        "egress": 78407360.76948778
+      },
+      "max": {
+        "ingress": 207642138.1192053,
+        "egress": 332691267.04
+      }
+    }
+  },
+  {
+    "scid": "20cf47e9-1fcf-49e3-ae88-157e3d880cae",
+    "values": {
+      "latest": {
+        "ingress": 2354965.8471760796,
+        "egress": 43554431.54817276
+      },
+      "mean": {
+        "ingress": 4418826.743829945,
+        "egress": 47933418.185203455
+      },
+      "max": {
+        "ingress": 25379074.186666667,
+        "egress": 247748529.09333333
+      }
+    }
+  },
+  {
+    "scid": "210e27bc-ebc6-4022-87bf-7d68bbad573a",
+    "values": {
+      "latest": {
+        "ingress": 2280.5847176079733,
+        "egress": 2008.5847176079735
+      },
+      "mean": {
+        "ingress": 2286.4642415597045,
+        "egress": 2012.39268549667
+      },
+      "max": {
+        "ingress": 2317.953488372093,
+        "egress": 2035.505016722408
+      }
+    }
+  },
+  {
+    "scid": "213c036b-26ce-444f-aceb-c14185c47521",
+    "values": {
+      "latest": {
+        "ingress": 3383.6266666666666,
+        "egress": 13.226666666666667
+      },
+      "mean": {
+        "ingress": 2777.6329260087427,
+        "egress": 12.508979150393579
+      },
+      "max": {
+        "ingress": 3480.317880794702,
+        "egress": 21.653333333333332
+      }
+    }
+  },
+  {
+    "scid": "21a5e397-d6f2-463b-af4b-54c9eeac7449",
+    "values": {
+      "latest": {
+        "ingress": 7358745.754152824,
+        "egress": 4260291.933554817
+      },
+      "mean": {
+        "ingress": 82650873.6710073,
+        "egress": 4566470.503497726
+      },
+      "max": {
+        "ingress": 880964200.6378738,
+        "egress": 10814934.773333333
+      }
+    }
+  },
+  {
+    "scid": "21aa2198-7a5c-4944-8646-c793e0bda5fa",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "21c3396e-cc9d-4601-80dc-d228cbc265ce",
+    "values": {
+      "latest": {
+        "ingress": 116960.64,
+        "egress": 85525.70666666667
+      },
+      "mean": {
+        "ingress": 13298467.815070158,
+        "egress": 221464.0094421953
+      },
+      "max": {
+        "ingress": 56736738.72,
+        "egress": 756815.4533333334
+      }
+    }
+  },
+  {
+    "scid": "22075da7-b83a-4c5f-9a23-2697a68f9c69",
+    "values": {
+      "latest": {
+        "ingress": 912566.2666666667,
+        "egress": 2314299.2
+      },
+      "mean": {
+        "ingress": 1118307.2842178503,
+        "egress": 2965992.8490601857
+      },
+      "max": {
+        "ingress": 5120513.970049917,
+        "egress": 29450824.98666667
+      }
+    }
+  },
+  {
+    "scid": "223ce175-d3b3-4aaa-8c2a-f4eb7db5d55c",
+    "values": {
+      "latest": {
+        "ingress": 1597238.1395348837,
+        "egress": 4531414.53820598
+      },
+      "mean": {
+        "ingress": 2523085.4443150247,
+        "egress": 4767639.9507550895
+      },
+      "max": {
+        "ingress": 3825814.4422442243,
+        "egress": 36143255.202657804
+      }
+    }
+  },
+  {
+    "scid": "225c1029-e685-424c-bc6d-4bb6fb8922ff",
+    "values": {
+      "latest": {
+        "ingress": 769842894.24,
+        "egress": 149333868.50666666
+      },
+      "mean": {
+        "ingress": 116349266.49327707,
+        "egress": 206771453.97454464
+      },
+      "max": {
+        "ingress": 3278237207.173333,
+        "egress": 1324359914.4266667
+      }
+    }
+  },
+  {
+    "scid": "225e173e-a434-48f0-8d45-788131e71ee2",
+    "values": {
+      "latest": {
+        "ingress": 92710.88,
+        "egress": 169599.6
+      },
+      "mean": {
+        "ingress": 90719.16033136414,
+        "egress": 165357.24082143343
+      },
+      "max": {
+        "ingress": 97902.61333333333,
+        "egress": 182769.25333333333
+      }
+    }
+  },
+  {
+    "scid": "22e12fe0-8788-470e-9098-512487831eea",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "23558e1f-2bd8-4802-8062-6ff1d78cb8b3",
+    "values": {
+      "latest": {
+        "ingress": 43912009.99335548,
+        "egress": 119406633.40863787
+      },
+      "mean": {
+        "ingress": 50796927.08412466,
+        "egress": 167648731.42375812
+      },
+      "max": {
+        "ingress": 164509857.089701,
+        "egress": 626139201.5466666
+      }
+    }
+  },
+  {
+    "scid": "23aa4fbe-15bc-4f69-98ce-695c23ec901b",
+    "values": {
+      "latest": {
+        "ingress": 3235.52,
+        "egress": 3454.5333333333333
+      },
+      "mean": {
+        "ingress": 3250.7684032737466,
+        "egress": 3377.3945319946138
+      },
+      "max": {
+        "ingress": 3354.9501661129566,
+        "egress": 3855.84
+      }
+    }
+  },
+  {
+    "scid": "23ded7cb-8234-4030-b0ff-e34a2755d9a2",
+    "values": {
+      "latest": {
+        "ingress": 1211.6,
+        "egress": 2257.52
+      },
+      "mean": {
+        "ingress": 1204.707134254149,
+        "egress": 2275.505998509692
+      },
+      "max": {
+        "ingress": 1451.9866220735787,
+        "egress": 2447.813953488372
+      }
+    }
+  },
+  {
+    "scid": "2401b1fb-4bda-4d11-ab4a-9fb64e746e8e",
+    "values": {
+      "latest": {
+        "ingress": 359109.74086378736,
+        "egress": 256050.49833887044
+      },
+      "mean": {
+        "ingress": 390652.28260298015,
+        "egress": 294191.15642171126
+      },
+      "max": {
+        "ingress": 525652.4949832776,
+        "egress": 422773.28903654485
+      }
+    }
+  },
+  {
+    "scid": "2406e5d4-3c78-436a-81b7-62b8035e19c4",
+    "values": {
+      "latest": {
+        "ingress": 954385869.8133334,
+        "egress": 3335514293.9466667
+      },
+      "mean": {
+        "ingress": 1589599171.637562,
+        "egress": 3438988278.402246
+      },
+      "max": {
+        "ingress": 14730073835.653334,
+        "egress": 10637710274.342106
+      }
+    }
+  },
+  {
+    "scid": "244f1a0a-8a98-4b6d-83d5-41fd1284f564",
+    "values": {
+      "latest": {
+        "ingress": 10582.086378737542,
+        "egress": 750895522.7375416
+      },
+      "mean": {
+        "ingress": 10582.85556994919,
+        "egress": 1975340342.4420457
+      },
+      "max": {
+        "ingress": 30296.159468438538,
+        "egress": 17365251621.634552
+      }
+    }
+  },
+  {
+    "scid": "24d033d8-f66d-4a02-a81c-e5e4fb5fc895",
+    "values": {
+      "latest": {
+        "ingress": 422.50666666666666,
+        "egress": 1819.8133333333333
+      },
+      "mean": {
+        "ingress": 10739.78595824232,
+        "egress": 1992.4751666742197
+      },
+      "max": {
+        "ingress": 379666.3122923588,
+        "egress": 6340.32
+      }
+    }
+  },
+  {
+    "scid": "251fabbc-0c95-4f48-a67b-61fa3a90923d",
+    "values": {
+      "latest": {
+        "ingress": 31971.264214046823,
+        "egress": 38295.866220735785
+      },
+      "mean": {
+        "ingress": 32925.66740609665,
+        "egress": 39353.08764945853
+      },
+      "max": {
+        "ingress": 52298.099667774084,
+        "egress": 56554.24
+      }
+    }
+  },
+  {
+    "scid": "25263f65-b258-43a9-81aa-f81b8645cb4a",
+    "values": {
+      "latest": {
+        "ingress": 2014649.3509933774,
+        "egress": 1118716.821192053
+      },
+      "mean": {
+        "ingress": 2054626.579523414,
+        "egress": 1138644.6246622116
+      },
+      "max": {
+        "ingress": 2130117.83639399,
+        "egress": 1242627.8675496688
+      }
+    }
+  },
+  {
+    "scid": "2564019f-85c6-4bf1-af8e-a520a437f6cf",
+    "values": {
+      "latest": {
+        "ingress": 12116036571.04,
+        "egress": 3050347182.5866666
+      },
+      "mean": {
+        "ingress": 7772218256.594257,
+        "egress": 2444006918.832172
+      },
+      "max": {
+        "ingress": 13150709233.311037,
+        "egress": 3939862571.853821
+      }
+    }
+  },
+  {
+    "scid": "25726f75-9112-4125-a46f-9857eec8a21f",
+    "values": {
+      "latest": {
+        "ingress": 4654.026666666667,
+        "egress": 5259.333333333333
+      },
+      "mean": {
+        "ingress": 4732.673849371368,
+        "egress": 5213.763492363356
+      },
+      "max": {
+        "ingress": 4946.2972972972975,
+        "egress": 5951.333333333333
+      }
+    }
+  },
+  {
+    "scid": "2575bee7-a12c-43fa-95c6-f6c557f0f98a",
+    "values": {
+      "latest": {
+        "ingress": 48048.61538461538,
+        "egress": 382802.8628762542
+      },
+      "mean": {
+        "ingress": 49369.33097310219,
+        "egress": 1681632.3523985178
+      },
+      "max": {
+        "ingress": 87707.42857142857,
+        "egress": 96293073.3820598
+      }
+    }
+  },
+  {
+    "scid": "26229f64-bab7-46fc-9f13-7cee0376e361",
+    "values": {
+      "latest": {
+        "ingress": 25.52,
+        "egress": 121.73333333333333
+      },
+      "mean": {
+        "ingress": 23.272372110346243,
+        "egress": 119.7644083619352
+      },
+      "max": {
+        "ingress": 25.52,
+        "egress": 133.24414715719064
+      }
+    }
+  },
+  {
+    "scid": "263f26fc-a1ae-4070-bf40-8691c7adea88",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 926.5066666666667
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 924.1412391954955
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 934.581939799331
+      }
+    }
+  },
+  {
+    "scid": "267508c4-2dfb-423b-aa02-5bb3434d858e",
+    "values": {
+      "latest": {
+        "ingress": 1308583.143812709,
+        "egress": 1333955.0501672241
+      },
+      "mean": {
+        "ingress": 2465497.373239889,
+        "egress": 1066145.4937119076
+      },
+      "max": {
+        "ingress": 33648857.84,
+        "egress": 24452502.96
+      }
+    }
+  },
+  {
+    "scid": "2737a2e5-d153-4323-8a65-5415e75af1c3",
+    "values": {
+      "latest": {
+        "ingress": 39719717.2,
+        "egress": 275526648.3466667
+      },
+      "mean": {
+        "ingress": 51871354.373819545,
+        "egress": 192768000.9360418
+      },
+      "max": {
+        "ingress": 378189770.9767442,
+        "egress": 1011142474.1333333
+      }
+    }
+  },
+  {
+    "scid": "275fc372-db9f-4589-9726-7626343efa46",
+    "values": {
+      "latest": {
+        "ingress": 3831493049.4666667,
+        "egress": 5619583963.493333
+      },
+      "mean": {
+        "ingress": 7242803320.48541,
+        "egress": 3407089717.054262
+      },
+      "max": {
+        "ingress": 33187330988.910892,
+        "egress": 15629156371.496689
+      }
+    }
+  },
+  {
+    "scid": "27662825-c993-4152-8cb2-84314522215f",
+    "values": {
+      "latest": {
+        "ingress": 212.61333333333334,
+        "egress": 1408.0
+      },
+      "mean": {
+        "ingress": 445.77413725418313,
+        "egress": 1414.2364676104064
+      },
+      "max": {
+        "ingress": 61391.30434782609,
+        "egress": 4573.083612040134
+      }
+    }
+  },
+  {
+    "scid": "276ea9a7-bbc0-48e8-bcb1-c7496fcf1afd",
+    "values": {
+      "latest": {
+        "ingress": 194.66666666666666,
+        "egress": 196645592.21333334
+      },
+      "mean": {
+        "ingress": 242.27357534718593,
+        "egress": 394144659.8054887
+      },
+      "max": {
+        "ingress": 2354.96,
+        "egress": 1629608722.4697986
+      }
+    }
+  },
+  {
+    "scid": "282334ba-996c-40aa-b3b5-a74c9fa24269",
+    "values": {
+      "latest": {
+        "ingress": 5598980076.933333,
+        "egress": 6107964883.12
+      },
+      "mean": {
+        "ingress": 7759860903.795652,
+        "egress": 7121943829.673025
+      },
+      "max": {
+        "ingress": 38722291573.73333,
+        "egress": 20734415826.906666
+      }
+    }
+  },
+  {
+    "scid": "28287f3b-485c-4dbc-898f-b9eccd41ee9d",
+    "values": {
+      "latest": {
+        "ingress": 1592169.6744186047,
+        "egress": 71729.64784053156
+      },
+      "mean": {
+        "ingress": 1335026.7007512634,
+        "egress": 103784.12157332244
+      },
+      "max": {
+        "ingress": 7133534.059800665,
+        "egress": 936792.6133333333
+      }
+    }
+  },
+  {
+    "scid": "282e1bce-66dc-4965-b474-f26972b3a457",
+    "values": {
+      "latest": {
+        "ingress": 23045877.786666665,
+        "egress": 9211904.266666668
+      },
+      "mean": {
+        "ingress": 27376856.756794803,
+        "egress": 10879071.912684232
+      },
+      "max": {
+        "ingress": 119112905.81333333,
+        "egress": 42135477.88628762
+      }
+    }
+  },
+  {
+    "scid": "285062ec-f192-4275-8e6d-b83c25ea5d8c",
+    "values": {
+      "latest": {
+        "ingress": 77.76,
+        "egress": 96.05333333333333
+      },
+      "mean": {
+        "ingress": 248.19190350086575,
+        "egress": 94.38657496578905
+      },
+      "max": {
+        "ingress": 48880.08,
+        "egress": 119.33333333333333
+      }
+    }
+  },
+  {
+    "scid": "2886dc7d-1ced-4483-b406-afc81766c717",
+    "values": {
+      "latest": {
+        "ingress": 121613372.94352159,
+        "egress": 34207228.199335545
+      },
+      "mean": {
+        "ingress": 81085541.42448395,
+        "egress": 27978816.2942052
+      },
+      "max": {
+        "ingress": 156547307.02990034,
+        "egress": 124362169.46179402
+      }
+    }
+  },
+  {
+    "scid": "289e8149-9523-4df8-af9f-b3aec269f266",
+    "values": {
+      "latest": {
+        "ingress": 3516508827.173333,
+        "egress": 86056281.78666666
+      },
+      "mean": {
+        "ingress": 2866148833.050944,
+        "egress": 61366463.17691158
+      },
+      "max": {
+        "ingress": 6155876701.92691,
+        "egress": 127348536.21262458
+      }
+    }
+  },
+  {
+    "scid": "28a95768-49ec-4c84-ab68-90981cd7ee65",
+    "values": {
+      "latest": {
+        "ingress": 2740182466.6666665,
+        "egress": 737695995.4933333
+      },
+      "mean": {
+        "ingress": 3173470885.219702,
+        "egress": 1803761904.7291055
+      },
+      "max": {
+        "ingress": 8056066885.10299,
+        "egress": 3039794820.0930233
+      }
+    }
+  },
+  {
+    "scid": "28b5f700-a84f-469c-a340-96023b772ba9",
+    "values": {
+      "latest": {
+        "ingress": 73445.78666666667,
+        "egress": 39743.386666666665
+      },
+      "mean": {
+        "ingress": 102559.2034905356,
+        "egress": 40423.46166982032
+      },
+      "max": {
+        "ingress": 257340.9700996678,
+        "egress": 81765.26245847176
+      }
+    }
+  },
+  {
+    "scid": "2941d1e3-998e-4c32-b31c-3c4f0fa252a8",
+    "values": {
+      "latest": {
+        "ingress": 96723188.96,
+        "egress": 789823036.64
+      },
+      "mean": {
+        "ingress": 269500383.7042896,
+        "egress": 415447875.93306917
+      },
+      "max": {
+        "ingress": 1721910525.129568,
+        "egress": 2360746737.887043
+      }
+    }
+  },
+  {
+    "scid": "29642e9a-68aa-49ce-a061-7c97416c1fb3",
+    "values": {
+      "latest": {
+        "ingress": 341133.04,
+        "egress": 3006002.8
+      },
+      "mean": {
+        "ingress": 8456536.268729461,
+        "egress": 159129.03378977173
+      },
+      "max": {
+        "ingress": 146483426.37333333,
+        "egress": 3006002.8
+      }
+    }
+  },
+  {
+    "scid": "2a262c6d-666d-4c05-9d7b-8cfe7c584a76",
+    "values": {
+      "latest": {
+        "ingress": 7440.87707641196,
+        "egress": 8376.956810631229
+      },
+      "mean": {
+        "ingress": 7805.611285540599,
+        "egress": 8835.417292984293
+      },
+      "max": {
+        "ingress": 11405.953488372093,
+        "egress": 43306.01993355482
+      }
+    }
+  },
+  {
+    "scid": "2abfb54b-7d83-44fb-b948-f192bb4c3edb",
+    "values": {
+      "latest": {
+        "ingress": 1187.12,
+        "egress": 45431.76
+      },
+      "mean": {
+        "ingress": 2463037.6152608204,
+        "egress": 16221085.682470286
+      },
+      "max": {
+        "ingress": 13123436.373333333,
+        "egress": 68016439.30666667
+      }
+    }
+  },
+  {
+    "scid": "2adb96cb-4971-49ba-b7d4-79700e61c1ac",
+    "values": {
+      "latest": {
+        "ingress": 8856.96,
+        "egress": 182.29333333333332
+      },
+      "mean": {
+        "ingress": 121633994.00853236,
+        "egress": 182.1333566732764
+      },
+      "max": {
+        "ingress": 825714003.8120805,
+        "egress": 210.5953177257525
+      }
+    }
+  },
+  {
+    "scid": "2b7a77f9-c233-44b3-ba26-c5d3205dde6f",
+    "values": {
+      "latest": {
+        "ingress": 446701.8278145695,
+        "egress": 581820.1589403973
+      },
+      "mean": {
+        "ingress": 569386.1145925717,
+        "egress": 2775294.8780315886
+      },
+      "max": {
+        "ingress": 3227304.4252491696,
+        "egress": 44757467.906666666
+      }
+    }
+  },
+  {
+    "scid": "2b8232fd-2b7c-4936-85ed-5486357aca05",
+    "values": {
+      "latest": {
+        "ingress": 495.57615894039736,
+        "egress": 1813.4569536423842
+      },
+      "mean": {
+        "ingress": 522.9815206402722,
+        "egress": 1961.9705613329377
+      },
+      "max": {
+        "ingress": 635.28,
+        "egress": 4234.4
+      }
+    }
+  },
+  {
+    "scid": "2b824aa6-1daf-438e-9f6f-6ae3e5a8ffa2",
+    "values": {
+      "latest": {
+        "ingress": 113.6,
+        "egress": 846.3466666666667
+      },
+      "mean": {
+        "ingress": 119.32567539817747,
+        "egress": 811.2335448563487
+      },
+      "max": {
+        "ingress": 263.36,
+        "egress": 1516.24
+      }
+    }
+  },
+  {
+    "scid": "2c102103-9554-4f7e-9c0c-ae066ee731d5",
+    "values": {
+      "latest": {
+        "ingress": 657152466.5953177,
+        "egress": 337971544.2675585
+      },
+      "mean": {
+        "ingress": 768480411.772032,
+        "egress": 194807655.81917998
+      },
+      "max": {
+        "ingress": 1885485483.9069767,
+        "egress": 477087157.5466667
+      }
+    }
+  },
+  {
+    "scid": "2c5d139a-a4a7-4b13-92bf-669bcba6d9d9",
+    "values": {
+      "latest": {
+        "ingress": 14221359.813953489,
+        "egress": 87910455.68106312
+      },
+      "mean": {
+        "ingress": 21320569.733845368,
+        "egress": 81880868.06715137
+      },
+      "max": {
+        "ingress": 76568919.92,
+        "egress": 198267943.09333333
+      }
+    }
+  },
+  {
+    "scid": "2cd18b7b-837d-4272-97ce-404073b07e1e",
+    "values": {
+      "latest": {
+        "ingress": 115.09333333333333,
+        "egress": 1696.3466666666666
+      },
+      "mean": {
+        "ingress": 9888.225696999969,
+        "egress": 12717717.159963496
+      },
+      "max": {
+        "ingress": 1866583.0149750416,
+        "egress": 324193167.44186044
+      }
+    }
+  },
+  {
+    "scid": "2cf06177-97ba-411a-a21d-4263757b0aef",
+    "values": {
+      "latest": {
+        "ingress": 503883210.8704319,
+        "egress": 733367702.3787376
+      },
+      "mean": {
+        "ingress": 364282102.4448174,
+        "egress": 639338975.4872155
+      },
+      "max": {
+        "ingress": 930499630.56,
+        "egress": 1809940206.4533334
+      }
+    }
+  },
+  {
+    "scid": "2d0afbf8-a198-496d-afc4-9bec35b8c056",
+    "values": {
+      "latest": {
+        "ingress": 213283.52,
+        "egress": 160734.56
+      },
+      "mean": {
+        "ingress": 214693.75516405946,
+        "egress": 161765.7301676163
+      },
+      "max": {
+        "ingress": 217944.53333333333,
+        "egress": 166295.06976744186
+      }
+    }
+  },
+  {
+    "scid": "2d108a02-a649-482f-8d80-305623cc6005",
+    "values": {
+      "latest": {
+        "ingress": 9482400.425249169,
+        "egress": 12293764.863787375
+      },
+      "mean": {
+        "ingress": 85645813.13356626,
+        "egress": 13242958.05591166
+      },
+      "max": {
+        "ingress": 882940664.3986712,
+        "egress": 23521498.64
+      }
+    }
+  },
+  {
+    "scid": "2d750c3d-f984-4d89-b015-496bdb1c549e",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 123.78666666666666
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 121.78893184471545
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 134.1456953642384
+      }
+    }
+  },
+  {
+    "scid": "2d78e5dd-a685-453f-88a0-d0f5ec855bd4",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "2de818d3-8e4a-4225-aa6d-9a345a311a4b",
+    "values": {
+      "latest": {
+        "ingress": 1379016142.5866666,
+        "egress": 4943772473.066667
+      },
+      "mean": {
+        "ingress": 1619682055.0629263,
+        "egress": 4263517985.5899563
+      },
+      "max": {
+        "ingress": 2900853793.860465,
+        "egress": 8021302351.761589
+      }
+    }
+  },
+  {
+    "scid": "2e3e058d-5a01-4004-86a0-b0eb31658503",
+    "values": {
+      "latest": {
+        "ingress": 2293.448504983389,
+        "egress": 2015.6279069767443
+      },
+      "mean": {
+        "ingress": 2295.5775790161706,
+        "egress": 5626.458029407812
+      },
+      "max": {
+        "ingress": 2328.8026755852843,
+        "egress": 129788.32
+      }
+    }
+  },
+  {
+    "scid": "2e578d95-5890-40a1-835c-af02c1c2ea4f",
+    "values": {
+      "latest": {
+        "ingress": 261150.29333333333,
+        "egress": 2601.3866666666668
+      },
+      "mean": {
+        "ingress": 18293090.31725702,
+        "egress": 933139.6328821972
+      },
+      "max": {
+        "ingress": 298384933.6533333,
+        "egress": 223375679.5451505
+      }
+    }
+  },
+  {
+    "scid": "2e6f5a62-ad50-4b8d-b77c-9fe2d5590b59",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "2e70c9ab-fb03-4687-ab1a-ca37e6e8abe1",
+    "values": {
+      "latest": {
+        "ingress": 14489279655.44,
+        "egress": 4186607199.173333
+      },
+      "mean": {
+        "ingress": 16243259174.956144,
+        "egress": 6192433997.68478
+      },
+      "max": {
+        "ingress": 59780248561.87687,
+        "egress": 33930430678.08
+      }
+    }
+  },
+  {
+    "scid": "2e735d1b-89fc-488c-965d-cf10ca1d8a5d",
+    "values": {
+      "latest": {
+        "ingress": 213608.66666666666,
+        "egress": 425445968.9866667
+      },
+      "mean": {
+        "ingress": 219532.49067342543,
+        "egress": 432217334.2932566
+      },
+      "max": {
+        "ingress": 1068795.1148086523,
+        "egress": 595241435.68
+      }
+    }
+  },
+  {
+    "scid": "2e89f7e5-46c7-468a-9435-4d10774ee4ca",
+    "values": {
+      "latest": {
+        "ingress": 162.85333333333332,
+        "egress": 718.9333333333333
+      },
+      "mean": {
+        "ingress": 159.33092966710427,
+        "egress": 713.7175909522945
+      },
+      "max": {
+        "ingress": 218.25913621262458,
+        "egress": 741.2093023255813
+      }
+    }
+  },
+  {
+    "scid": "2f01d25c-6c99-41ee-bbb4-a7f7aff83182",
+    "values": {
+      "latest": {
+        "ingress": 1849500806.4,
+        "egress": 4307168782.32
+      },
+      "mean": {
+        "ingress": 5978650917.717207,
+        "egress": 776161135.5027908
+      },
+      "max": {
+        "ingress": 17189298734.906666,
+        "egress": 13115347774.133333
+      }
+    }
+  },
+  {
+    "scid": "2f60bfa7-39d8-4759-81e4-f52f70112c03",
+    "values": {
+      "latest": {
+        "ingress": 5598980521.92,
+        "egress": 6107964787.84
+      },
+      "mean": {
+        "ingress": 7759862380.341274,
+        "egress": 7121944301.867501
+      },
+      "max": {
+        "ingress": 38722292018.72,
+        "egress": 20734416574.933334
+      }
+    }
+  },
+  {
+    "scid": "2f76e589-0179-467c-9a1f-9f8efeedbaab",
+    "values": {
+      "latest": {
+        "ingress": 187.22666666666666,
+        "egress": 30801.066666666666
+      },
+      "mean": {
+        "ingress": 147.36447296192435,
+        "egress": 144905.34873550604
+      },
+      "max": {
+        "ingress": 251.22666666666666,
+        "egress": 4096952.438538206
+      }
+    }
+  },
+  {
+    "scid": "2f9bda15-9f61-4911-8be0-23d10daa100f",
+    "values": {
+      "latest": {
+        "ingress": 240916950.88,
+        "egress": 16435425.253333334
+      },
+      "mean": {
+        "ingress": 78628804.53643496,
+        "egress": 21164851.19934889
+      },
+      "max": {
+        "ingress": 333685145.0933333,
+        "egress": 207632618.75496688
+      }
+    }
+  },
+  {
+    "scid": "2fcd6323-8c7b-4c92-8cfb-eef07e95ef93",
+    "values": {
+      "latest": {
+        "ingress": 10835622341.226667,
+        "egress": 47883981454.21333
+      },
+      "mean": {
+        "ingress": 12155604212.655186,
+        "egress": 50386816771.48987
+      },
+      "max": {
+        "ingress": 30481531320.266666,
+        "egress": 93662318329.06667
+      }
+    }
+  },
+  {
+    "scid": "3010291b-fe82-45c9-8fd2-313b5735eb64",
+    "values": {
+      "latest": {
+        "ingress": 113417114.08,
+        "egress": 693988689.4133333
+      },
+      "mean": {
+        "ingress": 315456212.2625937,
+        "egress": 1325346567.4306376
+      },
+      "max": {
+        "ingress": 678366309.8133334,
+        "egress": 6345813613.493333
+      }
+    }
+  },
+  {
+    "scid": "301ccc83-78c0-4d22-8916-efb503f3224d",
+    "values": {
+      "latest": {
+        "ingress": 1238134650.64,
+        "egress": 12014028021.333334
+      },
+      "mean": {
+        "ingress": 388624060.4585662,
+        "egress": 2069151259.017894
+      },
+      "max": {
+        "ingress": 3000885549.04,
+        "egress": 21815381966.887417
+      }
+    }
+  },
+  {
+    "scid": "30924b0a-4db1-4415-9158-8ffa674c3f78",
+    "values": {
+      "latest": {
+        "ingress": 34189556954.88,
+        "egress": 28476229805.226665
+      },
+      "mean": {
+        "ingress": 27016059080.501488,
+        "egress": 36587471400.04435
+      },
+      "max": {
+        "ingress": 60276739878.4,
+        "egress": 85787429617.54153
+      }
+    }
+  },
+  {
+    "scid": "30edb650-7438-48d1-8659-2d8336c44132",
+    "values": {
+      "latest": {
+        "ingress": 13171094388.133333,
+        "egress": 63170098839.253334
+      },
+      "mean": {
+        "ingress": 19120924938.01011,
+        "egress": 33761630625.65377
+      },
+      "max": {
+        "ingress": 100176053386.24,
+        "egress": 73986956501.62666
+      }
+    }
+  },
+  {
+    "scid": "3119f218-6059-41bf-8eae-cccd22f373cc",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "316d6661-8b13-4ff7-8215-b8dd8dabbb76",
+    "values": {
+      "latest": {
+        "ingress": 9412.38795986622,
+        "egress": 4099.130434782609
+      },
+      "mean": {
+        "ingress": 11412.711376773503,
+        "egress": 4800.113536382525
+      },
+      "max": {
+        "ingress": 109297.32890365449,
+        "egress": 58999.04318936877
+      }
+    }
+  },
+  {
+    "scid": "31876dae-2b17-4cec-8d98-a6b9d67d392b",
+    "values": {
+      "latest": {
+        "ingress": 272.0,
+        "egress": 288.0
+      },
+      "mean": {
+        "ingress": 271.95286890424813,
+        "egress": 287.9500741835731
+      },
+      "max": {
+        "ingress": 273.81333333333333,
+        "egress": 289.92
+      }
+    }
+  },
+  {
+    "scid": "3196835f-d05a-49f1-9a87-e187775f92ad",
+    "values": {
+      "latest": {
+        "ingress": 1540.1471571906354,
+        "egress": 1002.0869565217391
+      },
+      "mean": {
+        "ingress": 1523.785721798492,
+        "egress": 1003.5968883118384
+      },
+      "max": {
+        "ingress": 2011.189368770764,
+        "egress": 2695.9468438538206
+      }
+    }
+  },
+  {
+    "scid": "323d5aa9-2d6f-4e7f-84a2-507ad27ae288",
+    "values": {
+      "latest": {
+        "ingress": 445.98006644518273,
+        "egress": 127.76079734219269
+      },
+      "mean": {
+        "ingress": 534.5712101100723,
+        "egress": 128.90661143154128
+      },
+      "max": {
+        "ingress": 812.993288590604,
+        "egress": 185.83388704318938
+      }
+    }
+  },
+  {
+    "scid": "32499fb3-e4a5-4639-8ae5-a4e0d3729d0d",
+    "values": {
+      "latest": {
+        "ingress": 79.97333333333333,
+        "egress": 199486.24
+      },
+      "mean": {
+        "ingress": 80.68943796174545,
+        "egress": 51522.170574306816
+      },
+      "max": {
+        "ingress": 112.21192052980132,
+        "egress": 1783159.1973244147
+      }
+    }
+  },
+  {
+    "scid": "324e9c37-b810-4081-9883-bceb0105b8d3",
+    "values": {
+      "latest": {
+        "ingress": 12926270679.68,
+        "egress": 15224974854.453333
+      },
+      "mean": {
+        "ingress": 10305384074.881674,
+        "egress": 4721918725.646869
+      },
+      "max": {
+        "ingress": 21233107597.698997,
+        "egress": 17172035760.16
+      }
+    }
+  },
+  {
+    "scid": "3262cab0-6211-4b86-b9b1-0cd084a33884",
+    "values": {
+      "latest": {
+        "ingress": 1544.88,
+        "egress": 146.29333333333332
+      },
+      "mean": {
+        "ingress": 1529.1697593240053,
+        "egress": 139.38383773773117
+      },
+      "max": {
+        "ingress": 1568.0,
+        "egress": 159.46666666666667
+      }
+    }
+  },
+  {
+    "scid": "32a53de5-20c4-4c3b-8364-1b1b3a4b42fd",
+    "values": {
+      "latest": {
+        "ingress": 266327851.13043478,
+        "egress": 1748364785.3645484
+      },
+      "mean": {
+        "ingress": 283581450.8190231,
+        "egress": 1178555738.8677397
+      },
+      "max": {
+        "ingress": 2992223340.9765887,
+        "egress": 2383616651.7458196
+      }
+    }
+  },
+  {
+    "scid": "32d03ddf-0e6b-48ab-8632-ded748411c2c",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 280.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 279.9704689194853
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 282.6843853820598
+      }
+    }
+  },
+  {
+    "scid": "32d3c3bd-3d5e-4534-aaa7-4be36f438019",
+    "values": {
+      "latest": {
+        "ingress": 2843743754.384106,
+        "egress": 127997204.84768212
+      },
+      "mean": {
+        "ingress": 3883503316.1018443,
+        "egress": 123385026.02990097
+      },
+      "max": {
+        "ingress": 8278536427.993344,
+        "egress": 342190435.77408636
+      }
+    }
+  },
+  {
+    "scid": "3345876b-a0fc-43b1-b473-272358988c96",
+    "values": {
+      "latest": {
+        "ingress": 180.8695652173913,
+        "egress": 142891.71906354514
+      },
+      "mean": {
+        "ingress": 2402.0013694231666,
+        "egress": 732176.8653964193
+      },
+      "max": {
+        "ingress": 319529.5733333333,
+        "egress": 13494449.196013289
+      }
+    }
+  },
+  {
+    "scid": "334f91a2-c0f6-4b39-aebd-0493a57a94f0",
+    "values": {
+      "latest": {
+        "ingress": 6186034573.52,
+        "egress": 5746425990.1866665
+      },
+      "mean": {
+        "ingress": 7139342597.775578,
+        "egress": 7760869622.809786
+      },
+      "max": {
+        "ingress": 20702631938.87043,
+        "egress": 39005780934.44816
+      }
+    }
+  },
+  {
+    "scid": "33c03821-badf-4fd5-9f25-dd259de16ae0",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "33dd571b-92a9-45fe-917d-a658b965ad62",
+    "values": {
+      "latest": {
+        "ingress": 1.6,
+        "egress": 1564.5333333333333
+      },
+      "mean": {
+        "ingress": 2.2886085317655005,
+        "egress": 1262.2209095914009
+      },
+      "max": {
+        "ingress": 8.853333333333333,
+        "egress": 1638.9832775919733
+      }
+    }
+  },
+  {
+    "scid": "33e16c3c-3f5b-42d5-a177-8bb9cfbc5353",
+    "values": {
+      "latest": {
+        "ingress": 4664127244.373333,
+        "egress": 1122699222.2666667
+      },
+      "mean": {
+        "ingress": 2236624727.835913,
+        "egress": 652758618.1877863
+      },
+      "max": {
+        "ingress": 6375023237.980066,
+        "egress": 1267270819.68
+      }
+    }
+  },
+  {
+    "scid": "342dd7e8-af4d-49fd-9c10-e826ceb4906c",
+    "values": {
+      "latest": {
+        "ingress": 76.18543046357615,
+        "egress": 93.80132450331126
+      },
+      "mean": {
+        "ingress": 62.036454848762915,
+        "egress": 75.42273372652826
+      },
+      "max": {
+        "ingress": 347.90697674418607,
+        "egress": 329.82666666666665
+      }
+    }
+  },
+  {
+    "scid": "343898ce-fe8c-4a2c-a4f5-2668f9cbad13",
+    "values": {
+      "latest": {
+        "ingress": 310887.92,
+        "egress": 34960.693333333336
+      },
+      "mean": {
+        "ingress": 17284273.289725434,
+        "egress": 7661834.635474212
+      },
+      "max": {
+        "ingress": 383946917.9003322,
+        "egress": 469191602.53333336
+      }
+    }
+  },
+  {
+    "scid": "34923920-01d9-43ce-bacb-819dd85b1f61",
+    "values": {
+      "latest": {
+        "ingress": 40229.900332225916,
+        "egress": 35401.88704318937
+      },
+      "mean": {
+        "ingress": 6520.128040487547,
+        "egress": 2350.5923639510584
+      },
+      "max": {
+        "ingress": 55713.350993377484,
+        "egress": 50768.953642384105
+      }
+    }
+  },
+  {
+    "scid": "35410e69-7d9e-45ac-8455-908c985b69f8",
+    "values": {
+      "latest": {
+        "ingress": 446.24584717607974,
+        "egress": 116.67774086378738
+      },
+      "mean": {
+        "ingress": 535.0547500714247,
+        "egress": 129.8230757550304
+      },
+      "max": {
+        "ingress": 824.5369127516778,
+        "egress": 186.6843853820598
+      }
+    }
+  },
+  {
+    "scid": "35452849-6d0f-40f7-b6a8-dd898b27db5b",
+    "values": {
+      "latest": {
+        "ingress": 165738406.3411371,
+        "egress": 1528856417.3110368
+      },
+      "mean": {
+        "ingress": 368303518.5963339,
+        "egress": 1632385510.8140993
+      },
+      "max": {
+        "ingress": 1745609051.0463576,
+        "egress": 3482048468.7466664
+      }
+    }
+  },
+  {
+    "scid": "356661ef-ba12-4c89-a16f-aa9a448f80b7",
+    "values": {
+      "latest": {
+        "ingress": 55693365.38666666,
+        "egress": 4812521.6
+      },
+      "mean": {
+        "ingress": 271318961.1729675,
+        "egress": 353769790.79583436
+      },
+      "max": {
+        "ingress": 2802961510.613333,
+        "egress": 3417932527.1705685
+      }
+    }
+  },
+  {
+    "scid": "35b1187b-7502-4398-bf1f-807354be33c2",
+    "values": {
+      "latest": {
+        "ingress": 688102037.12,
+        "egress": 7926203734.613334
+      },
+      "mean": {
+        "ingress": 508766699.5817613,
+        "egress": 5601264677.646833
+      },
+      "max": {
+        "ingress": 887722607.2,
+        "egress": 9133228246.906666
+      }
+    }
+  },
+  {
+    "scid": "364148ab-46f3-42cb-8212-a1838b8808f4",
+    "values": {
+      "latest": {
+        "ingress": 7538272179.93311,
+        "egress": 5148500046.314382
+      },
+      "mean": {
+        "ingress": 9922657151.762608,
+        "egress": 3512966296.3488684
+      },
+      "max": {
+        "ingress": 28668106195.774086,
+        "egress": 6159678093.557047
+      }
+    }
+  },
+  {
+    "scid": "366042d8-9e09-4eb2-be7e-9185f699f568",
+    "values": {
+      "latest": {
+        "ingress": 31418.053333333333,
+        "egress": 108172.82666666666
+      },
+      "mean": {
+        "ingress": 34624.18138324901,
+        "egress": 184162.2397029329
+      },
+      "max": {
+        "ingress": 139681.08970099667,
+        "egress": 4352559.04
+      }
+    }
+  },
+  {
+    "scid": "36e11a6a-4a2e-40e8-b602-c8802e96146f",
+    "values": {
+      "latest": {
+        "ingress": 34480.58666666667,
+        "egress": 7283.76
+      },
+      "mean": {
+        "ingress": 52310.378927408325,
+        "egress": 134587.88956916018
+      },
+      "max": {
+        "ingress": 556285.5866666667,
+        "egress": 3538620.414715719
+      }
+    }
+  },
+  {
+    "scid": "36efa0f4-8c60-4649-8c91-8dbf4a2c3aab",
+    "values": {
+      "latest": {
+        "ingress": 457121372.0401338,
+        "egress": 1869915691.9331105
+      },
+      "mean": {
+        "ingress": 387956004.29778475,
+        "egress": 1729585118.1111221
+      },
+      "max": {
+        "ingress": 782551532.4533334,
+        "egress": 2637567839.016611
+      }
+    }
+  },
+  {
+    "scid": "3728ab0f-f357-4ee9-b835-53005f454da4",
+    "values": {
+      "latest": {
+        "ingress": 1373052539.7475083,
+        "egress": 483117420.09302324
+      },
+      "mean": {
+        "ingress": 1621966616.478758,
+        "egress": 565467107.5796155
+      },
+      "max": {
+        "ingress": 4064558643.4747477,
+        "egress": 1267033678.8039868
+      }
+    }
+  },
+  {
+    "scid": "374c7649-9a48-49d6-b2d5-8750ae36099e",
+    "values": {
+      "latest": {
+        "ingress": 4130475.588039867,
+        "egress": 7311258.551495017
+      },
+      "mean": {
+        "ingress": 4455478.137375848,
+        "egress": 82585527.01204115
+      },
+      "max": {
+        "ingress": 10754715.34883721,
+        "egress": 883065026.0996678
+      }
+    }
+  },
+  {
+    "scid": "376d2dc2-2f17-410a-bfa5-8e86556ba986",
+    "values": {
+      "latest": {
+        "ingress": 86803415523.651,
+        "egress": 64249903367.731544
+      },
+      "mean": {
+        "ingress": 95050428216.60565,
+        "egress": 39854194321.893036
+      },
+      "max": {
+        "ingress": 156849272321.701,
+        "egress": 85597348168.29236
+      }
+    }
+  },
+  {
+    "scid": "379c35ec-a121-4ba7-8bb5-eae5879dd02b",
+    "values": {
+      "latest": {
+        "ingress": 111963.94666666667,
+        "egress": 15398668.826666666
+      },
+      "mean": {
+        "ingress": 110926.12162219812,
+        "egress": 14759904.92970561
+      },
+      "max": {
+        "ingress": 121115.04,
+        "egress": 23001433.139072847
+      }
+    }
+  },
+  {
+    "scid": "37ab7293-5eef-4521-bccb-9e71fc8f17d4",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "37e79eb5-256d-4a21-ba32-8cbcdf64288c",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "38019230-9f37-4c26-b7cc-ee9e9a959928",
+    "values": {
+      "latest": {
+        "ingress": 298790.32,
+        "egress": 280140.64
+      },
+      "mean": {
+        "ingress": 185499.62474490074,
+        "egress": 173571.12418351596
+      },
+      "max": {
+        "ingress": 306986.2133333333,
+        "egress": 301724.58666666667
+      }
+    }
+  },
+  {
+    "scid": "38238cff-d62e-4c2a-a2ae-57ff08c7f64a",
+    "values": {
+      "latest": {
+        "ingress": 2095.3333333333335,
+        "egress": 1749.68
+      },
+      "mean": {
+        "ingress": 10753.75497831314,
+        "egress": 1904.0726785412176
+      },
+      "max": {
+        "ingress": 677513.0897009966,
+        "egress": 6170.073089700997
+      }
+    }
+  },
+  {
+    "scid": "38c31549-491d-4f7c-b7a8-93b9a8920e45",
+    "values": {
+      "latest": {
+        "ingress": 11621.163879598662,
+        "egress": 2062234297.123746
+      },
+      "mean": {
+        "ingress": 11677.875207796978,
+        "egress": 2430781910.6147084
+      },
+      "max": {
+        "ingress": 19680.611295681065,
+        "egress": 4563609281.594685
+      }
+    }
+  },
+  {
+    "scid": "3904f984-6286-4de8-9812-9324d22a981c",
+    "values": {
+      "latest": {
+        "ingress": 1915.8933333333334,
+        "egress": 11174639.626666667
+      },
+      "mean": {
+        "ingress": 2852.984220749567,
+        "egress": 9762201.769179143
+      },
+      "max": {
+        "ingress": 89423.73333333334,
+        "egress": 19438039.946666665
+      }
+    }
+  },
+  {
+    "scid": "391b49a2-e3e8-48f2-8650-712782de591f",
+    "values": {
+      "latest": {
+        "ingress": 2506161.066666667,
+        "egress": 666942.64
+      },
+      "mean": {
+        "ingress": 5480081.433827382,
+        "egress": 833245.5213521465
+      },
+      "max": {
+        "ingress": 121937864.10666667,
+        "egress": 5471694.657718121
+      }
+    }
+  },
+  {
+    "scid": "39219259-4c80-4fa0-aefe-d9f2eb9d7d24",
+    "values": {
+      "latest": {
+        "ingress": 409151502.42140466,
+        "egress": 1024811329.6856188
+      },
+      "mean": {
+        "ingress": 330801371.94877833,
+        "egress": 803848735.6287577
+      },
+      "max": {
+        "ingress": 704993313.461794,
+        "egress": 1674878220.5714285
+      }
+    }
+  },
+  {
+    "scid": "3961d120-d24f-4ed8-b381-2f1f8f8e1ffe",
+    "values": {
+      "latest": {
+        "ingress": 344.8476821192053,
+        "egress": 1840.5298013245033
+      },
+      "mean": {
+        "ingress": 344.61818960656973,
+        "egress": 1955.8547391569512
+      },
+      "max": {
+        "ingress": 822.3678929765887,
+        "egress": 2731.264214046823
+      }
+    }
+  },
+  {
+    "scid": "3999f781-b111-4b2f-8a94-a7579a0f7193",
+    "values": {
+      "latest": {
+        "ingress": 8627.973333333333,
+        "egress": 8261.12
+      },
+      "mean": {
+        "ingress": 7196755.333562855,
+        "egress": 8346.932763008435
+      },
+      "max": {
+        "ingress": 982145983.2412646,
+        "egress": 8720.637873754153
+      }
+    }
+  },
+  {
+    "scid": "39ddcbb1-e292-4246-a52c-f70f74902cef",
+    "values": {
+      "latest": {
+        "ingress": 12505.893333333333,
+        "egress": 1255.7866666666666
+      },
+      "mean": {
+        "ingress": 381330.7666610565,
+        "egress": 13331.832333519473
+      },
+      "max": {
+        "ingress": 7232503.413333333,
+        "egress": 220770.37333333332
+      }
+    }
+  },
+  {
+    "scid": "39f75ada-0cc7-4f4c-929d-85c7a4901186",
+    "values": {
+      "latest": {
+        "ingress": 114642.08,
+        "egress": 913.0666666666667
+      },
+      "mean": {
+        "ingress": 876329.2258465169,
+        "egress": 832.2324035402056
+      },
+      "max": {
+        "ingress": 5234107.253333333,
+        "egress": 1469.7142857142858
+      }
+    }
+  },
+  {
+    "scid": "39fdfad7-8e05-49c4-8685-43b0c2aecd2a",
+    "values": {
+      "latest": {
+        "ingress": 2261.6,
+        "egress": 2310.4533333333334
+      },
+      "mean": {
+        "ingress": 2348.338893457809,
+        "egress": 2473.4955765504565
+      },
+      "max": {
+        "ingress": 2514.2702702702704,
+        "egress": 2710.6976744186045
+      }
+    }
+  },
+  {
+    "scid": "3a0003dd-c73b-4e06-926a-62861f7d493a",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "3a65bfbf-21dd-45d2-acad-980c6f61cfee",
+    "values": {
+      "latest": {
+        "ingress": 68.74666666666667,
+        "egress": 419.0133333333333
+      },
+      "mean": {
+        "ingress": 67.38987708965568,
+        "egress": 62943.97040759777
+      },
+      "max": {
+        "ingress": 74.02329450915141,
+        "egress": 11942955.660565725
+      }
+    }
+  },
+  {
+    "scid": "3a795c56-2d2b-430a-94f0-be94d9a6a76e",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 50.86092715231788
+      },
+      "mean": {
+        "ingress": 5.362764910296275,
+        "egress": 41.20194829721297
+      },
+      "max": {
+        "ingress": 970.4758735440931,
+        "egress": 550.4292845257903
+      }
+    }
+  },
+  {
+    "scid": "3acbcb54-d600-4814-846b-7caf21fdb435",
+    "values": {
+      "latest": {
+        "ingress": 2946107.508305648,
+        "egress": 2514101.023255814
+      },
+      "mean": {
+        "ingress": 6250019.238995738,
+        "egress": 3015644.0207616715
+      },
+      "max": {
+        "ingress": 43891533.2358804,
+        "egress": 109367546.45117845
+      }
+    }
+  },
+  {
+    "scid": "3ae1bb23-291f-45c9-8da2-4f36c076973b",
+    "values": {
+      "latest": {
+        "ingress": 1080.2943143812709,
+        "egress": 1407.732441471572
+      },
+      "mean": {
+        "ingress": 1032.55672096318,
+        "egress": 1339.634828281333
+      },
+      "max": {
+        "ingress": 1259.1466666666668,
+        "egress": 1570.7733333333333
+      }
+    }
+  },
+  {
+    "scid": "3af45187-c28b-4e1b-8403-dcd467f9a92d",
+    "values": {
+      "latest": {
+        "ingress": 337460871.5466667,
+        "egress": 1330406568.2666667
+      },
+      "mean": {
+        "ingress": 201289078.71217322,
+        "egress": 897856184.6039959
+      },
+      "max": {
+        "ingress": 753896108.6245847,
+        "egress": 3465398743.4418607
+      }
+    }
+  },
+  {
+    "scid": "3b4cef24-edd8-499b-82f4-71f9c0212321",
+    "values": {
+      "latest": {
+        "ingress": 112999.35785953177,
+        "egress": 35917.72575250836
+      },
+      "mean": {
+        "ingress": 103840.38646084699,
+        "egress": 458910.6387880382
+      },
+      "max": {
+        "ingress": 6544007.202657808,
+        "egress": 7839977.61589404
+      }
+    }
+  },
+  {
+    "scid": "3b63449e-d8ff-4c0c-ac63-6075fbcb356e",
+    "values": {
+      "latest": {
+        "ingress": 2594326875.7066665,
+        "egress": 2184378485.386667
+      },
+      "mean": {
+        "ingress": 1577867785.8121219,
+        "egress": 2795721461.520044
+      },
+      "max": {
+        "ingress": 4184822600.983389,
+        "egress": 11522330279.226667
+      }
+    }
+  },
+  {
+    "scid": "3b687c63-129b-4fac-aede-1c84a9103aad",
+    "values": {
+      "latest": {
+        "ingress": 4486223.468438538,
+        "egress": 5803007.069767442
+      },
+      "mean": {
+        "ingress": 4589511.70253526,
+        "egress": 9975557.58154311
+      },
+      "max": {
+        "ingress": 21140225.986754965,
+        "egress": 113755804.13245033
+      }
+    }
+  },
+  {
+    "scid": "3be74e6d-2bc9-41df-b4aa-3dca92bf90a7",
+    "values": {
+      "latest": {
+        "ingress": 7699157741.12,
+        "egress": 9987614731.146667
+      },
+      "mean": {
+        "ingress": 4230463288.4820275,
+        "egress": 7452423036.208486
+      },
+      "max": {
+        "ingress": 18434918126.933334,
+        "egress": 17985473572.890366
+      }
+    }
+  },
+  {
+    "scid": "3c5bc75f-4bfd-4544-93e1-93697d1b5393",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "3c691b34-5d5c-49eb-8d74-07ef1bc21a37",
+    "values": {
+      "latest": {
+        "ingress": 34786.37333333334,
+        "egress": 160248.4
+      },
+      "mean": {
+        "ingress": 30059.87588828152,
+        "egress": 161519.88386221873
+      },
+      "max": {
+        "ingress": 55104.1872909699,
+        "egress": 295137.0933333333
+      }
+    }
+  },
+  {
+    "scid": "3cd7a22f-5f82-4573-8d52-a9ccfd6613ea",
+    "values": {
+      "latest": {
+        "ingress": 7020941.76,
+        "egress": 4097994.7466666666
+      },
+      "mean": {
+        "ingress": 82361512.03413853,
+        "egress": 4452949.673455877
+      },
+      "max": {
+        "ingress": 877545372.2666667,
+        "egress": 10880297.28
+      }
+    }
+  },
+  {
+    "scid": "3cda8a29-37e0-4259-ad2b-10742ef98987",
+    "values": {
+      "latest": {
+        "ingress": 126.2876254180602,
+        "egress": 18367736156.816055
+      },
+      "mean": {
+        "ingress": 123.19316529766648,
+        "egress": 29498383974.40685
+      },
+      "max": {
+        "ingress": 140.90666666666667,
+        "egress": 68699076378.24749
+      }
+    }
+  },
+  {
+    "scid": "3cf306a4-2eaf-4ae7-8dfa-29fa749010b4",
+    "values": {
+      "latest": {
+        "ingress": 6626263.546666667,
+        "egress": 161981202.77333334
+      },
+      "mean": {
+        "ingress": 131861712.37825178,
+        "egress": 36540208.19613337
+      },
+      "max": {
+        "ingress": 356963650.50666666,
+        "egress": 399322663.627907
+      }
+    }
+  },
+  {
+    "scid": "3cf3aefa-9960-47e0-b8c6-ad9b8e3d1190",
+    "values": {
+      "latest": {
+        "ingress": 769089631.5986623,
+        "egress": 2675085138.488294
+      },
+      "mean": {
+        "ingress": 722623905.2441446,
+        "egress": 1501439286.8979185
+      },
+      "max": {
+        "ingress": 1388215839.8666666,
+        "egress": 3018186492.5866666
+      }
+    }
+  },
+  {
+    "scid": "3d1322b3-bb1a-4d2a-b0c0-069f6f8c3264",
+    "values": {
+      "latest": {
+        "ingress": 851.1627906976744,
+        "egress": 6831106356.491694
+      },
+      "mean": {
+        "ingress": 1058.585395101015,
+        "egress": 2780827926.544596
+      },
+      "max": {
+        "ingress": 3474.7733333333335,
+        "egress": 11863697014.56
+      }
+    }
+  },
+  {
+    "scid": "3d1558ee-e2a4-4ecc-aebf-cd720839816e",
+    "values": {
+      "latest": {
+        "ingress": 17461773353.1505,
+        "egress": 33203835456.749165
+      },
+      "mean": {
+        "ingress": 14577258246.567417,
+        "egress": 34896034160.27306
+      },
+      "max": {
+        "ingress": 86801169584.80267,
+        "egress": 59610432078.234116
+      }
+    }
+  },
+  {
+    "scid": "3d294ddd-c1f7-464b-a68e-496c24185b56",
+    "values": {
+      "latest": {
+        "ingress": 4695967.093333334,
+        "egress": 22601387.30666667
+      },
+      "mean": {
+        "ingress": 21077857.758944776,
+        "egress": 33118381.938510586
+      },
+      "max": {
+        "ingress": 445922545.99335545,
+        "egress": 175049285.28
+      }
+    }
+  },
+  {
+    "scid": "3d67f605-1196-42ea-a968-403953b3b4d7",
+    "values": {
+      "latest": {
+        "ingress": 4979.706666666667,
+        "egress": 2108.7733333333335
+      },
+      "mean": {
+        "ingress": 9217.322795796134,
+        "egress": 2268.5952916557826
+      },
+      "max": {
+        "ingress": 29081.623960066554,
+        "egress": 3122.16
+      }
+    }
+  },
+  {
+    "scid": "3d795236-0bc9-4c0b-9b7e-4c56f50b9826",
+    "values": {
+      "latest": {
+        "ingress": 10374.528428093645,
+        "egress": 8415778385.123746
+      },
+      "mean": {
+        "ingress": 11948.603243100864,
+        "egress": 11236962766.734493
+      },
+      "max": {
+        "ingress": 15499.8940397351,
+        "egress": 36374347132.37334
+      }
+    }
+  },
+  {
+    "scid": "3d9cb1c6-027f-4d95-9a74-0f53d9872bf0",
+    "values": {
+      "latest": {
+        "ingress": 79756593454.93333,
+        "egress": 115071538380.4
+      },
+      "mean": {
+        "ingress": 60088135709.83278,
+        "egress": 106193654287.28462
+      },
+      "max": {
+        "ingress": 134573482707.82608,
+        "egress": 179547388650.0927
+      }
+    }
+  },
+  {
+    "scid": "3e75c7af-7253-4f8d-ac4a-959bff2e8162",
+    "values": {
+      "latest": {
+        "ingress": 52707453837.54667,
+        "egress": 8692449060.773333
+      },
+      "mean": {
+        "ingress": 53393915673.474686,
+        "egress": 10034845184.438162
+      },
+      "max": {
+        "ingress": 98129884675.68,
+        "egress": 27462234123.013332
+      }
+    }
+  },
+  {
+    "scid": "3e82f4ab-f77c-4ea7-98b4-69189ccfd08b",
+    "values": {
+      "latest": {
+        "ingress": 46212785083.50502,
+        "egress": 57570710651.29097
+      },
+      "mean": {
+        "ingress": 44382947052.330185,
+        "egress": 47953140588.361786
+      },
+      "max": {
+        "ingress": 104149416224.21191,
+        "egress": 135058611759.0903
+      }
+    }
+  },
+  {
+    "scid": "3eb5830f-634e-4293-9fc7-55a3dcbb18e4",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "3f1a013b-8d15-41ed-91a3-e852f9529b19",
+    "values": {
+      "latest": {
+        "ingress": 1608106.4983388705,
+        "egress": 3741.501661129568
+      },
+      "mean": {
+        "ingress": 4281778.697420044,
+        "egress": 3721.646459584341
+      },
+      "max": {
+        "ingress": 85742048.7973422,
+        "egress": 11068.8
+      }
+    }
+  },
+  {
+    "scid": "3f1c0443-a1c9-4a6e-baaf-1c5630bd9a3f",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 45.48494983277592
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 42.659166277437464
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 47.73154362416108
+      }
+    }
+  },
+  {
+    "scid": "3f215178-a475-499a-b9c2-e7f422af6f56",
+    "values": {
+      "latest": {
+        "ingress": 262.2133333333333,
+        "egress": 450.53333333333336
+      },
+      "mean": {
+        "ingress": 266.9315066173396,
+        "egress": 28382.779264091314
+      },
+      "max": {
+        "ingress": 281.4834437086093,
+        "egress": 7976130.986666666
+      }
+    }
+  },
+  {
+    "scid": "3f23736f-1a0e-49ed-b650-9e8e40f5668c",
+    "values": {
+      "latest": {
+        "ingress": 18701691.093333334,
+        "egress": 11243882.32
+      },
+      "mean": {
+        "ingress": 49458283.99569474,
+        "egress": 55323178.39894354
+      },
+      "max": {
+        "ingress": 523943714.4533333,
+        "egress": 627859657.6478405
+      }
+    }
+  },
+  {
+    "scid": "3f3093de-461c-4559-8dd2-fe8ea7e7b4ac",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 43876913.64784053
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 42230924.18718808
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 111802035.28
+      }
+    }
+  },
+  {
+    "scid": "3fc038e5-7e9e-4969-bab9-dd92030d8a4c",
+    "values": {
+      "latest": {
+        "ingress": 2376500997.6266665,
+        "egress": 2061915585.44
+      },
+      "mean": {
+        "ingress": 1875530384.0645642,
+        "egress": 1643990183.0331845
+      },
+      "max": {
+        "ingress": 3340180187.9466667,
+        "egress": 2599102451.428571
+      }
+    }
+  },
+  {
+    "scid": "3fe0469d-f339-4859-a9f0-879cd115dd55",
+    "values": {
+      "latest": {
+        "ingress": 2511955.7066666665,
+        "egress": 1706141.3866666667
+      },
+      "mean": {
+        "ingress": 2689870.409619866,
+        "egress": 19559513.63192608
+      },
+      "max": {
+        "ingress": 6717794.053333334,
+        "egress": 413557015.28
+      }
+    }
+  },
+  {
+    "scid": "40573045-0dd0-4623-a68f-36044ba8523c",
+    "values": {
+      "latest": {
+        "ingress": 22455.758389261744,
+        "egress": 406209250.5771812
+      },
+      "mean": {
+        "ingress": 21711.168999110094,
+        "egress": 405383946.52391595
+      },
+      "max": {
+        "ingress": 39496.34782608696,
+        "egress": 582841174.1333333
+      }
+    }
+  },
+  {
+    "scid": "40792b2f-837f-493c-94a9-1a99ad9342ea",
+    "values": {
+      "latest": {
+        "ingress": 7019485625.546667,
+        "egress": 2902210555.653333
+      },
+      "mean": {
+        "ingress": 4933959605.706175,
+        "egress": 2601798697.815268
+      },
+      "max": {
+        "ingress": 8387342326.166113,
+        "egress": 4328573309.538462
+      }
+    }
+  },
+  {
+    "scid": "40bb5a5c-adba-4607-b39c-9d9597d1ab53",
+    "values": {
+      "latest": {
+        "ingress": 7774.431893687708,
+        "egress": 4889.461794019933
+      },
+      "mean": {
+        "ingress": 8621.61845725135,
+        "egress": 10959.219128658933
+      },
+      "max": {
+        "ingress": 13707.52,
+        "egress": 296951.52
+      }
+    }
+  },
+  {
+    "scid": "40d68758-67a3-4aa7-8b9a-308698a0c96f",
+    "values": {
+      "latest": {
+        "ingress": 3916.56,
+        "egress": 1371.8133333333333
+      },
+      "mean": {
+        "ingress": 3912.7277646985212,
+        "egress": 1386.906172891816
+      },
+      "max": {
+        "ingress": 3954.648829431438,
+        "egress": 1519.6
+      }
+    }
+  },
+  {
+    "scid": "40f1ef9e-5fcc-4cfb-b0cc-01a406ab5a0a",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "4118479e-f597-461e-8213-e4213301a0b3",
+    "values": {
+      "latest": {
+        "ingress": 671.3089700996678,
+        "egress": 5061.023255813953
+      },
+      "mean": {
+        "ingress": 681.475852547778,
+        "egress": 5143.447315376046
+      },
+      "max": {
+        "ingress": 887.6533333333333,
+        "egress": 14347.546666666667
+      }
+    }
+  },
+  {
+    "scid": "4131122c-3646-4d48-a141-9fcc09ea3d82",
+    "values": {
+      "latest": {
+        "ingress": 764451332.5182724,
+        "egress": 96835150.00664452
+      },
+      "mean": {
+        "ingress": 532384211.3149291,
+        "egress": 133274272.64707042
+      },
+      "max": {
+        "ingress": 862532538.89701,
+        "egress": 619070728.535117
+      }
+    }
+  },
+  {
+    "scid": "413f5dcd-71f2-4eb8-abd9-2110fe993351",
+    "values": {
+      "latest": {
+        "ingress": 3413.752508361204,
+        "egress": 5951.250836120401
+      },
+      "mean": {
+        "ingress": 5429.651281895548,
+        "egress": 7255.971083464867
+      },
+      "max": {
+        "ingress": 548916.9966777408,
+        "egress": 17577.364548494985
+      }
+    }
+  },
+  {
+    "scid": "41479a30-9611-4916-b26b-e85a5284458c",
+    "values": {
+      "latest": {
+        "ingress": 2428.1866666666665,
+        "egress": 2048.4
+      },
+      "mean": {
+        "ingress": 2506.0485927590944,
+        "egress": 2032.8923626629528
+      },
+      "max": {
+        "ingress": 12841.284280936456,
+        "egress": 2050.0730897009967
+      }
+    }
+  },
+  {
+    "scid": "419195fb-dcce-4588-a5fe-f7e95c69c6f7",
+    "values": {
+      "latest": {
+        "ingress": 2905409.12,
+        "egress": 325281.41333333333
+      },
+      "mean": {
+        "ingress": 3879918.8681552643,
+        "egress": 454180.8527819439
+      },
+      "max": {
+        "ingress": 105871885.33333333,
+        "egress": 15257642.533333333
+      }
+    }
+  },
+  {
+    "scid": "4198f124-51f4-41bc-9759-dca44d793ecc",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 2.870431893687708
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 3.4549533047836443
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 4.363636363636363
+      }
+    }
+  },
+  {
+    "scid": "41d6eb6d-7112-4a7c-a7fc-715040ac6199",
+    "values": {
+      "latest": {
+        "ingress": 820473.52,
+        "egress": 30739.546666666665
+      },
+      "mean": {
+        "ingress": 6359624.490501611,
+        "egress": 51409.079371620704
+      },
+      "max": {
+        "ingress": 180536501.35108152,
+        "egress": 731646.1395348837
+      }
+    }
+  },
+  {
+    "scid": "420a7118-5bcd-4bf8-9f9a-2f5deb5fd3e7",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "422233ff-182c-4e42-9498-a4b305169b89",
+    "values": {
+      "latest": {
+        "ingress": 219.25333333333333,
+        "egress": 189.78666666666666
+      },
+      "mean": {
+        "ingress": 226.55510938944366,
+        "egress": 195.22908390998535
+      },
+      "max": {
+        "ingress": 240.58471760797343,
+        "egress": 212.27906976744185
+      }
+    }
+  },
+  {
+    "scid": "423cf5d9-086a-4edd-90af-3a2c970a5314",
+    "values": {
+      "latest": {
+        "ingress": 190.18666666666667,
+        "egress": 196645592.21333334
+      },
+      "mean": {
+        "ingress": 242.25244352615542,
+        "egress": 394144659.8054887
+      },
+      "max": {
+        "ingress": 2363.92,
+        "egress": 1629608722.4697986
+      }
+    }
+  },
+  {
+    "scid": "427e94ed-8c99-4a0e-aae4-b8e8dca5c2b4",
+    "values": {
+      "latest": {
+        "ingress": 2419.371237458194,
+        "egress": 2130.8628762541807
+      },
+      "mean": {
+        "ingress": 373964.0144169209,
+        "egress": 4595.827807190659
+      },
+      "max": {
+        "ingress": 10363581.634551495,
+        "egress": 94834.32775919733
+      }
+    }
+  },
+  {
+    "scid": "427f1af0-ddd2-4a15-bf80-1edcc8f07057",
+    "values": {
+      "latest": {
+        "ingress": 10871.333333333334,
+        "egress": 3471.8133333333335
+      },
+      "mean": {
+        "ingress": 7452.849657449818,
+        "egress": 3429.199928155186
+      },
+      "max": {
+        "ingress": 25010.746666666666,
+        "egress": 12726.51655629139
+      }
+    }
+  },
+  {
+    "scid": "431944c2-5b39-43b8-ba84-f4140db6252f",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "43367b26-0a2a-4f38-84ad-453522b049a1",
+    "values": {
+      "latest": {
+        "ingress": 58568464.531561464,
+        "egress": 653352705.1428572
+      },
+      "mean": {
+        "ingress": 71618022.17920801,
+        "egress": 640720275.2615521
+      },
+      "max": {
+        "ingress": 196601010.23255813,
+        "egress": 1507193252.8428094
+      }
+    }
+  },
+  {
+    "scid": "4354685f-d1e0-4c87-a92e-e490ab6c6647",
+    "values": {
+      "latest": {
+        "ingress": 915.4551495016611,
+        "egress": 50290091.8538206
+      },
+      "mean": {
+        "ingress": 1161.1950573612664,
+        "egress": 93640638.73365185
+      },
+      "max": {
+        "ingress": 1634.2933333333333,
+        "egress": 147488663.62666667
+      }
+    }
+  },
+  {
+    "scid": "435cab2c-b6cf-4b6e-a33c-ec9a3f9e83b9",
+    "values": {
+      "latest": {
+        "ingress": 1724535.36,
+        "egress": 1471906.7733333334
+      },
+      "mean": {
+        "ingress": 1731875.4743649731,
+        "egress": 1478071.0644025914
+      },
+      "max": {
+        "ingress": 1860182.4584717609,
+        "egress": 1628416.3986710964
+      }
+    }
+  },
+  {
+    "scid": "436002e6-83dc-403a-9b26-3d0618a7595e",
+    "values": {
+      "latest": {
+        "ingress": 46216386525.96655,
+        "egress": 35373870403.42475
+      },
+      "mean": {
+        "ingress": 37039316244.23006,
+        "egress": 43187548634.143654
+      },
+      "max": {
+        "ingress": 99209197393.2226,
+        "egress": 89773472105.17334
+      }
+    }
+  },
+  {
+    "scid": "43b33ee4-e828-42a6-99da-77c2c84d8f5d",
+    "values": {
+      "latest": {
+        "ingress": 423738094.40531564,
+        "egress": 1200797251.6943521
+      },
+      "mean": {
+        "ingress": 616080447.2722579,
+        "egress": 471513363.08133537
+      },
+      "max": {
+        "ingress": 1693248142.24,
+        "egress": 1877754309.9534883
+      }
+    }
+  },
+  {
+    "scid": "43c0d2fd-e899-48a7-90fe-6d9a2d8fe91c",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "43d11dc8-16c5-4132-977a-e957d56de5fd",
+    "values": {
+      "latest": {
+        "ingress": 4181564291.4817276,
+        "egress": 721972195.4019934
+      },
+      "mean": {
+        "ingress": 3770695972.1697903,
+        "egress": 668367056.3531086
+      },
+      "max": {
+        "ingress": 6022824295.733334,
+        "egress": 1229104349.129568
+      }
+    }
+  },
+  {
+    "scid": "43ffe391-ebc6-47c8-bcad-7188b38b05e9",
+    "values": {
+      "latest": {
+        "ingress": 224564.03986710965,
+        "egress": 136944.85049833887
+      },
+      "mean": {
+        "ingress": 231555.13206578654,
+        "egress": 143908.79195100267
+      },
+      "max": {
+        "ingress": 268687.2292358804,
+        "egress": 200740.14617940199
+      }
+    }
+  },
+  {
+    "scid": "4422026b-b5c4-4dde-8ce5-45bbc170b8fa",
+    "values": {
+      "latest": {
+        "ingress": 6169.973333333333,
+        "egress": 25.44
+      },
+      "mean": {
+        "ingress": 5343.6724005882015,
+        "egress": 32.08117257719548
+      },
+      "max": {
+        "ingress": 8707.614617940199,
+        "egress": 52.64
+      }
+    }
+  },
+  {
+    "scid": "442e145d-72c8-46a8-9235-10243125b0cd",
+    "values": {
+      "latest": {
+        "ingress": 9048604.4,
+        "egress": 12159326.853333334
+      },
+      "mean": {
+        "ingress": 6008313.526132409,
+        "egress": 9086595.095417079
+      },
+      "max": {
+        "ingress": 13491451.253333334,
+        "egress": 39327988.8
+      }
+    }
+  },
+  {
+    "scid": "44620c82-68ae-4fc7-992c-7fd1368dba5b",
+    "values": {
+      "latest": {
+        "ingress": 356365.8933333333,
+        "egress": 75239.14666666667
+      },
+      "mean": {
+        "ingress": 292793.55769229884,
+        "egress": 82948.30087009472
+      },
+      "max": {
+        "ingress": 556699.6677740864,
+        "egress": 241903.01003344482
+      }
+    }
+  },
+  {
+    "scid": "44da7eb4-a406-4a2d-81c3-9aed23056a86",
+    "values": {
+      "latest": {
+        "ingress": 101.94666666666667,
+        "egress": 101.84
+      },
+      "mean": {
+        "ingress": 103.891444982263,
+        "egress": 103.89190783504783
+      },
+      "max": {
+        "ingress": 108.75747508305648,
+        "egress": 108.98666666666666
+      }
+    }
+  },
+  {
+    "scid": "4511029e-8a2b-4dba-85fd-81c19a239745",
+    "values": {
+      "latest": {
+        "ingress": 5022.56,
+        "egress": 4459.493333333333
+      },
+      "mean": {
+        "ingress": 305122.28823910194,
+        "egress": 14031.45736306173
+      },
+      "max": {
+        "ingress": 6137735.520798669,
+        "egress": 506131.88685524126
+      }
+    }
+  },
+  {
+    "scid": "4524394e-b166-4b9a-b43e-534663d73aa3",
+    "values": {
+      "latest": {
+        "ingress": 23962.205980066447,
+        "egress": 146781.50166112956
+      },
+      "mean": {
+        "ingress": 24348.545405982717,
+        "egress": 133678.9333241513
+      },
+      "max": {
+        "ingress": 62140.73089700997,
+        "egress": 273718.85714285716
+      }
+    }
+  },
+  {
+    "scid": "452535d6-c624-462c-a6df-632141afaba4",
+    "values": {
+      "latest": {
+        "ingress": 117941746564.70903,
+        "egress": 81123919313.76588
+      },
+      "mean": {
+        "ingress": 107765067103.74841,
+        "egress": 60924784868.89063
+      },
+      "max": {
+        "ingress": 182279160185.62128,
+        "egress": 135121266606.62251
+      }
+    }
+  },
+  {
+    "scid": "457783ac-46db-4652-8548-a4716b496540",
+    "values": {
+      "latest": {
+        "ingress": 3874100.3076923075,
+        "egress": 7577608.18729097
+      },
+      "mean": {
+        "ingress": 7056670.664450466,
+        "egress": 6597849.092316687
+      },
+      "max": {
+        "ingress": 333805022.56,
+        "egress": 18263941.607973423
+      }
+    }
+  },
+  {
+    "scid": "458dc566-c365-428c-aff3-be772e147f88",
+    "values": {
+      "latest": {
+        "ingress": 3417.52,
+        "egress": 3298.8533333333335
+      },
+      "mean": {
+        "ingress": 3332.5814066980793,
+        "egress": 3237.2088969500655
+      },
+      "max": {
+        "ingress": 3903.2266666666665,
+        "egress": 3712.72
+      }
+    }
+  },
+  {
+    "scid": "46284a44-4369-4f04-96f0-6e5f3c9d2c55",
+    "values": {
+      "latest": {
+        "ingress": 20415652050.64,
+        "egress": 12043461638.666666
+      },
+      "mean": {
+        "ingress": 9632791635.881098,
+        "egress": 16682820293.497456
+      },
+      "max": {
+        "ingress": 39406438196.10667,
+        "egress": 74308691095.12292
+      }
+    }
+  },
+  {
+    "scid": "46c8f60b-4d9e-4a13-902c-c8cd3ea1fe7a",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "4755c37d-f858-4cb4-9d34-d877df5e359a",
+    "values": {
+      "latest": {
+        "ingress": 58904.56,
+        "egress": 13260.08
+      },
+      "mean": {
+        "ingress": 59649.74708104554,
+        "egress": 12256.959797477204
+      },
+      "max": {
+        "ingress": 206312.26755852843,
+        "egress": 17282.729096989966
+      }
+    }
+  },
+  {
+    "scid": "475970dd-f379-4b8a-87b9-90d8a0d4669c",
+    "values": {
+      "latest": {
+        "ingress": 9157490693.226667,
+        "egress": 194065472.53333333
+      },
+      "mean": {
+        "ingress": 7105165483.524653,
+        "egress": 701063562.1068064
+      },
+      "max": {
+        "ingress": 46119075729.10483,
+        "egress": 29652934329.185184
+      }
+    }
+  },
+  {
+    "scid": "47852c3f-1835-4d20-b57a-075fbb3da811",
+    "values": {
+      "latest": {
+        "ingress": 5.466666666666667,
+        "egress": 112.32
+      },
+      "mean": {
+        "ingress": 29.662173402705672,
+        "egress": 136.92868307524205
+      },
+      "max": {
+        "ingress": 645.687707641196,
+        "egress": 370.33887043189367
+      }
+    }
+  },
+  {
+    "scid": "47a6fc09-7235-47e3-b49d-ea21cefde2ab",
+    "values": {
+      "latest": {
+        "ingress": 89030.38410596027,
+        "egress": 164065.059602649
+      },
+      "mean": {
+        "ingress": 90613.75377282444,
+        "egress": 164277.14272733757
+      },
+      "max": {
+        "ingress": 98284.29333333333,
+        "egress": 182603.46666666667
+      }
+    }
+  },
+  {
+    "scid": "48b43226-341c-43c9-982b-d07f511541bd",
+    "values": {
+      "latest": {
+        "ingress": 756.3466666666667,
+        "egress": 460.96
+      },
+      "mean": {
+        "ingress": 689.2254694371111,
+        "egress": 467.65245867104943
+      },
+      "max": {
+        "ingress": 1053.9933110367892,
+        "egress": 498.5165562913907
+      }
+    }
+  },
+  {
+    "scid": "48e4f694-bb38-4431-83e5-dc5f2c2346a3",
+    "values": {
+      "latest": {
+        "ingress": 3.6266666666666665,
+        "egress": 1713.28
+      },
+      "mean": {
+        "ingress": 2.28699092168255,
+        "egress": 1386.6503279627273
+      },
+      "max": {
+        "ingress": 8.853333333333333,
+        "egress": 1754.6622296173045
+      }
+    }
+  },
+  {
+    "scid": "49072222-cfac-4efd-92aa-e73035815706",
+    "values": {
+      "latest": {
+        "ingress": 1056889062.0332226,
+        "egress": 5488945038.059801
+      },
+      "mean": {
+        "ingress": 831909019.9358617,
+        "egress": 4163699704.534427
+      },
+      "max": {
+        "ingress": 1573122198.8,
+        "egress": 9500892810.870432
+      }
+    }
+  },
+  {
+    "scid": "49218421-3532-441f-9762-9d7c2d0772dc",
+    "values": {
+      "latest": {
+        "ingress": 19.68,
+        "egress": 6.826666666666667
+      },
+      "mean": {
+        "ingress": 11.24942190725458,
+        "egress": 8.096826816835696
+      },
+      "max": {
+        "ingress": 24.8,
+        "egress": 12.026845637583893
+      }
+    }
+  },
+  {
+    "scid": "4928ff63-df00-43ec-a90c-97fee746e9fc",
+    "values": {
+      "latest": {
+        "ingress": 671430166.1866666,
+        "egress": 75704584.42666666
+      },
+      "mean": {
+        "ingress": 243840117.5592245,
+        "egress": 28398495.25153805
+      },
+      "max": {
+        "ingress": 885080288.2657807,
+        "egress": 106928759.22666667
+      }
+    }
+  },
+  {
+    "scid": "494a706e-d295-4626-8e3b-986d3104d773",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "4952cd4b-c119-434a-a775-8eea4c7553e6",
+    "values": {
+      "latest": {
+        "ingress": 39422028.28093646,
+        "egress": 2934277028.1204014
+      },
+      "mean": {
+        "ingress": 23453078.041138582,
+        "egress": 1898081241.5457876
+      },
+      "max": {
+        "ingress": 64490540.053333335,
+        "egress": 3174238003.7475085
+      }
+    }
+  },
+  {
+    "scid": "49582058-887b-46af-a913-9be8bc6674bc",
+    "values": {
+      "latest": {
+        "ingress": 2659991.1466666665,
+        "egress": 5695192.346666667
+      },
+      "mean": {
+        "ingress": 6295368.531797152,
+        "egress": 8059672.9394457955
+      },
+      "max": {
+        "ingress": 63179856.266666666,
+        "egress": 160712367.04
+      }
+    }
+  },
+  {
+    "scid": "4976dd5b-356a-4a21-b109-0552262620f8",
+    "values": {
+      "latest": {
+        "ingress": 21971.76,
+        "egress": 35332.18666666667
+      },
+      "mean": {
+        "ingress": 26563.187395785106,
+        "egress": 68264.84984416509
+      },
+      "max": {
+        "ingress": 793084.0398671096,
+        "egress": 2293067.9335548175
+      }
+    }
+  },
+  {
+    "scid": "498dcc2a-482b-4c6d-b1f9-d3c0406c97ce",
+    "values": {
+      "latest": {
+        "ingress": 2342346525.52,
+        "egress": 974010823.9466667
+      },
+      "mean": {
+        "ingress": 1635458307.6554735,
+        "egress": 644485646.3367827
+      },
+      "max": {
+        "ingress": 12555353956.32,
+        "egress": 1997811628.88
+      }
+    }
+  },
+  {
+    "scid": "49b7f45f-5da3-48c9-8e23-101b41c1bb68",
+    "values": {
+      "latest": {
+        "ingress": 185.28,
+        "egress": 1557.2533333333333
+      },
+      "mean": {
+        "ingress": 149.1868770111937,
+        "egress": 1072.682755981663
+      },
+      "max": {
+        "ingress": 186.82666666666665,
+        "egress": 2133.85690515807
+      }
+    }
+  },
+  {
+    "scid": "49d06c0b-caf2-48bd-952a-a1f192690888",
+    "values": {
+      "latest": {
+        "ingress": 23855458835.093334,
+        "egress": 11441598318.426666
+      },
+      "mean": {
+        "ingress": 18900444472.312828,
+        "egress": 9912320047.721277
+      },
+      "max": {
+        "ingress": 30151961247.84,
+        "egress": 14705341579.109634
+      }
+    }
+  },
+  {
+    "scid": "49dff6cd-fac0-43c9-949c-1382db927bf5",
+    "values": {
+      "latest": {
+        "ingress": 418371.17333333334,
+        "egress": 30143.04
+      },
+      "mean": {
+        "ingress": 62515.669375808975,
+        "egress": 590034.9125843843
+      },
+      "max": {
+        "ingress": 938309.4485049833,
+        "egress": 19390145.184692178
+      }
+    }
+  },
+  {
+    "scid": "49faeeef-7c99-4043-82ac-c58fc12cb751",
+    "values": {
+      "latest": {
+        "ingress": 652525692.8533334,
+        "egress": 5348.586666666667
+      },
+      "mean": {
+        "ingress": 681498819.5063018,
+        "egress": 144154.16820921522
+      },
+      "max": {
+        "ingress": 4430922188.54485,
+        "egress": 26517551.57475083
+      }
+    }
+  },
+  {
+    "scid": "49fdffe9-2dae-4aa1-96fd-47938a90e6e8",
+    "values": {
+      "latest": {
+        "ingress": 93025.17333333334,
+        "egress": 5756.72
+      },
+      "mean": {
+        "ingress": 13393.92337337766,
+        "egress": 1179850.3671314293
+      },
+      "max": {
+        "ingress": 299245.0316139767,
+        "egress": 18409414.266666666
+      }
+    }
+  },
+  {
+    "scid": "4a4ae342-0a6d-4b26-a2ca-4d2caf9f5301",
+    "values": {
+      "latest": {
+        "ingress": 291915293.8666667,
+        "egress": 438784839.25333333
+      },
+      "mean": {
+        "ingress": 304015435.3842259,
+        "egress": 503393713.84797955
+      },
+      "max": {
+        "ingress": 1291413590.88,
+        "egress": 733441143.0133333
+      }
+    }
+  },
+  {
+    "scid": "4b0a013b-0ace-45c8-8d22-a753cbb9b911",
+    "values": {
+      "latest": {
+        "ingress": 2017.860465116279,
+        "egress": 2018.0996677740864
+      },
+      "mean": {
+        "ingress": 2021.0773105345463,
+        "egress": 2021.7442536400708
+      },
+      "max": {
+        "ingress": 2043.23745819398,
+        "egress": 2043.4782608695652
+      }
+    }
+  },
+  {
+    "scid": "4b3f8013-ae4c-41a6-aafc-d4c8e2370559",
+    "values": {
+      "latest": {
+        "ingress": 734506439.7333333,
+        "egress": 1597322619.44
+      },
+      "mean": {
+        "ingress": 1035211876.2537829,
+        "egress": 1340827150.5700836
+      },
+      "max": {
+        "ingress": 25704496917.861385,
+        "egress": 19913908731.264214
+      }
+    }
+  },
+  {
+    "scid": "4b49ec90-c550-44ba-8f81-93c90466a11d",
+    "values": {
+      "latest": {
+        "ingress": 25064.613333333335,
+        "egress": 29363.093333333334
+      },
+      "mean": {
+        "ingress": 15340.30160961149,
+        "egress": 15699.582068383199
+      },
+      "max": {
+        "ingress": 28360.106666666667,
+        "egress": 32100.906666666666
+      }
+    }
+  },
+  {
+    "scid": "4b775653-bc38-4802-a916-730c46d58ba4",
+    "values": {
+      "latest": {
+        "ingress": 17173.97333333333,
+        "egress": 576826573.7866666
+      },
+      "mean": {
+        "ingress": 15414.587751951774,
+        "egress": 573502665.0688618
+      },
+      "max": {
+        "ingress": 20827.146666666667,
+        "egress": 798499673.4983277
+      }
+    }
+  },
+  {
+    "scid": "4b95fe57-65f3-4704-9659-8aef879ed66e",
+    "values": {
+      "latest": {
+        "ingress": 1208.5333333333333,
+        "egress": 1215.0666666666666
+      },
+      "mean": {
+        "ingress": 1377.4892031897612,
+        "egress": 1379.2132694357958
+      },
+      "max": {
+        "ingress": 1657.28,
+        "egress": 1662.56
+      }
+    }
+  },
+  {
+    "scid": "4bb947cf-76a7-46a7-bd25-badbf401c0be",
+    "values": {
+      "latest": {
+        "ingress": 17667726881.066666,
+        "egress": 4072287458.9866667
+      },
+      "mean": {
+        "ingress": 5751010805.354716,
+        "egress": 1713333334.6699533
+      },
+      "max": {
+        "ingress": 25219448790.437084,
+        "egress": 7587053595.8133335
+      }
+    }
+  },
+  {
+    "scid": "4bdb4f3a-5ee3-4107-a444-067735a35148",
+    "values": {
+      "latest": {
+        "ingress": 63197531016.50498,
+        "egress": 23551345669.52824
+      },
+      "mean": {
+        "ingress": 29382474314.463715,
+        "egress": 27418100674.254524
+      },
+      "max": {
+        "ingress": 88236403265.92642,
+        "egress": 65082156185.0897
+      }
+    }
+  },
+  {
+    "scid": "4c86107a-e6ec-4d6a-869a-19275e40aa68",
+    "values": {
+      "latest": {
+        "ingress": 355.3488372093023,
+        "egress": 339.40199335548175
+      },
+      "mean": {
+        "ingress": 357.3320883377252,
+        "egress": 342.96661381992914
+      },
+      "max": {
+        "ingress": 363.66777408637876,
+        "egress": 517.6
+      }
+    }
+  },
+  {
+    "scid": "4c8a1b3a-3970-4cad-9d23-99d83384d472",
+    "values": {
+      "latest": {
+        "ingress": 2968225724.266667,
+        "egress": 199628940.66666666
+      },
+      "mean": {
+        "ingress": 3721987255.987722,
+        "egress": 652135466.3313879
+      },
+      "max": {
+        "ingress": 11826486282.32,
+        "egress": 20935138789.093334
+      }
+    }
+  },
+  {
+    "scid": "4ce9fda9-fe3c-4e59-b61e-7969f7612158",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "4cfe96b7-aaa1-4ead-b11d-d4b83b3513a7",
+    "values": {
+      "latest": {
+        "ingress": 57531124093.42282,
+        "egress": 46238023549.42282
+      },
+      "mean": {
+        "ingress": 47951174339.21733,
+        "egress": 44381652436.59736
+      },
+      "max": {
+        "ingress": 133844471400.6113,
+        "egress": 104604443884.37334
+      }
+    }
+  },
+  {
+    "scid": "4d08e5f8-3781-4c41-a0cf-3690c854ee09",
+    "values": {
+      "latest": {
+        "ingress": 836092.3178807948,
+        "egress": 679979.1523178808
+      },
+      "mean": {
+        "ingress": 873664.1495833718,
+        "egress": 723430.1882223593
+      },
+      "max": {
+        "ingress": 1067217.3820598007,
+        "egress": 910873.5149501661
+      }
+    }
+  },
+  {
+    "scid": "4d511273-6029-47b2-9156-9eb8c2549a1e",
+    "values": {
+      "latest": {
+        "ingress": 201276246.1395349,
+        "egress": 1411603.6411960132
+      },
+      "mean": {
+        "ingress": 45243357.76944802,
+        "egress": 7826291.968710699
+      },
+      "max": {
+        "ingress": 281277695.73333335,
+        "egress": 199697997.27152318
+      }
+    }
+  },
+  {
+    "scid": "4dd59270-a093-4653-894f-8d40ba062f34",
+    "values": {
+      "latest": {
+        "ingress": 113908806.79598662,
+        "egress": 8273874991.571906
+      },
+      "mean": {
+        "ingress": 98228751.55848688,
+        "egress": 11087343433.965054
+      },
+      "max": {
+        "ingress": 320203450.9767442,
+        "egress": 36033306149.52824
+      }
+    }
+  },
+  {
+    "scid": "4df37c5f-8204-48a9-ac3e-61e22d14802a",
+    "values": {
+      "latest": {
+        "ingress": 1650069.2441471573,
+        "egress": 388442.9431438127
+      },
+      "mean": {
+        "ingress": 411478.2050879715,
+        "egress": 2959830.6409299723
+      },
+      "max": {
+        "ingress": 2390884.575250836,
+        "egress": 54378779.6
+      }
+    }
+  },
+  {
+    "scid": "4e06a01f-5846-4c43-ada1-2ccab8e26253",
+    "values": {
+      "latest": {
+        "ingress": 5680.48160535117,
+        "egress": 101787100.3076923
+      },
+      "mean": {
+        "ingress": 5524.7460293440145,
+        "egress": 169608083.47985804
+      },
+      "max": {
+        "ingress": 9653.714285714286,
+        "egress": 278908090.9066667
+      }
+    }
+  },
+  {
+    "scid": "4e28d59f-ab63-47d8-a854-77e8f4cfffcf",
+    "values": {
+      "latest": {
+        "ingress": 2961.009966777409,
+        "egress": 105037606.08637874
+      },
+      "mean": {
+        "ingress": 3294.1298567731615,
+        "egress": 71952910.76587701
+      },
+      "max": {
+        "ingress": 4632.7733333333335,
+        "egress": 121715998.88
+      }
+    }
+  },
+  {
+    "scid": "4e2e08f4-616f-48ab-9e7f-b94f5dc579fc",
+    "values": {
+      "latest": {
+        "ingress": 273301599.0133333,
+        "egress": 279601626.85333335
+      },
+      "mean": {
+        "ingress": 150295694.72755933,
+        "egress": 140320938.357038
+      },
+      "max": {
+        "ingress": 366133687.947541,
+        "egress": 480112606.9668874
+      }
+    }
+  },
+  {
+    "scid": "4e3e39df-9882-4b0c-abf1-27a14e6c9c76",
+    "values": {
+      "latest": {
+        "ingress": 401142753.12,
+        "egress": 1473192.2933333332
+      },
+      "mean": {
+        "ingress": 352621181.13995373,
+        "egress": 763024.6389114554
+      },
+      "max": {
+        "ingress": 884659906.7109635,
+        "egress": 7358956.026666666
+      }
+    }
+  },
+  {
+    "scid": "4e849a9b-4a32-4c0c-b98b-b62354329bad",
+    "values": {
+      "latest": {
+        "ingress": 693887.6266666667,
+        "egress": 2290296.8
+      },
+      "mean": {
+        "ingress": 858898.97451514,
+        "egress": 2800888.2364753927
+      },
+      "max": {
+        "ingress": 4923822.163061564,
+        "egress": 29422419.76
+      }
+    }
+  },
+  {
+    "scid": "4eadbe20-6069-4885-a3ee-14e630f00e46",
+    "values": {
+      "latest": {
+        "ingress": 1098.1456953642385,
+        "egress": 580.2649006622516
+      },
+      "mean": {
+        "ingress": 1107.025839037325,
+        "egress": 492.0506007763336
+      },
+      "max": {
+        "ingress": 1125.8327759197325,
+        "egress": 654.2562396006656
+      }
+    }
+  },
+  {
+    "scid": "4eb79c4e-640a-4266-a90f-3e52d72bf8d5",
+    "values": {
+      "latest": {
+        "ingress": 2688.5333333333333,
+        "egress": 2431.84
+      },
+      "mean": {
+        "ingress": 2704.468574426979,
+        "egress": 2446.131992818749
+      },
+      "max": {
+        "ingress": 3367.4933333333333,
+        "egress": 2522.675540765391
+      }
+    }
+  },
+  {
+    "scid": "4ee20c3c-69b9-488a-8459-ec69800600eb",
+    "values": {
+      "latest": {
+        "ingress": 813.68,
+        "egress": 582387.76
+      },
+      "mean": {
+        "ingress": 532.1587269610926,
+        "egress": 503605.8082099632
+      },
+      "max": {
+        "ingress": 3263.173333333333,
+        "egress": 4173179.322259136
+      }
+    }
+  },
+  {
+    "scid": "4f096f84-b7f1-49be-bf85-cc5b4f6f03a2",
+    "values": {
+      "latest": {
+        "ingress": 121869.84,
+        "egress": 38542.96
+      },
+      "mean": {
+        "ingress": 153868.33529877145,
+        "egress": 39103.5698081923
+      },
+      "max": {
+        "ingress": 298452.08,
+        "egress": 51712.82392026578
+      }
+    }
+  },
+  {
+    "scid": "4f9a5909-fbfa-465c-b264-f8101f82774d",
+    "values": {
+      "latest": {
+        "ingress": 61176.02657807309,
+        "egress": 22308092116.837208
+      },
+      "mean": {
+        "ingress": 66991.9708998091,
+        "egress": 16756574156.507423
+      },
+      "max": {
+        "ingress": 93949.20805369127,
+        "egress": 46891843588.90667
+      }
+    }
+  },
+  {
+    "scid": "503f0386-24c9-465d-91b2-dd1ca7172654",
+    "values": {
+      "latest": {
+        "ingress": 10034604.373333333,
+        "egress": 171794356.0
+      },
+      "mean": {
+        "ingress": 77990930.2704088,
+        "egress": 283083522.96176803
+      },
+      "max": {
+        "ingress": 1502358446.6262627,
+        "egress": 549524642.2857143
+      }
+    }
+  },
+  {
+    "scid": "5044ca4d-2dec-4fd5-9b9f-cc444b18ee6d",
+    "values": {
+      "latest": {
+        "ingress": 78825487442.77333,
+        "egress": 20743993119.786667
+      },
+      "mean": {
+        "ingress": 71080445731.61298,
+        "egress": 14101175502.532616
+      },
+      "max": {
+        "ingress": 134987751355.10963,
+        "egress": 35405213542.69768
+      }
+    }
+  },
+  {
+    "scid": "5091f195-6143-4b73-8651-6814fb42f77d",
+    "values": {
+      "latest": {
+        "ingress": 305.92,
+        "egress": 4809.786666666667
+      },
+      "mean": {
+        "ingress": 515.1678576587789,
+        "egress": 618520.985073884
+      },
+      "max": {
+        "ingress": 7325.706666666667,
+        "egress": 6790803.653333333
+      }
+    }
+  },
+  {
+    "scid": "50bf3f31-b635-4399-9b10-617b60f4995b",
+    "values": {
+      "latest": {
+        "ingress": 692754.3388704319,
+        "egress": 33660.49169435216
+      },
+      "mean": {
+        "ingress": 6536665.407842919,
+        "egress": 30499.875404488732
+      },
+      "max": {
+        "ingress": 264664633.91362128,
+        "egress": 713517.7066666667
+      }
+    }
+  },
+  {
+    "scid": "51de3c06-8d66-452e-a07c-d224108099bb",
+    "values": {
+      "latest": {
+        "ingress": 5638.781456953642,
+        "egress": 5724.105960264901
+      },
+      "mean": {
+        "ingress": 30694.22463692093,
+        "egress": 1947941.5811491648
+      },
+      "max": {
+        "ingress": 515386.56,
+        "egress": 48718187.23205342
+      }
+    }
+  },
+  {
+    "scid": "51e0759a-e87b-48de-8287-5102cc44715c",
+    "values": {
+      "latest": {
+        "ingress": 682541137.819398,
+        "egress": 342479739.0769231
+      },
+      "mean": {
+        "ingress": 768414020.0536331,
+        "egress": 194796852.60684147
+      },
+      "max": {
+        "ingress": 1883102924.8903654,
+        "egress": 488798390.72
+      }
+    }
+  },
+  {
+    "scid": "520484d0-2bdb-4c3b-a340-cc4dbd0f2e24",
+    "values": {
+      "latest": {
+        "ingress": 238952478.4370861,
+        "egress": 210328086.3576159
+      },
+      "mean": {
+        "ingress": 198845514.57667717,
+        "egress": 177399786.96093586
+      },
+      "max": {
+        "ingress": 6806904619.413333,
+        "egress": 776515950.2192692
+      }
+    }
+  },
+  {
+    "scid": "520b4d86-effe-4f0a-b203-37e8480b2da2",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "52cbff63-5e9e-449c-a1ed-c949a411e48d",
+    "values": {
+      "latest": {
+        "ingress": 2083656569.8933334,
+        "egress": 5318118018.746667
+      },
+      "mean": {
+        "ingress": 2863257716.502111,
+        "egress": 4431195850.755515
+      },
+      "max": {
+        "ingress": 6332303640.158416,
+        "egress": 12216761845.820599
+      }
+    }
+  },
+  {
+    "scid": "52d3dbd0-d095-49a3-b422-f3644a8c4edb",
+    "values": {
+      "latest": {
+        "ingress": 151717.14666666667,
+        "egress": 239903.2
+      },
+      "mean": {
+        "ingress": 155005.9340672416,
+        "egress": 244907.1121824624
+      },
+      "max": {
+        "ingress": 203183.52,
+        "egress": 300150.64
+      }
+    }
+  },
+  {
+    "scid": "52e664c9-4551-4854-9da3-3c0f1309b148",
+    "values": {
+      "latest": {
+        "ingress": 2533369031.8933334,
+        "egress": 1181528355.4133334
+      },
+      "mean": {
+        "ingress": 1941960744.6168892,
+        "egress": 1561162774.5850112
+      },
+      "max": {
+        "ingress": 3533492597.6722407,
+        "egress": 2920461405.786667
+      }
+    }
+  },
+  {
+    "scid": "52e9f1a8-1a5c-46eb-a60b-48812e9be2e0",
+    "values": {
+      "latest": {
+        "ingress": 31.68,
+        "egress": 49898.693333333336
+      },
+      "mean": {
+        "ingress": 5533897.477731682,
+        "egress": 1802596.473488768
+      },
+      "max": {
+        "ingress": 164581948.66666666,
+        "egress": 168643294.27242523
+      }
+    }
+  },
+  {
+    "scid": "52eacb7a-60b9-4203-97bf-677e4cc06f0d",
+    "values": {
+      "latest": {
+        "ingress": 282.4,
+        "egress": 5732.586666666667
+      },
+      "mean": {
+        "ingress": 281.93580980302636,
+        "egress": 5410.510405521383
+      },
+      "max": {
+        "ingress": 284.86378737541526,
+        "egress": 6553.807308970099
+      }
+    }
+  },
+  {
+    "scid": "52f9003c-1b2c-4db7-99f4-124cde623974",
+    "values": {
+      "latest": {
+        "ingress": 929648489.3866667,
+        "egress": 1258131.7066666668
+      },
+      "mean": {
+        "ingress": 2870863584.03089,
+        "egress": 21279585.749263406
+      },
+      "max": {
+        "ingress": 4987901453.146667,
+        "egress": 38380614.64900662
+      }
+    }
+  },
+  {
+    "scid": "5318fb3e-a100-47d2-9bcc-62cd76321c12",
+    "values": {
+      "latest": {
+        "ingress": 17981496445.43144,
+        "egress": 9632552414.822742
+      },
+      "mean": {
+        "ingress": 13775207928.25092,
+        "egress": 13045827415.299503
+      },
+      "max": {
+        "ingress": 29659765714.285713,
+        "egress": 50033961629.66888
+      }
+    }
+  },
+  {
+    "scid": "531c2a7c-d566-41ae-b14e-078b0d1c1af6",
+    "values": {
+      "latest": {
+        "ingress": 645229943.2292359,
+        "egress": 123424149.76744185
+      },
+      "mean": {
+        "ingress": 720378053.4841782,
+        "egress": 92158469.70813198
+      },
+      "max": {
+        "ingress": 1704657326.1866667,
+        "egress": 211688186.21333334
+      }
+    }
+  },
+  {
+    "scid": "534d1155-56fa-41a4-b767-e68448cb4970",
+    "values": {
+      "latest": {
+        "ingress": 46.346666666666664,
+        "egress": 442.61333333333334
+      },
+      "mean": {
+        "ingress": 47.350469453631646,
+        "egress": 343.102030639422
+      },
+      "max": {
+        "ingress": 60.993288590604024,
+        "egress": 465.97333333333336
+      }
+    }
+  },
+  {
+    "scid": "53699a26-68e3-4d8f-9c7a-d7349b0e8ee0",
+    "values": {
+      "latest": {
+        "ingress": 24899476.8,
+        "egress": 25544069.786666665
+      },
+      "mean": {
+        "ingress": 103231597.7141615,
+        "egress": 103858411.4152411
+      },
+      "max": {
+        "ingress": 918589372.64,
+        "egress": 918532115.92
+      }
+    }
+  },
+  {
+    "scid": "5396cbf4-49c3-4f23-aaec-d2f808b22073",
+    "values": {
+      "latest": {
+        "ingress": 1216201320.1333334,
+        "egress": 5432302559.946667
+      },
+      "mean": {
+        "ingress": 900849952.4839683,
+        "egress": 3939677469.0187154
+      },
+      "max": {
+        "ingress": 1597830611.1362126,
+        "egress": 10291020479.76
+      }
+    }
+  },
+  {
+    "scid": "539a5eb6-04b1-4e04-b3e2-399d0c33f858",
+    "values": {
+      "latest": {
+        "ingress": 41115484473.84,
+        "egress": 11844963142.32
+      },
+      "mean": {
+        "ingress": 29337319368.261997,
+        "egress": 9434308596.601627
+      },
+      "max": {
+        "ingress": 47269183833.17333,
+        "egress": 23581668561.06312
+      }
+    }
+  },
+  {
+    "scid": "539fe189-90a4-437f-b047-c76e05d2b736",
+    "values": {
+      "latest": {
+        "ingress": 2974024610.9333334,
+        "egress": 993968439.2266667
+      },
+      "mean": {
+        "ingress": 1347156859.9177234,
+        "egress": 873442532.2014977
+      },
+      "max": {
+        "ingress": 3710362241.036545,
+        "egress": 1760529096.3466666
+      }
+    }
+  },
+  {
+    "scid": "53fb0ca0-c2ca-40e4-a429-215cc613ee75",
+    "values": {
+      "latest": {
+        "ingress": 87889681043.26422,
+        "egress": 41781860513.391304
+      },
+      "mean": {
+        "ingress": 79828414652.67267,
+        "egress": 40354930995.5342
+      },
+      "max": {
+        "ingress": 130181733615.36,
+        "egress": 94101662006.18666
+      }
+    }
+  },
+  {
+    "scid": "5481f2bb-0ac6-46e7-8c6a-38ce8730ab3a",
+    "values": {
+      "latest": {
+        "ingress": 2671.438127090301,
+        "egress": 1741.9397993311036
+      },
+      "mean": {
+        "ingress": 2699.376546670316,
+        "egress": 1747.530143623612
+      },
+      "max": {
+        "ingress": 2935.3804713804716,
+        "egress": 1828.7368421052631
+      }
+    }
+  },
+  {
+    "scid": "5496fbf5-74d0-497c-af42-3b79d94646e1",
+    "values": {
+      "latest": {
+        "ingress": 2133.0933333333332,
+        "egress": 2128.7466666666664
+      },
+      "mean": {
+        "ingress": 2133.001416191731,
+        "egress": 2128.006523369059
+      },
+      "max": {
+        "ingress": 2319.1495016611298,
+        "egress": 2312.9036544850496
+      }
+    }
+  },
+  {
+    "scid": "54d55066-809b-44a9-901d-0b4a96a9b5ab",
+    "values": {
+      "latest": {
+        "ingress": 1098.1456953642385,
+        "egress": 587.7350993377484
+      },
+      "mean": {
+        "ingress": 1107.087377406383,
+        "egress": 499.72479704159906
+      },
+      "max": {
+        "ingress": 1125.8327759197325,
+        "egress": 662.242928452579
+      }
+    }
+  },
+  {
+    "scid": "55093fa1-130d-4b34-831b-40bc17204434",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "5513e63a-8be0-4e31-9e4f-f166d8ba8537",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "554ef71b-a308-4289-9af0-6d54623c6333",
+    "values": {
+      "latest": {
+        "ingress": 3266899.4782608696,
+        "egress": 13767042.91638796
+      },
+      "mean": {
+        "ingress": 8061239.518508257,
+        "egress": 15226366.411714774
+      },
+      "max": {
+        "ingress": 92581401.30666667,
+        "egress": 188252729.06666666
+      }
+    }
+  },
+  {
+    "scid": "557054e0-25c8-4caf-9530-696d09fece29",
+    "values": {
+      "latest": {
+        "ingress": 122.61333333333333,
+        "egress": 27579.093333333334
+      },
+      "mean": {
+        "ingress": 129.68850441137988,
+        "egress": 83147.78093761082
+      },
+      "max": {
+        "ingress": 198.51655629139074,
+        "egress": 2329682.365448505
+      }
+    }
+  },
+  {
+    "scid": "5579c1d1-c3eb-477a-a678-19fccb513243",
+    "values": {
+      "latest": {
+        "ingress": 165786.48,
+        "egress": 5140444.346666667
+      },
+      "mean": {
+        "ingress": 195781.0303002712,
+        "egress": 1158308.5033875476
+      },
+      "max": {
+        "ingress": 997663.0682196339,
+        "egress": 5936303.2
+      }
+    }
+  },
+  {
+    "scid": "5595358e-dce2-421d-ab8a-f8d6971a278e",
+    "values": {
+      "latest": {
+        "ingress": 10835622264.96,
+        "egress": 47883980383.92
+      },
+      "mean": {
+        "ingress": 12155604136.402185,
+        "egress": 50386816787.32974
+      },
+      "max": {
+        "ingress": 30481531244.0,
+        "egress": 93662317925.46666
+      }
+    }
+  },
+  {
+    "scid": "55aa8fb7-4351-4f70-a2bd-940b1623b4d5",
+    "values": {
+      "latest": {
+        "ingress": 7556070654.986667,
+        "egress": 3617003548.88
+      },
+      "mean": {
+        "ingress": 2287545792.0967283,
+        "egress": 4129867546.989406
+      },
+      "max": {
+        "ingress": 11846400219.763159,
+        "egress": 14705506548.494984
+      }
+    }
+  },
+  {
+    "scid": "55c59749-330b-481d-aa7f-b53563370e76",
+    "values": {
+      "latest": {
+        "ingress": 298812.4533333333,
+        "egress": 280269.70666666667
+      },
+      "mean": {
+        "ingress": 185518.76507079668,
+        "egress": 173697.8091948116
+      },
+      "max": {
+        "ingress": 307008.3466666667,
+        "egress": 301853.6533333333
+      }
+    }
+  },
+  {
+    "scid": "567aaef5-21ee-4aa4-a5c3-6d3d9ebc54a1",
+    "values": {
+      "latest": {
+        "ingress": 21721633263.65333,
+        "egress": 6330631878.56
+      },
+      "mean": {
+        "ingress": 15070022533.531258,
+        "egress": 3960805195.8273654
+      },
+      "max": {
+        "ingress": 44282962017.46179,
+        "egress": 9669733209.493334
+      }
+    }
+  },
+  {
+    "scid": "5694963d-3223-4280-b235-04d3d6157fee",
+    "values": {
+      "latest": {
+        "ingress": 40902099598.56,
+        "egress": 11787147912.88
+      },
+      "mean": {
+        "ingress": 29336620694.56219,
+        "egress": 9434125001.292435
+      },
+      "max": {
+        "ingress": 47269186001.706665,
+        "egress": 23581670706.657806
+      }
+    }
+  },
+  {
+    "scid": "57098cef-f809-4f64-8ac1-e65c2e4275d3",
+    "values": {
+      "latest": {
+        "ingress": 3536139675.7190638,
+        "egress": 1051677470.0735786
+      },
+      "mean": {
+        "ingress": 3452844691.229177,
+        "egress": 1589793739.8502867
+      },
+      "max": {
+        "ingress": 10723819960.506666,
+        "egress": 14677580473.860466
+      }
+    }
+  },
+  {
+    "scid": "572a5a34-00d5-473f-8b8b-8ebb9204b63e",
+    "values": {
+      "latest": {
+        "ingress": 11970487332.441471,
+        "egress": 4958259501.324414
+      },
+      "mean": {
+        "ingress": 15903841253.857279,
+        "egress": 5140681934.030736
+      },
+      "max": {
+        "ingress": 41148529744.98013,
+        "egress": 12040890475.546667
+      }
+    }
+  },
+  {
+    "scid": "572fb3c8-7022-42c3-8382-7fd9b0eb3a2d",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "578d3bd6-6fc9-4ef7-a7f4-9b83e6af06d0",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "57dd753d-b3c2-4d80-8b18-7ca96e791ea5",
+    "values": {
+      "latest": {
+        "ingress": 3892572992.213333,
+        "egress": 3625906660.4
+      },
+      "mean": {
+        "ingress": 4652734228.954914,
+        "egress": 5374329691.518543
+      },
+      "max": {
+        "ingress": 30072067662.48505,
+        "egress": 14716911562.89701
+      }
+    }
+  },
+  {
+    "scid": "57e18d43-682b-4b63-b1b8-6fcf0ad7375e",
+    "values": {
+      "latest": {
+        "ingress": 890061958.1066667,
+        "egress": 4869247993.68
+      },
+      "mean": {
+        "ingress": 1105112172.2775838,
+        "egress": 2936880675.0659437
+      },
+      "max": {
+        "ingress": 1710812143.5183947,
+        "egress": 5143503125.049834
+      }
+    }
+  },
+  {
+    "scid": "57e4c151-bcdb-4210-b81e-1f6af1f16346",
+    "values": {
+      "latest": {
+        "ingress": 3.6026490066225167,
+        "egress": 1336.3708609271523
+      },
+      "mean": {
+        "ingress": 4.9947572170494805,
+        "egress": 1251.3396607067925
+      },
+      "max": {
+        "ingress": 17.966777408637874,
+        "egress": 1675.5733333333333
+      }
+    }
+  },
+  {
+    "scid": "58b2496b-451c-4c75-b574-06bd08b4b328",
+    "values": {
+      "latest": {
+        "ingress": 24853700968.186047,
+        "egress": 11803672112.69103
+      },
+      "mean": {
+        "ingress": 21148094122.46682,
+        "egress": 10196985868.535254
+      },
+      "max": {
+        "ingress": 41490017418.45333,
+        "egress": 14767565132.609272
+      }
+    }
+  },
+  {
+    "scid": "58d81517-ef85-4ab2-90bd-b954de0d97be",
+    "values": {
+      "latest": {
+        "ingress": 2780.24,
+        "egress": 4432.293333333333
+      },
+      "mean": {
+        "ingress": 4295.366628798161,
+        "egress": 10640.563301407203
+      },
+      "max": {
+        "ingress": 38514.768718802,
+        "egress": 55481.277870216305
+      }
+    }
+  },
+  {
+    "scid": "58d9da77-a2be-4a06-934a-41eabbc43e70",
+    "values": {
+      "latest": {
+        "ingress": 1991501712.561873,
+        "egress": 903803426.0869565
+      },
+      "mean": {
+        "ingress": 1774069722.5772784,
+        "egress": 1013600451.8009652
+      },
+      "max": {
+        "ingress": 2678962427.0299006,
+        "egress": 2123178769.1162791
+      }
+    }
+  },
+  {
+    "scid": "58f59360-f10e-4eda-99e7-d0b494af1edd",
+    "values": {
+      "latest": {
+        "ingress": 94.59136212624584,
+        "egress": 153128635.88039866
+      },
+      "mean": {
+        "ingress": 236.88660139554204,
+        "egress": 187401793.76004633
+      },
+      "max": {
+        "ingress": 1633.056105610561,
+        "egress": 201897674.90666667
+      }
+    }
+  },
+  {
+    "scid": "59014dbf-426d-42d9-a0ac-7ab6ea953a4e",
+    "values": {
+      "latest": {
+        "ingress": 1148512825.7066667,
+        "egress": 540780523.2533333
+      },
+      "mean": {
+        "ingress": 669542143.2700299,
+        "egress": 1040672413.9545448
+      },
+      "max": {
+        "ingress": 2101937000.1860466,
+        "egress": 10339507426.96
+      }
+    }
+  },
+  {
+    "scid": "5953760f-6295-48a3-bcd7-56f80409092f",
+    "values": {
+      "latest": {
+        "ingress": 154124.28093645486,
+        "egress": 384210.48829431436
+      },
+      "mean": {
+        "ingress": 256644.30359161051,
+        "egress": 3043266.198549933
+      },
+      "max": {
+        "ingress": 6289534.426666667,
+        "egress": 35554108.778877884
+      }
+    }
+  },
+  {
+    "scid": "599f00dd-75e0-4cc4-83b2-1bb00d3dbb7d",
+    "values": {
+      "latest": {
+        "ingress": 23.2,
+        "egress": 127.73333333333333
+      },
+      "mean": {
+        "ingress": 23.276139772744536,
+        "egress": 121.74939323833442
+      },
+      "max": {
+        "ingress": 25.52,
+        "egress": 137.17333333333335
+      }
+    }
+  },
+  {
+    "scid": "59a93e23-ce24-406a-b7f0-0ea2a7562855",
+    "values": {
+      "latest": {
+        "ingress": 6693487.866666666,
+        "egress": 2319.84
+      },
+      "mean": {
+        "ingress": 9777888.560770033,
+        "egress": 2308.706894958208
+      },
+      "max": {
+        "ingress": 124178068.41196014,
+        "egress": 2333.4933333333333
+      }
+    }
+  },
+  {
+    "scid": "59b7c90f-2d1e-4776-97f9-6de08e1dbcb2",
+    "values": {
+      "latest": {
+        "ingress": 7019485658.613334,
+        "egress": 2902210534.826667
+      },
+      "mean": {
+        "ingress": 4933958532.489845,
+        "egress": 2601798149.201889
+      },
+      "max": {
+        "ingress": 8387342359.122924,
+        "egress": 4328573304.989966
+      }
+    }
+  },
+  {
+    "scid": "59c46342-d5fb-4bc3-a884-924d9223c782",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "5a04dbf3-80f0-4e14-b805-c887c47927a1",
+    "values": {
+      "latest": {
+        "ingress": 22373.013333333332,
+        "egress": 37.06666666666667
+      },
+      "mean": {
+        "ingress": 22516.470814536253,
+        "egress": 37.073047617242615
+      },
+      "max": {
+        "ingress": 24013.607973421927,
+        "egress": 40.77333333333333
+      }
+    }
+  },
+  {
+    "scid": "5a0f322f-7364-4428-9c28-dbfae037ee51",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "5a743cd3-fb7d-4ea1-9099-bd83a4897a2f",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "5a7c517a-0581-48bf-92b3-6bca478f5ac6",
+    "values": {
+      "latest": {
+        "ingress": 18809.81939799331,
+        "egress": 35803346.75585284
+      },
+      "mean": {
+        "ingress": 21841.42110819261,
+        "egress": 39835063.50866197
+      },
+      "max": {
+        "ingress": 30905.866666666665,
+        "egress": 250973792.9271523
+      }
+    }
+  },
+  {
+    "scid": "5ad22108-183d-4d49-aa2c-edc15ecf2008",
+    "values": {
+      "latest": {
+        "ingress": 452715719.68,
+        "egress": 4320736113.52
+      },
+      "mean": {
+        "ingress": 309543790.0393775,
+        "egress": 2825561345.278313
+      },
+      "max": {
+        "ingress": 843967154.2550336,
+        "egress": 4989030260.06689
+      }
+    }
+  },
+  {
+    "scid": "5bcf72e9-c2ff-453e-9ab3-449f1dc51123",
+    "values": {
+      "latest": {
+        "ingress": 149.2093023255814,
+        "egress": 146.7641196013289
+      },
+      "mean": {
+        "ingress": 154.47557238366255,
+        "egress": 156.0580009218144
+      },
+      "max": {
+        "ingress": 214.96,
+        "egress": 764.2133333333334
+      }
+    }
+  },
+  {
+    "scid": "5bdb6856-4078-448f-8589-fef8dcc10717",
+    "values": {
+      "latest": {
+        "ingress": 81189692641.28,
+        "egress": 33872326532.266666
+      },
+      "mean": {
+        "ingress": 58209416024.03845,
+        "egress": 44656256878.15153
+      },
+      "max": {
+        "ingress": 159977855988.90668,
+        "egress": 100607750796.8
+      }
+    }
+  },
+  {
+    "scid": "5bdd1b9c-d46e-400d-ae89-19af288cf1e4",
+    "values": {
+      "latest": {
+        "ingress": 298812.4533333333,
+        "egress": 280269.70666666667
+      },
+      "mean": {
+        "ingress": 185518.76507079668,
+        "egress": 173697.8091948116
+      },
+      "max": {
+        "ingress": 307008.3466666667,
+        "egress": 301853.6533333333
+      }
+    }
+  },
+  {
+    "scid": "5c4f5fb4-f916-477a-8e2d-2f4ee2759098",
+    "values": {
+      "latest": {
+        "ingress": 11524579677.893333,
+        "egress": 10953689524.293333
+      },
+      "mean": {
+        "ingress": 9041518168.87839,
+        "egress": 13746314673.264112
+      },
+      "max": {
+        "ingress": 22903370810.675587,
+        "egress": 40360281249.75415
+      }
+    }
+  },
+  {
+    "scid": "5c6b0e1a-6320-48bd-b042-8ee96adbaa55",
+    "values": {
+      "latest": {
+        "ingress": 42611.78666666667,
+        "egress": 8560.933333333332
+      },
+      "mean": {
+        "ingress": 81983.43311265562,
+        "egress": 5056.134660536409
+      },
+      "max": {
+        "ingress": 11275647.760797342,
+        "egress": 51193.514950166114
+      }
+    }
+  },
+  {
+    "scid": "5c6b2d3e-6771-46e1-958e-148cc450b937",
+    "values": {
+      "latest": {
+        "ingress": 5854591939.269103,
+        "egress": 266464449.70099667
+      },
+      "mean": {
+        "ingress": 4860517246.68435,
+        "egress": 326186395.1603686
+      },
+      "max": {
+        "ingress": 10293045469.767443,
+        "egress": 715702701.4046823
+      }
+    }
+  },
+  {
+    "scid": "5ca32973-71d2-4001-a98a-de0d5ce4fc63",
+    "values": {
+      "latest": {
+        "ingress": 5368462.0,
+        "egress": 9970709.013333334
+      },
+      "mean": {
+        "ingress": 5355039.655641738,
+        "egress": 9867539.175329903
+      },
+      "max": {
+        "ingress": 6263260.293333333,
+        "egress": 15602396.03986711
+      }
+    }
+  },
+  {
+    "scid": "5cb191e2-4708-4133-8f4f-a6b9a56305ed",
+    "values": {
+      "latest": {
+        "ingress": 3099443840.693333,
+        "egress": 1263588980.6933334
+      },
+      "mean": {
+        "ingress": 1934102710.547103,
+        "egress": 1420711488.1335955
+      },
+      "max": {
+        "ingress": 3748565148.0533333,
+        "egress": 2735069916.1196012
+      }
+    }
+  },
+  {
+    "scid": "5d29ec85-4dbf-4b58-812c-d6b8b5cea92d",
+    "values": {
+      "latest": {
+        "ingress": 1295.0903010033444,
+        "egress": 2395.0501672240803
+      },
+      "mean": {
+        "ingress": 1168.5921647675584,
+        "egress": 2817.705219690466
+      },
+      "max": {
+        "ingress": 1629.3866666666668,
+        "egress": 78563.52
+      }
+    }
+  },
+  {
+    "scid": "5dcdb879-3ad3-4f22-b310-c746d129f839",
+    "values": {
+      "latest": {
+        "ingress": 3943.3621262458473,
+        "egress": 11533.36877076412
+      },
+      "mean": {
+        "ingress": 4182.1180841215855,
+        "egress": 37123.74034004216
+      },
+      "max": {
+        "ingress": 11259.6,
+        "egress": 2409239.5215946846
+      }
+    }
+  },
+  {
+    "scid": "5e73dd25-c9b5-430e-ac21-cd8c4c09ed13",
+    "values": {
+      "latest": {
+        "ingress": 1848.9333333333334,
+        "egress": 740.5866666666667
+      },
+      "mean": {
+        "ingress": 3169.4460344503295,
+        "egress": 953.5840842331789
+      },
+      "max": {
+        "ingress": 11866.586666666666,
+        "egress": 2613.725752508361
+      }
+    }
+  },
+  {
+    "scid": "5ea103fa-88e1-4f5b-9471-2948d0559b08",
+    "values": {
+      "latest": {
+        "ingress": 54574.71571906355,
+        "egress": 31482.94314381271
+      },
+      "mean": {
+        "ingress": 85468.16245574491,
+        "egress": 40805.26553811477
+      },
+      "max": {
+        "ingress": 5726607.52,
+        "egress": 469379.28
+      }
+    }
+  },
+  {
+    "scid": "5eb259ba-53a9-4e31-91d7-f3136aac9aab",
+    "values": {
+      "latest": {
+        "ingress": 273301599.0133333,
+        "egress": 279600762.05333334
+      },
+      "mean": {
+        "ingress": 150295698.09795082,
+        "egress": 140320060.690825
+      },
+      "max": {
+        "ingress": 366133687.947541,
+        "egress": 480111646.4370861
+      }
+    }
+  },
+  {
+    "scid": "5ec1ebab-ecb8-4969-8652-6c696851a063",
+    "values": {
+      "latest": {
+        "ingress": 1259749821.4933333,
+        "egress": 4037435330.5066667
+      },
+      "mean": {
+        "ingress": 1313884906.5568328,
+        "egress": 3711040885.5986843
+      },
+      "max": {
+        "ingress": 32777798681.51495,
+        "egress": 70823997235.48172
+      }
+    }
+  },
+  {
+    "scid": "5eed4367-d2e9-441e-b825-638b6b41e91a",
+    "values": {
+      "latest": {
+        "ingress": 3285.4133333333334,
+        "egress": 3380.7466666666664
+      },
+      "mean": {
+        "ingress": 3237.2167255307004,
+        "egress": 3332.5821875508586
+      },
+      "max": {
+        "ingress": 3664.0266666666666,
+        "egress": 3851.5733333333333
+      }
+    }
+  },
+  {
+    "scid": "5f30d7c0-b8d2-4f3e-abf1-0a2e1b19f280",
+    "values": {
+      "latest": {
+        "ingress": 1984214494.9866667,
+        "egress": 4776414286.533334
+      },
+      "mean": {
+        "ingress": 4278379549.912426,
+        "egress": 2990158781.806556
+      },
+      "max": {
+        "ingress": 12368395187.74582,
+        "egress": 8198848736.106313
+      }
+    }
+  },
+  {
+    "scid": "5f46fcf2-facf-4544-b989-84dd78515b34",
+    "values": {
+      "latest": {
+        "ingress": 2258.8361204013377,
+        "egress": 1362.9698996655518
+      },
+      "mean": {
+        "ingress": 2235.334980132147,
+        "egress": 1323.6934064579737
+      },
+      "max": {
+        "ingress": 2514.5319865319866,
+        "egress": 1400.9568106312292
+      }
+    }
+  },
+  {
+    "scid": "5f6fe82b-6979-4bf2-a852-b81cb1a104b2",
+    "values": {
+      "latest": {
+        "ingress": 37180.8,
+        "egress": 39601.46666666667
+      },
+      "mean": {
+        "ingress": 35670.7708535304,
+        "egress": 38118.13549569215
+      },
+      "max": {
+        "ingress": 40244.65551839465,
+        "egress": 42835.451505016725
+      }
+    }
+  },
+  {
+    "scid": "5f8e4602-2fb8-4c07-91f0-47fd237874db",
+    "values": {
+      "latest": {
+        "ingress": 929652235.76,
+        "egress": 1262361.6533333333
+      },
+      "mean": {
+        "ingress": 2898482951.7486405,
+        "egress": 21311779.029162046
+      },
+      "max": {
+        "ingress": 4987905211.333333,
+        "egress": 38384810.62251656
+      }
+    }
+  },
+  {
+    "scid": "5fc2b664-0190-490d-8bb8-3c88175d267d",
+    "values": {
+      "latest": {
+        "ingress": 3334.119205298013,
+        "egress": 2465.58940397351
+      },
+      "mean": {
+        "ingress": 3539.933504096496,
+        "egress": 4698.03183553078
+      },
+      "max": {
+        "ingress": 15348.613333333333,
+        "egress": 196150.61333333334
+      }
+    }
+  },
+  {
+    "scid": "5fe0fc36-a470-4f12-83b1-02a2ed2b0042",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "60bfe66b-a9c4-485b-8e23-2411c90179f0",
+    "values": {
+      "latest": {
+        "ingress": 1104099.0666666667,
+        "egress": 13647.893333333333
+      },
+      "mean": {
+        "ingress": 2395641.6315635694,
+        "egress": 41981.94586571878
+      },
+      "max": {
+        "ingress": 15682042.941763727,
+        "egress": 277059.29568106314
+      }
+    }
+  },
+  {
+    "scid": "60cee9da-b952-49dd-a46d-4ae990d2c92e",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "610e0c6b-02f6-479c-8df4-a954f5960975",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 134.91390728476821
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 133.41643535384569
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 147.66777408637873
+      }
+    }
+  },
+  {
+    "scid": "614ff2fd-99a8-4451-a4d9-a6cb6dd21be7",
+    "values": {
+      "latest": {
+        "ingress": 4046356.4949832777,
+        "egress": 95279701.45819397
+      },
+      "mean": {
+        "ingress": 81982823.22386265,
+        "egress": 178763127.64635354
+      },
+      "max": {
+        "ingress": 1149574361.7066667,
+        "egress": 1007103457.3468014
+      }
+    }
+  },
+  {
+    "scid": "618967ae-7cb7-4440-af58-bc5c1c87becf",
+    "values": {
+      "latest": {
+        "ingress": 143702146.74666667,
+        "egress": 57146530.93333333
+      },
+      "mean": {
+        "ingress": 166941031.7609218,
+        "egress": 158085083.96513328
+      },
+      "max": {
+        "ingress": 403261923.82724255,
+        "egress": 663442003.0133333
+      }
+    }
+  },
+  {
+    "scid": "61f45093-67ac-4261-967e-c27721b127d2",
+    "values": {
+      "latest": {
+        "ingress": 855923943.6544851,
+        "egress": 6271289.488372093
+      },
+      "mean": {
+        "ingress": 2946542153.983202,
+        "egress": 59513475.17457625
+      },
+      "max": {
+        "ingress": 5155819596.1866665,
+        "egress": 393580863.7076412
+      }
+    }
+  },
+  {
+    "scid": "62520bbe-774f-4d47-9ed3-c8572be551d5",
+    "values": {
+      "latest": {
+        "ingress": 30887895404.373333,
+        "egress": 12469366150.826666
+      },
+      "mean": {
+        "ingress": 27389321751.685886,
+        "egress": 15301073436.43849
+      },
+      "max": {
+        "ingress": 106773517169.92,
+        "egress": 41422078912.0
+      }
+    }
+  },
+  {
+    "scid": "626d1035-cc8c-4d04-b1f8-d83ee5e2294b",
+    "values": {
+      "latest": {
+        "ingress": 368972718.61333334,
+        "egress": 2440245129.0933332
+      },
+      "mean": {
+        "ingress": 477997346.5470312,
+        "egress": 1667572229.715231
+      },
+      "max": {
+        "ingress": 3125175727.92,
+        "egress": 3148384002.88
+      }
+    }
+  },
+  {
+    "scid": "62bebeba-9d0b-4cd2-b043-eddcba0f45a0",
+    "values": {
+      "latest": {
+        "ingress": 1159453360.425249,
+        "egress": 1239597356.4119601
+      },
+      "mean": {
+        "ingress": 1445854947.460591,
+        "egress": 1333032427.6217334
+      },
+      "max": {
+        "ingress": 2982672133.12,
+        "egress": 2933504262.32
+      }
+    }
+  },
+  {
+    "scid": "62c2786b-5087-475d-b82c-08681a4a7e5f",
+    "values": {
+      "latest": {
+        "ingress": 56187076.48,
+        "egress": 188315366.64
+      },
+      "mean": {
+        "ingress": 101245441.19884378,
+        "egress": 144733616.93374443
+      },
+      "max": {
+        "ingress": 758366498.7906977,
+        "egress": 817710226.8704319
+      }
+    }
+  },
+  {
+    "scid": "62da0b17-5cf1-43c3-b882-2789a00a949f",
+    "values": {
+      "latest": {
+        "ingress": 499417686.0,
+        "egress": 727211177.2533333
+      },
+      "mean": {
+        "ingress": 295530507.9793668,
+        "egress": 353127510.8373196
+      },
+      "max": {
+        "ingress": 839524922.7466667,
+        "egress": 1313549723.4247491
+      }
+    }
+  },
+  {
+    "scid": "62de5e96-007d-49e3-bc14-a6dc4aa4358b",
+    "values": {
+      "latest": {
+        "ingress": 10507.333333333334,
+        "egress": 15827.813333333334
+      },
+      "mean": {
+        "ingress": 1494605.8970756037,
+        "egress": 5136180.852123388
+      },
+      "max": {
+        "ingress": 282424925.37333333,
+        "egress": 639962092.1333333
+      }
+    }
+  },
+  {
+    "scid": "62f0b62d-ab89-48b5-9fb9-e8248b721d81",
+    "values": {
+      "latest": {
+        "ingress": 11006718359.146667,
+        "egress": 10699696847.573334
+      },
+      "mean": {
+        "ingress": 3409542937.2744765,
+        "egress": 6416230975.179794
+      },
+      "max": {
+        "ingress": 15274771597.813334,
+        "egress": 11026825217.493334
+      }
+    }
+  },
+  {
+    "scid": "62f70f04-2a06-498c-81c0-7fa7202a68c9",
+    "values": {
+      "latest": {
+        "ingress": 2925104.6357615893,
+        "egress": 78619.1523178808
+      },
+      "mean": {
+        "ingress": 3639500.5594959245,
+        "egress": 79326.92384299343
+      },
+      "max": {
+        "ingress": 56027414.53820598,
+        "egress": 1475262.0927152317
+      }
+    }
+  },
+  {
+    "scid": "632286fd-79c5-4541-8e87-bca20782af51",
+    "values": {
+      "latest": {
+        "ingress": 5162244477.226666,
+        "egress": 7566783089.466666
+      },
+      "mean": {
+        "ingress": 3512761328.813039,
+        "egress": 9922558858.886976
+      },
+      "max": {
+        "ingress": 6195464958.528428,
+        "egress": 28618245200.372093
+      }
+    }
+  },
+  {
+    "scid": "63614065-ea3f-4734-8607-05873d8ed563",
+    "values": {
+      "latest": {
+        "ingress": 32.8,
+        "egress": 42.4
+      },
+      "mean": {
+        "ingress": 34.47645470559936,
+        "egress": 44.286065817301385
+      },
+      "max": {
+        "ingress": 37.257903494176375,
+        "egress": 56.98502495840266
+      }
+    }
+  },
+  {
+    "scid": "636b6093-7ae5-4d20-803f-eff875a1386f",
+    "values": {
+      "latest": {
+        "ingress": 562.24,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 566.4041011781464,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 602.578073089701,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "638759b1-1bb4-46c0-b47c-2593a90333c3",
+    "values": {
+      "latest": {
+        "ingress": 1036827973.7525084,
+        "egress": 4724092.6822742475
+      },
+      "mean": {
+        "ingress": 379556296.1712779,
+        "egress": 39807991.38895434
+      },
+      "max": {
+        "ingress": 3735050114.9698997,
+        "egress": 409060204.72
+      }
+    }
+  },
+  {
+    "scid": "63b6a84f-c1d2-4c8d-aa9d-9b3eda14e6fd",
+    "values": {
+      "latest": {
+        "ingress": 900469540.4266666,
+        "egress": 1485583765.44
+      },
+      "mean": {
+        "ingress": 625466512.8657373,
+        "egress": 1153008773.8321605
+      },
+      "max": {
+        "ingress": 1295826382.6622074,
+        "egress": 1910476575.6
+      }
+    }
+  },
+  {
+    "scid": "63b83d3b-216a-488f-89e7-d9dfcd2998af",
+    "values": {
+      "latest": {
+        "ingress": 16374518.746666666,
+        "egress": 230046560.98666668
+      },
+      "mean": {
+        "ingress": 21478420.544540524,
+        "egress": 78591845.6300536
+      },
+      "max": {
+        "ingress": 211067965.84717607,
+        "egress": 336959488.4295302
+      }
+    }
+  },
+  {
+    "scid": "63d1ed0b-87f7-4523-827b-b492068584cc",
+    "values": {
+      "latest": {
+        "ingress": 7623863045.733334,
+        "egress": 9575716753.36
+      },
+      "mean": {
+        "ingress": 5737567020.877262,
+        "egress": 8474991352.958718
+      },
+      "max": {
+        "ingress": 10919981417.461794,
+        "egress": 13608539427.84
+      }
+    }
+  },
+  {
+    "scid": "63d24ad4-f10d-40a5-9870-8fb7db3bf9cb",
+    "values": {
+      "latest": {
+        "ingress": 42446.8,
+        "egress": 11551.2
+      },
+      "mean": {
+        "ingress": 62998.494883525476,
+        "egress": 11498.686691709892
+      },
+      "max": {
+        "ingress": 5935849.541528239,
+        "egress": 75512.0
+      }
+    }
+  },
+  {
+    "scid": "63f6f98e-ecd7-481c-a424-3f95bc39e699",
+    "values": {
+      "latest": {
+        "ingress": 15228.970099667775,
+        "egress": 5998.750830564784
+      },
+      "mean": {
+        "ingress": 46976.73891145089,
+        "egress": 6438.348868505365
+      },
+      "max": {
+        "ingress": 224102.66666666666,
+        "egress": 11810.68438538206
+      }
+    }
+  },
+  {
+    "scid": "6406dd0b-2085-4f17-a237-aced710c1c7b",
+    "values": {
+      "latest": {
+        "ingress": 72033667.04,
+        "egress": 63113712.96
+      },
+      "mean": {
+        "ingress": 215090535.35165367,
+        "egress": 119645609.37767792
+      },
+      "max": {
+        "ingress": 351326791.12,
+        "egress": 393996002.4983389
+      }
+    }
+  },
+  {
+    "scid": "6432dc8e-4faa-42a0-84e9-0fe95ce17715",
+    "values": {
+      "latest": {
+        "ingress": 28314863672.50836,
+        "egress": 33411691401.41806
+      },
+      "mean": {
+        "ingress": 36586168928.14697,
+        "egress": 27011983272.390297
+      },
+      "max": {
+        "ingress": 84772491169.70667,
+        "egress": 60324261296.37458
+      }
+    }
+  },
+  {
+    "scid": "6434c00d-099f-4d24-8eb2-5fd9a8514cb1",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 26390137.70099668
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 62868431.75115069
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 118021894.58666667
+      }
+    }
+  },
+  {
+    "scid": "6466ecbd-d00a-4a9b-a0ed-fd14ac07a471",
+    "values": {
+      "latest": {
+        "ingress": 117954598.56,
+        "egress": 149148954.26666668
+      },
+      "mean": {
+        "ingress": 256527626.14139518,
+        "egress": 239720028.2634468
+      },
+      "max": {
+        "ingress": 1323377962.20598,
+        "egress": 1145997693.3421926
+      }
+    }
+  },
+  {
+    "scid": "64cf2767-c24e-4b6e-85c2-b4a4195500fb",
+    "values": {
+      "latest": {
+        "ingress": 102.98666666666666,
+        "egress": 122.64
+      },
+      "mean": {
+        "ingress": 101.77224060604509,
+        "egress": 121.18423750413763
+      },
+      "max": {
+        "ingress": 107.14666666666666,
+        "egress": 126.8
+      }
+    }
+  },
+  {
+    "scid": "64e66cb7-9b93-4c6f-b95f-0a50ea6a4cbc",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "6515de12-fb6a-4e93-bddb-163e19272e8b",
+    "values": {
+      "latest": {
+        "ingress": 138469513.36,
+        "egress": 1982840038.48
+      },
+      "mean": {
+        "ingress": 252840458.83996588,
+        "egress": 2207835410.897569
+      },
+      "max": {
+        "ingress": 2552837003.0830564,
+        "egress": 3271905280.5066667
+      }
+    }
+  },
+  {
+    "scid": "654caf28-87eb-467b-bcfb-5828cca231a7",
+    "values": {
+      "latest": {
+        "ingress": 30598.225165562915,
+        "egress": 43275.5761589404
+      },
+      "mean": {
+        "ingress": 10708.730971887266,
+        "egress": 19363.59157913093
+      },
+      "max": {
+        "ingress": 33351.50666666667,
+        "egress": 44690.88
+      }
+    }
+  },
+  {
+    "scid": "65604160-6d30-4715-b63c-d50e630e2ef8",
+    "values": {
+      "latest": {
+        "ingress": 1151272117.04,
+        "egress": 1724984634.9866667
+      },
+      "mean": {
+        "ingress": 945227089.0392374,
+        "egress": 1350783829.6544816
+      },
+      "max": {
+        "ingress": 1720162397.5652175,
+        "egress": 2566869979.478261
+      }
+    }
+  },
+  {
+    "scid": "65a46d05-0ae9-4f66-a5b4-180a244d6c33",
+    "values": {
+      "latest": {
+        "ingress": 5094553232.48,
+        "egress": 3848697740.24
+      },
+      "mean": {
+        "ingress": 4283691674.639663,
+        "egress": 6065742520.320756
+      },
+      "max": {
+        "ingress": 6568142071.294509,
+        "egress": 11683088667.069767
+      }
+    }
+  },
+  {
+    "scid": "65c07874-01cf-4834-94dd-7fb5c8b97e28",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 2380.2259136212624
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 1693.5857096581865
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 2530.9767441860463
+      }
+    }
+  },
+  {
+    "scid": "65e233d2-3663-40dd-9851-8ed91256c156",
+    "values": {
+      "latest": {
+        "ingress": 1230.180602006689,
+        "egress": 782.1003344481605
+      },
+      "mean": {
+        "ingress": 962.1404418189043,
+        "egress": 636.7717457472023
+      },
+      "max": {
+        "ingress": 1365.2890365448504,
+        "egress": 1313.328903654485
+      }
+    }
+  },
+  {
+    "scid": "65f8c2ad-03c8-4c96-a97d-c2b0e5efb7a3",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "6602bd2e-aaa1-4f9f-bc7b-63ebeff4ffc2",
+    "values": {
+      "latest": {
+        "ingress": 594644.6133333333,
+        "egress": 21796.18666666667
+      },
+      "mean": {
+        "ingress": 52008.24087896648,
+        "egress": 678719.8311007187
+      },
+      "max": {
+        "ingress": 2675714.897009967,
+        "egress": 11906506.053333333
+      }
+    }
+  },
+  {
+    "scid": "6606138a-a403-4cf4-b47b-ff70c3834708",
+    "values": {
+      "latest": {
+        "ingress": 84524.12040133779,
+        "egress": 318125.9130434783
+      },
+      "mean": {
+        "ingress": 95437.80068246844,
+        "egress": 312914.8779159292
+      },
+      "max": {
+        "ingress": 261651.72093023255,
+        "egress": 585922.3388704319
+      }
+    }
+  },
+  {
+    "scid": "666cbcf7-f155-4583-be57-0ac4789d273d",
+    "values": {
+      "latest": {
+        "ingress": 2490.4900662251657,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 1105.0694983238445,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 2517.190635451505,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "66a379b2-008f-4e20-9933-cbb010d56541",
+    "values": {
+      "latest": {
+        "ingress": 347.14666666666665,
+        "egress": 1744.4266666666667
+      },
+      "mean": {
+        "ingress": 373458.7682892456,
+        "egress": 1681.325425521808
+      },
+      "max": {
+        "ingress": 44372109.31561462,
+        "egress": 2185.887043189369
+      }
+    }
+  },
+  {
+    "scid": "66ed9ab4-46c9-4afd-9082-ff3feb7deaa9",
+    "values": {
+      "latest": {
+        "ingress": 7252801636.8,
+        "egress": 1257646288.0533333
+      },
+      "mean": {
+        "ingress": 5395621460.706071,
+        "egress": 977707306.6351826
+      },
+      "max": {
+        "ingress": 10924353913.973333,
+        "egress": 1836929312.48
+      }
+    }
+  },
+  {
+    "scid": "6709781f-360f-4558-8d1c-3223aa068321",
+    "values": {
+      "latest": {
+        "ingress": 55793542.85333333,
+        "egress": 4883016.693333333
+      },
+      "mean": {
+        "ingress": 440940113.28501135,
+        "egress": 370347987.98713946
+      },
+      "max": {
+        "ingress": 2808858460.48,
+        "egress": 3417998948.361204
+      }
+    }
+  },
+  {
+    "scid": "67270457-2412-4ba2-802f-dfdf9a5818e7",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 963.2533333333333
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 933.1096331414608
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 975.866220735786
+      }
+    }
+  },
+  {
+    "scid": "6747f3d7-9fa0-4204-92a0-e2d10876e0f7",
+    "values": {
+      "latest": {
+        "ingress": 12410.293333333333,
+        "egress": 15135.946666666667
+      },
+      "mean": {
+        "ingress": 12381.289014455948,
+        "egress": 15447.65282973169
+      },
+      "max": {
+        "ingress": 12950.29900332226,
+        "egress": 16189.966555183946
+      }
+    }
+  },
+  {
+    "scid": "67820162-4812-4dbb-8feb-62e905a4ea57",
+    "values": {
+      "latest": {
+        "ingress": 208.58471760797343,
+        "egress": 1029.4485049833886
+      },
+      "mean": {
+        "ingress": 207.39475593387314,
+        "egress": 897.0781284919027
+      },
+      "max": {
+        "ingress": 246.59136212624585,
+        "egress": 1634.5514950166114
+      }
+    }
+  },
+  {
+    "scid": "67c5a332-a133-4310-8539-9fbcd2b20c24",
+    "values": {
+      "latest": {
+        "ingress": 308172363.5880399,
+        "egress": 433545190.96345514
+      },
+      "mean": {
+        "ingress": 616399132.6740295,
+        "egress": 425085338.488655
+      },
+      "max": {
+        "ingress": 3410081677.3063974,
+        "egress": 967505309.1543624
+      }
+    }
+  },
+  {
+    "scid": "68095eff-5d56-4894-9046-9f857495ebde",
+    "values": {
+      "latest": {
+        "ingress": 5125425776.96,
+        "egress": 6796657507.76
+      },
+      "mean": {
+        "ingress": 4355377448.0864935,
+        "egress": 7747149308.825156
+      },
+      "max": {
+        "ingress": 60949043235.1141,
+        "egress": 37530782801.73333
+      }
+    }
+  },
+  {
+    "scid": "68585a7d-8363-4e9e-b6ef-9edfff9104a2",
+    "values": {
+      "latest": {
+        "ingress": 1761610285.7866666,
+        "egress": 2551500143.733333
+      },
+      "mean": {
+        "ingress": 1152952901.144682,
+        "egress": 2447824272.9182634
+      },
+      "max": {
+        "ingress": 3151992611.4133334,
+        "egress": 6055871411.827243
+      }
+    }
+  },
+  {
+    "scid": "685fa542-7cb9-4192-8c61-7091e7a65354",
+    "values": {
+      "latest": {
+        "ingress": 37601.17333333333,
+        "egress": 860.4533333333334
+      },
+      "mean": {
+        "ingress": 51867.782594446326,
+        "egress": 811.4736402287131
+      },
+      "max": {
+        "ingress": 1349790.6754966888,
+        "egress": 1475.4133333333334
+      }
+    }
+  },
+  {
+    "scid": "687404e7-26ce-4f6f-9e68-9ed427e980a6",
+    "values": {
+      "latest": {
+        "ingress": 117.93979933110369,
+        "egress": 117.93979933110369
+      },
+      "mean": {
+        "ingress": 118.91502395502475,
+        "egress": 117.76621649093077
+      },
+      "max": {
+        "ingress": 439.1760797342193,
+        "egress": 135.06666666666666
+      }
+    }
+  },
+  {
+    "scid": "687abed5-3662-4d4e-b702-d25373afc721",
+    "values": {
+      "latest": {
+        "ingress": 3801391979.9733334,
+        "egress": 200402983.09333333
+      },
+      "mean": {
+        "ingress": 3873166530.2774873,
+        "egress": 147023404.4034291
+      },
+      "max": {
+        "ingress": 8046267297.413333,
+        "egress": 969528002.9163879
+      }
+    }
+  },
+  {
+    "scid": "689e7d7c-3da1-4699-b8c0-f7b228489d9c",
+    "values": {
+      "latest": {
+        "ingress": 28782.936877076412,
+        "egress": 33081.514950166114
+      },
+      "mean": {
+        "ingress": 35188.34892019437,
+        "egress": 32973.25892364792
+      },
+      "max": {
+        "ingress": 59551.65676567657,
+        "egress": 40738.76411960133
+      }
+    }
+  },
+  {
+    "scid": "68f63a59-1fe7-491a-830d-16669a01da62",
+    "values": {
+      "latest": {
+        "ingress": 15125805678.88,
+        "egress": 24520365083.65333
+      },
+      "mean": {
+        "ingress": 15052387169.991467,
+        "egress": 22844345975.81689
+      },
+      "max": {
+        "ingress": 24612172861.581394,
+        "egress": 59276242716.18667
+      }
+    }
+  },
+  {
+    "scid": "69329700-b6f1-45b7-8138-d6043fb9c9ba",
+    "values": {
+      "latest": {
+        "ingress": 934.6933333333334,
+        "egress": 2231.04
+      },
+      "mean": {
+        "ingress": 924.5778637312843,
+        "egress": 2246.11250236978
+      },
+      "max": {
+        "ingress": 988.16,
+        "egress": 2496.4816053511704
+      }
+    }
+  },
+  {
+    "scid": "695e9958-d51d-43b1-a3d3-51b74495370d",
+    "values": {
+      "latest": {
+        "ingress": 23.2,
+        "egress": 127.01333333333334
+      },
+      "mean": {
+        "ingress": 23.27635431264052,
+        "egress": 124.83977358365094
+      },
+      "max": {
+        "ingress": 25.60535117056856,
+        "egress": 138.56
+      }
+    }
+  },
+  {
+    "scid": "69d29376-ae69-4fc5-8487-c1d39ea81e5f",
+    "values": {
+      "latest": {
+        "ingress": 328.9096989966555,
+        "egress": 30739.745819397995
+      },
+      "mean": {
+        "ingress": 468.2204712836428,
+        "egress": 68368.21925956651
+      },
+      "max": {
+        "ingress": 1424.5333333333333,
+        "egress": 430051.5466666667
+      }
+    }
+  },
+  {
+    "scid": "6a74cb54-4c64-4462-82e0-5f485ba3befc",
+    "values": {
+      "latest": {
+        "ingress": 3748100199.68,
+        "egress": 3986493349.92
+      },
+      "mean": {
+        "ingress": 5488199402.088833,
+        "egress": 4736207426.865771
+      },
+      "max": {
+        "ingress": 14735961256.930233,
+        "egress": 30179871381.475082
+      }
+    }
+  },
+  {
+    "scid": "6af3bf02-391a-493a-80d8-8e5f486fc134",
+    "values": {
+      "latest": {
+        "ingress": 54812.746666666666,
+        "egress": 4364.293333333333
+      },
+      "mean": {
+        "ingress": 190837.06626094787,
+        "egress": 35666.07202256514
+      },
+      "max": {
+        "ingress": 2523523.1733333333,
+        "egress": 3645310.9066666667
+      }
+    }
+  },
+  {
+    "scid": "6b5cde4a-913b-430d-bde1-2b25f2a59ee4",
+    "values": {
+      "latest": {
+        "ingress": 50588921.013333336,
+        "egress": 1880198265.2
+      },
+      "mean": {
+        "ingress": 261302100.3579984,
+        "egress": 966181028.3860571
+      },
+      "max": {
+        "ingress": 2839054577.28,
+        "egress": 3005807831.2
+      }
+    }
+  },
+  {
+    "scid": "6bb16906-92b6-4759-bfdf-dfd8cd13ea69",
+    "values": {
+      "latest": {
+        "ingress": 5799.1466666666665,
+        "egress": 224287.04
+      },
+      "mean": {
+        "ingress": 5772.022960967645,
+        "egress": 14368509.150273101
+      },
+      "max": {
+        "ingress": 6562.431893687708,
+        "egress": 96230386.58666667
+      }
+    }
+  },
+  {
+    "scid": "6bea6346-0268-4340-b8a9-2e0164fe3693",
+    "values": {
+      "latest": {
+        "ingress": 10865720099.02341,
+        "egress": 932371533.3511705
+      },
+      "mean": {
+        "ingress": 10020962791.87855,
+        "egress": 539509909.6796372
+      },
+      "max": {
+        "ingress": 13706645152.026756,
+        "egress": 8144022421.28
+      }
+    }
+  },
+  {
+    "scid": "6c9a1a4a-6c54-4463-8a6c-47165bdca719",
+    "values": {
+      "latest": {
+        "ingress": 142238613.24414715,
+        "egress": 270617597.4849498
+      },
+      "mean": {
+        "ingress": 113724542.43578078,
+        "egress": 152073720.2483915
+      },
+      "max": {
+        "ingress": 299308231.49333334,
+        "egress": 950428984.2923588
+      }
+    }
+  },
+  {
+    "scid": "6ccc732d-8370-4a9f-b105-7eb10c45ae42",
+    "values": {
+      "latest": {
+        "ingress": 18180.613333333335,
+        "egress": 225947.46666666667
+      },
+      "mean": {
+        "ingress": 158016.85162572944,
+        "egress": 306508.6529159707
+      },
+      "max": {
+        "ingress": 7584263.493333333,
+        "egress": 7522557.546666667
+      }
+    }
+  },
+  {
+    "scid": "6d6681ae-2b43-491c-9f38-15fe3b9cfbe8",
+    "values": {
+      "latest": {
+        "ingress": 3244.16,
+        "egress": 20707262.746666666
+      },
+      "mean": {
+        "ingress": 2984.8698053939233,
+        "egress": 1868451.6751342046
+      },
+      "max": {
+        "ingress": 5747.44,
+        "egress": 27659756.48
+      }
+    }
+  },
+  {
+    "scid": "6d852f81-dfd6-4b79-9332-16264e04340d",
+    "values": {
+      "latest": {
+        "ingress": 100.78405315614619,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 114.49429231761502,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 743.9734219269103,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "6d858a1b-6f3e-43d1-9c9a-49247378018c",
+    "values": {
+      "latest": {
+        "ingress": 1.6,
+        "egress": 1685.9466666666667
+      },
+      "mean": {
+        "ingress": 2.7902891363721363,
+        "egress": 1375.6914258621787
+      },
+      "max": {
+        "ingress": 10.418604651162791,
+        "egress": 1742.96
+      }
+    }
+  },
+  {
+    "scid": "6da6ec52-667e-42fa-8261-68cfc344c962",
+    "values": {
+      "latest": {
+        "ingress": 68236613.38666667,
+        "egress": 81891204.32
+      },
+      "mean": {
+        "ingress": 34178459.192781664,
+        "egress": 40890378.03824244
+      },
+      "max": {
+        "ingress": 86275999.84,
+        "egress": 111662595.7458194
+      }
+    }
+  },
+  {
+    "scid": "6db55316-2135-41cb-978d-da6d0fdc0b41",
+    "values": {
+      "latest": {
+        "ingress": 1166524.996677741,
+        "egress": 19504066.65780731
+      },
+      "mean": {
+        "ingress": 3740085.5017266194,
+        "egress": 10933027.816707883
+      },
+      "max": {
+        "ingress": 42058162.515050165,
+        "egress": 134459958.7424749
+      }
+    }
+  },
+  {
+    "scid": "6e145dd9-0a78-4671-87f9-3e88ea444b47",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "6e4cf35f-373b-4439-921f-6414db862910",
+    "values": {
+      "latest": {
+        "ingress": 1734574117.4933333,
+        "egress": 265192694.64
+      },
+      "mean": {
+        "ingress": 1178476111.3513258,
+        "egress": 283526897.76503164
+      },
+      "max": {
+        "ingress": 2381308296.0802674,
+        "egress": 2953677763.561462
+      }
+    }
+  },
+  {
+    "scid": "6e9f65f0-8eda-4584-b1f5-4fc0372a50dc",
+    "values": {
+      "latest": {
+        "ingress": 2502265256.613333,
+        "egress": 162293351.14666668
+      },
+      "mean": {
+        "ingress": 1573134397.1237173,
+        "egress": 86660464.65150999
+      },
+      "max": {
+        "ingress": 2502265256.613333,
+        "egress": 180222225.5946844
+      }
+    }
+  },
+  {
+    "scid": "6f08b236-07c9-423b-9a9b-eb3177d4306c",
+    "values": {
+      "latest": {
+        "ingress": 509051.92,
+        "egress": 6165723.84
+      },
+      "mean": {
+        "ingress": 544402.9389454438,
+        "egress": 1891639.3884266566
+      },
+      "max": {
+        "ingress": 1329037.1247920133,
+        "egress": 6933162.773333333
+      }
+    }
+  },
+  {
+    "scid": "6f0ff73d-dec6-4953-b0ea-6f51e4fb9659",
+    "values": {
+      "latest": {
+        "ingress": 359131.80066445185,
+        "egress": 256173.28903654485
+      },
+      "mean": {
+        "ingress": 390674.4153680558,
+        "egress": 294312.23546534905
+      },
+      "max": {
+        "ingress": 525674.7023411371,
+        "egress": 422896.0797342193
+      }
+    }
+  },
+  {
+    "scid": "6fa906a9-70c7-4dce-aa67-87d62a544885",
+    "values": {
+      "latest": {
+        "ingress": 19572.757475083057,
+        "egress": 16331977.80730897
+      },
+      "mean": {
+        "ingress": 20537.491990596278,
+        "egress": 15645663.488015959
+      },
+      "max": {
+        "ingress": 31623.97333333333,
+        "egress": 24320029.907284766
+      }
+    }
+  },
+  {
+    "scid": "6faf5e62-7a01-4895-b6e6-80b9875dc35e",
+    "values": {
+      "latest": {
+        "ingress": 12116036571.04,
+        "egress": 3050347191.9733334
+      },
+      "mean": {
+        "ingress": 7772218710.904174,
+        "egress": 2444007075.5987315
+      },
+      "max": {
+        "ingress": 13150709233.311037,
+        "egress": 3939862631.627907
+      }
+    }
+  },
+  {
+    "scid": "6fb81e8f-326f-4e21-93a4-bf20e6173572",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "6fcea088-b97d-481e-a88f-901cbcc88a33",
+    "values": {
+      "latest": {
+        "ingress": 227139.68,
+        "egress": 170558.96
+      },
+      "mean": {
+        "ingress": 228008.24831061807,
+        "egress": 171202.15547855152
+      },
+      "max": {
+        "ingress": 231770.45544554456,
+        "egress": 174891.49333333335
+      }
+    }
+  },
+  {
+    "scid": "6fd3e24b-1563-43d0-b929-7d13bada800d",
+    "values": {
+      "latest": {
+        "ingress": 85.01333333333334,
+        "egress": 1932.6666666666667
+      },
+      "mean": {
+        "ingress": 52.76124705197537,
+        "egress": 1237.8227372477493
+      },
+      "max": {
+        "ingress": 94.24,
+        "egress": 2156.8
+      }
+    }
+  },
+  {
+    "scid": "703b22e7-650c-4faf-870d-a2dbfc8ac7ba",
+    "values": {
+      "latest": {
+        "ingress": 51630.06622516556,
+        "egress": 29118.066225165563
+      },
+      "mean": {
+        "ingress": 37951.24193394145,
+        "egress": 26347.31034887584
+      },
+      "max": {
+        "ingress": 55487.813953488374,
+        "egress": 32808.8
+      }
+    }
+  },
+  {
+    "scid": "7043c23f-9b5e-40e5-901b-f2d1dc86e92a",
+    "values": {
+      "latest": {
+        "ingress": 406731956.64,
+        "egress": 4336088364.266666
+      },
+      "mean": {
+        "ingress": 902681420.5646927,
+        "egress": 4055640239.5290885
+      },
+      "max": {
+        "ingress": 4533167985.063123,
+        "egress": 14722518013.966555
+      }
+    }
+  },
+  {
+    "scid": "70f0b140-7251-4f96-a1f9-a09d80188074",
+    "values": {
+      "latest": {
+        "ingress": 75.01986754966887,
+        "egress": 92.23841059602648
+      },
+      "mean": {
+        "ingress": 77.596546419918,
+        "egress": 94.30612027279857
+      },
+      "max": {
+        "ingress": 90.45333333333333,
+        "egress": 125.6
+      }
+    }
+  },
+  {
+    "scid": "7123cd23-2ba5-4435-b925-a18747a02814",
+    "values": {
+      "latest": {
+        "ingress": 87983489382.9103,
+        "egress": 75223960817.54153
+      },
+      "mean": {
+        "ingress": 86944570662.34926,
+        "egress": 70146855983.25887
+      },
+      "max": {
+        "ingress": 178945280704.64215,
+        "egress": 133525588270.7774
+      }
+    }
+  },
+  {
+    "scid": "7184a87b-7085-47a1-94c2-3167fe29e79b",
+    "values": {
+      "latest": {
+        "ingress": 43286331.0564784,
+        "egress": 33728502.35215947
+      },
+      "mean": {
+        "ingress": 49167027.4460598,
+        "egress": 42468020.84674556
+      },
+      "max": {
+        "ingress": 164397422.4053156,
+        "egress": 504685456.48
+      }
+    }
+  },
+  {
+    "scid": "71dce15d-317c-4308-99c2-844a42f0c03e",
+    "values": {
+      "latest": {
+        "ingress": 43622.32,
+        "egress": 5387900.026666666
+      },
+      "mean": {
+        "ingress": 42516.85225963583,
+        "egress": 6886666.755821167
+      },
+      "max": {
+        "ingress": 64116.86378737541,
+        "egress": 102490022.29333334
+      }
+    }
+  },
+  {
+    "scid": "720815cb-ce30-4b4e-9818-208222110af9",
+    "values": {
+      "latest": {
+        "ingress": 5804.16,
+        "egress": 8329238552.64
+      },
+      "mean": {
+        "ingress": 6877.662085131531,
+        "egress": 7895334551.306077
+      },
+      "max": {
+        "ingress": 14712.05315614618,
+        "egress": 16622092716.60606
+      }
+    }
+  },
+  {
+    "scid": "720dfded-cc6b-4e48-a329-f9e3c74f840c",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "72773e5b-763d-4f3f-8e60-4575b36f087a",
+    "values": {
+      "latest": {
+        "ingress": 615.92,
+        "egress": 1074.0266666666666
+      },
+      "mean": {
+        "ingress": 587.0359484231345,
+        "egress": 1006.9245172256567
+      },
+      "max": {
+        "ingress": 760.0,
+        "egress": 1297.8133333333333
+      }
+    }
+  },
+  {
+    "scid": "72952176-9420-446b-8894-b079d5dc74ff",
+    "values": {
+      "latest": {
+        "ingress": 2058.1672240802677,
+        "egress": 3493.3244147157193
+      },
+      "mean": {
+        "ingress": 2828.185659264079,
+        "egress": 3722.107824918882
+      },
+      "max": {
+        "ingress": 39872.87707641196,
+        "egress": 12783.253333333334
+      }
+    }
+  },
+  {
+    "scid": "72a1f92b-2bee-442f-901f-f81453ff37fc",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "72c6493f-90b6-4619-946f-e59b46d869e8",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "72e24bdb-782b-4fb0-a15d-33d0b1a6011c",
+    "values": {
+      "latest": {
+        "ingress": 1707.3177257525083,
+        "egress": 723.2642140468228
+      },
+      "mean": {
+        "ingress": 80963.59656741556,
+        "egress": 1787.6679908150156
+      },
+      "max": {
+        "ingress": 16362862.24,
+        "egress": 221278.34666666668
+      }
+    }
+  },
+  {
+    "scid": "731660e9-1e8b-4b0e-84fb-889015fb1020",
+    "values": {
+      "latest": {
+        "ingress": 3006.4266666666667,
+        "egress": 1126.1066666666666
+      },
+      "mean": {
+        "ingress": 2853.656464937767,
+        "egress": 1093.37881916097
+      },
+      "max": {
+        "ingress": 3530.578073089701,
+        "egress": 1163.5083056478406
+      }
+    }
+  },
+  {
+    "scid": "7335cfb2-1b8d-4b70-a35b-9bbd2f3bfc02",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "737bd449-f9f5-49bf-9368-45a5e85623cd",
+    "values": {
+      "latest": {
+        "ingress": 5070284994.293333,
+        "egress": 11654120159.973333
+      },
+      "mean": {
+        "ingress": 3792611088.937392,
+        "egress": 10446444754.498566
+      },
+      "max": {
+        "ingress": 34828051737.355484,
+        "egress": 79147340349.42192
+      }
+    }
+  },
+  {
+    "scid": "738bfc76-896a-491b-a4fd-f76dab21920d",
+    "values": {
+      "latest": {
+        "ingress": 201.86666666666667,
+        "egress": 256.93333333333334
+      },
+      "mean": {
+        "ingress": 205.32414981337476,
+        "egress": 257.4691421217808
+      },
+      "max": {
+        "ingress": 211.96013289036546,
+        "egress": 264.3478260869565
+      }
+    }
+  },
+  {
+    "scid": "739c70df-82c4-4216-9a50-5390c0db8575",
+    "values": {
+      "latest": {
+        "ingress": 203822.83056478406,
+        "egress": 105471.7607973422
+      },
+      "mean": {
+        "ingress": 190661.68224137637,
+        "egress": 5226270.197957535
+      },
+      "max": {
+        "ingress": 1384556.6777408638,
+        "egress": 231368884.09302327
+      }
+    }
+  },
+  {
+    "scid": "74016d70-cf1f-496a-ac93-cd1feb2df4f1",
+    "values": {
+      "latest": {
+        "ingress": 3075712.72,
+        "egress": 31365476.906666666
+      },
+      "mean": {
+        "ingress": 5200491.209241193,
+        "egress": 25528112.392376803
+      },
+      "max": {
+        "ingress": 35070778.39202658,
+        "egress": 117564508.24
+      }
+    }
+  },
+  {
+    "scid": "74366bdf-758d-43e7-b872-bbd58ef08ac8",
+    "values": {
+      "latest": {
+        "ingress": 3504283827.44,
+        "egress": 85804176.82666667
+      },
+      "mean": {
+        "ingress": 2866148973.839102,
+        "egress": 61366467.73253858
+      },
+      "max": {
+        "ingress": 6155876701.92691,
+        "egress": 127348536.21262458
+      }
+    }
+  },
+  {
+    "scid": "749085e3-6229-4e49-8d0c-3a3c3e872765",
+    "values": {
+      "latest": {
+        "ingress": 898.8704318936877,
+        "egress": 124.54485049833887
+      },
+      "mean": {
+        "ingress": 750.6910314915061,
+        "egress": 124.35553576620309
+      },
+      "max": {
+        "ingress": 921.1960132890365,
+        "egress": 170.96989966555185
+      }
+    }
+  },
+  {
+    "scid": "74f08b13-cef5-404f-9e9d-d20a0ae93159",
+    "values": {
+      "latest": {
+        "ingress": 680.08,
+        "egress": 48425.706666666665
+      },
+      "mean": {
+        "ingress": 677.2597906223498,
+        "egress": 87045.8481819223
+      },
+      "max": {
+        "ingress": 738.5514950166113,
+        "egress": 1743543.7591973245
+      }
+    }
+  },
+  {
+    "scid": "7548ce69-f9c1-4f23-81c7-ee465eb3997c",
+    "values": {
+      "latest": {
+        "ingress": 1709748133.76,
+        "egress": 181043972.45333335
+      },
+      "mean": {
+        "ingress": 1205442408.196288,
+        "egress": 141751384.02869853
+      },
+      "max": {
+        "ingress": 2154177972.8,
+        "egress": 1186891421.7333333
+      }
+    }
+  },
+  {
+    "scid": "7564273b-1cd7-4903-827a-221a9ad786cf",
+    "values": {
+      "latest": {
+        "ingress": 1594.4,
+        "egress": 3411.733333333333
+      },
+      "mean": {
+        "ingress": 11918.083734271682,
+        "egress": 3549.651380298051
+      },
+      "max": {
+        "ingress": 380855.0166112957,
+        "egress": 7936.986666666667
+      }
+    }
+  },
+  {
+    "scid": "757a54ac-3f3f-45da-ac14-1382d6763b1e",
+    "values": {
+      "latest": {
+        "ingress": 6547539.893333334,
+        "egress": 1140.6933333333334
+      },
+      "mean": {
+        "ingress": 60550724.19069982,
+        "egress": 1035.8046479405807
+      },
+      "max": {
+        "ingress": 475263527.25827813,
+        "egress": 1286.0066445182724
+      }
+    }
+  },
+  {
+    "scid": "758b1445-4391-4bff-813a-6938f2b97c95",
+    "values": {
+      "latest": {
+        "ingress": 12641.509933774834,
+        "egress": 186441.08609271524
+      },
+      "mean": {
+        "ingress": 11937.667074161982,
+        "egress": 4746122.665178166
+      },
+      "max": {
+        "ingress": 14115.16,
+        "egress": 72166345.56810631
+      }
+    }
+  },
+  {
+    "scid": "7621166e-7d9b-4218-a0a2-a6bf198901f9",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "769a1057-0d9a-4498-93a5-7e1be6d01f32",
+    "values": {
+      "latest": {
+        "ingress": 267710.27814569534,
+        "egress": 235477.80132450332
+      },
+      "mean": {
+        "ingress": 282482.6178031164,
+        "egress": 246990.72313301402
+      },
+      "max": {
+        "ingress": 365243.6411960133,
+        "egress": 377665.16943521594
+      }
+    }
+  },
+  {
+    "scid": "76f20bf6-8554-4e0f-8f86-f02139d41841",
+    "values": {
+      "latest": {
+        "ingress": 625.9733333333334,
+        "egress": 749.0133333333333
+      },
+      "mean": {
+        "ingress": 627.7670621581213,
+        "egress": 748.1054072708951
+      },
+      "max": {
+        "ingress": 645.8133333333334,
+        "egress": 942.3466666666667
+      }
+    }
+  },
+  {
+    "scid": "76f816fc-aa96-496c-b5ad-cba93e6b0129",
+    "values": {
+      "latest": {
+        "ingress": 13534523359.122923,
+        "egress": 6831726886.883721
+      },
+      "mean": {
+        "ingress": 10003458583.2045,
+        "egress": 5617466799.514442
+      },
+      "max": {
+        "ingress": 17567010977.668873,
+        "egress": 9346195008.39604
+      }
+    }
+  },
+  {
+    "scid": "77371b44-1826-445b-944c-2641a042c66e",
+    "values": {
+      "latest": {
+        "ingress": 49.4180602006689,
+        "egress": 9520.775919732441
+      },
+      "mean": {
+        "ingress": 52.16204899236356,
+        "egress": 9762.807558640025
+      },
+      "max": {
+        "ingress": 67.06040268456375,
+        "egress": 12558.613333333333
+      }
+    }
+  },
+  {
+    "scid": "776c933d-84f9-47f1-a566-44c0969a3dd5",
+    "values": {
+      "latest": {
+        "ingress": 11962.0,
+        "egress": 30722.773333333334
+      },
+      "mean": {
+        "ingress": 8762.984301354265,
+        "egress": 10831.663080657949
+      },
+      "max": {
+        "ingress": 297964.4119601329,
+        "egress": 208067.14666666667
+      }
+    }
+  },
+  {
+    "scid": "777ed6fa-60a3-40e0-9302-279d2a797746",
+    "values": {
+      "latest": {
+        "ingress": 692083996.8106313,
+        "egress": 114168888.21262458
+      },
+      "mean": {
+        "ingress": 744997993.7773414,
+        "egress": 93229181.1628428
+      },
+      "max": {
+        "ingress": 1798937212.9066668,
+        "egress": 229819715.13621262
+      }
+    }
+  },
+  {
+    "scid": "77c38cd3-f042-4275-acc1-e640419ab8bf",
+    "values": {
+      "latest": {
+        "ingress": 788084925.12,
+        "egress": 2704794750.9333334
+      },
+      "mean": {
+        "ingress": 823996937.4622452,
+        "egress": 1539194757.3253005
+      },
+      "max": {
+        "ingress": 1468047634.3466666,
+        "egress": 3049743276.0533333
+      }
+    }
+  },
+  {
+    "scid": "77cfebb2-a92a-4fcd-9efe-235d9e9065f7",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "784ab6cf-9efb-4dec-94f7-231c3a2cc04f",
+    "values": {
+      "latest": {
+        "ingress": 37356053359.84106,
+        "egress": 50752138497.08609
+      },
+      "mean": {
+        "ingress": 30650710947.388268,
+        "egress": 30608416456.103542
+      },
+      "max": {
+        "ingress": 85104436979.32779,
+        "egress": 71492349844.71214
+      }
+    }
+  },
+  {
+    "scid": "789c62ae-17a7-4884-b568-0921e5c638d1",
+    "values": {
+      "latest": {
+        "ingress": 217203.6821192053,
+        "egress": 105381.53642384105
+      },
+      "mean": {
+        "ingress": 241257.77772605306,
+        "egress": 126846.5253878579
+      },
+      "max": {
+        "ingress": 336788.27906976745,
+        "egress": 215269.05333333334
+      }
+    }
+  },
+  {
+    "scid": "79f6436e-0b9d-4cd7-a886-b63a2d5fb3ec",
+    "values": {
+      "latest": {
+        "ingress": 89190899.53488372,
+        "egress": 33678857.22259136
+      },
+      "mean": {
+        "ingress": 83641521.20836593,
+        "egress": 46145705.73024571
+      },
+      "max": {
+        "ingress": 215817550.27242523,
+        "egress": 104968541.41333333
+      }
+    }
+  },
+  {
+    "scid": "79fc266a-7cc1-4be6-abf0-45f6332ae4d4",
+    "values": {
+      "latest": {
+        "ingress": 40459353149.013336,
+        "egress": 14434155685.04
+      },
+      "mean": {
+        "ingress": 29148356044.290947,
+        "egress": 11193477406.5104
+      },
+      "max": {
+        "ingress": 47335566578.950165,
+        "egress": 28980470536.053158
+      }
+    }
+  },
+  {
+    "scid": "7a260ace-c8dc-4aa9-871f-bb850f35476d",
+    "values": {
+      "latest": {
+        "ingress": 713.8073089700997,
+        "egress": 3048.691029900332
+      },
+      "mean": {
+        "ingress": 767.6803624186863,
+        "egress": 4688.193168326951
+      },
+      "max": {
+        "ingress": 4548.72,
+        "egress": 191891.06666666668
+      }
+    }
+  },
+  {
+    "scid": "7a528025-c883-4b84-8682-506beae8de8e",
+    "values": {
+      "latest": {
+        "ingress": 1050457860.9765886,
+        "egress": 5637722322.140469
+      },
+      "mean": {
+        "ingress": 864555069.0088314,
+        "egress": 3488375039.8150616
+      },
+      "max": {
+        "ingress": 2069727550.166113,
+        "egress": 6579133403.109634
+      }
+    }
+  },
+  {
+    "scid": "7a72e854-71ee-4674-a11b-4fefb1451e99",
+    "values": {
+      "latest": {
+        "ingress": 64210548935.063545,
+        "egress": 66888210340.816055
+      },
+      "mean": {
+        "ingress": 51614884028.32639,
+        "egress": 78075464053.84317
+      },
+      "max": {
+        "ingress": 135960384967.46666,
+        "egress": 145090568044.30768
+      }
+    }
+  },
+  {
+    "scid": "7ae8bd27-b3ef-42c4-8ba1-4fa84fa52076",
+    "values": {
+      "latest": {
+        "ingress": 149706.29333333333,
+        "egress": 22133.84
+      },
+      "mean": {
+        "ingress": 122791.41529146642,
+        "egress": 19911.8534048943
+      },
+      "max": {
+        "ingress": 360258.24,
+        "egress": 32259.194630872484
+      }
+    }
+  },
+  {
+    "scid": "7b155e69-a005-4e44-92f0-75e9fbb5f314",
+    "values": {
+      "latest": {
+        "ingress": 306.6312292358804,
+        "egress": 233.80730897009965
+      },
+      "mean": {
+        "ingress": 310.7201754332272,
+        "egress": 249.29743916962724
+      },
+      "max": {
+        "ingress": 333.49333333333334,
+        "egress": 337.62126245847173
+      }
+    }
+  },
+  {
+    "scid": "7b596828-68b9-4f61-a528-86a41fa0e06e",
+    "values": {
+      "latest": {
+        "ingress": 63.8671096345515,
+        "egress": 2347.986710963455
+      },
+      "mean": {
+        "ingress": 66.35509605532994,
+        "egress": 3130.2266304077834
+      },
+      "max": {
+        "ingress": 71.70764119601328,
+        "egress": 8952.32
+      }
+    }
+  },
+  {
+    "scid": "7b7c6053-e5aa-40d7-93a4-b6a460006d94",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 44.94983277591973
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 42.161599246140774
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 46.929765886287626
+      }
+    }
+  },
+  {
+    "scid": "7c17b242-19a2-46f9-a398-1c5f4601faf7",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "7c637317-27ad-4664-a891-07b87e18bf2b",
+    "values": {
+      "latest": {
+        "ingress": 24613.12,
+        "egress": 189164577.12
+      },
+      "mean": {
+        "ingress": 18806.125987744308,
+        "egress": 207291292.90589225
+      },
+      "max": {
+        "ingress": 32179.295681063122,
+        "egress": 405165998.7733333
+      }
+    }
+  },
+  {
+    "scid": "7c799a24-20a7-4f6b-8790-cfe023a70265",
+    "values": {
+      "latest": {
+        "ingress": 272.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 271.97888643313235,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 274.7109634551495,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "7d1c5626-a05f-426e-9d37-21d2192a7467",
+    "values": {
+      "latest": {
+        "ingress": 7.973244147157191,
+        "egress": 15.143812709030101
+      },
+      "mean": {
+        "ingress": 8.94611678728212,
+        "egress": 17.231517639695564
+      },
+      "max": {
+        "ingress": 13.046979865771812,
+        "egress": 26.6843853820598
+      }
+    }
+  },
+  {
+    "scid": "7d6a39ca-0ca5-4440-8976-8e8213974c7f",
+    "values": {
+      "latest": {
+        "ingress": 1693003.2533333334,
+        "egress": 1461025.3333333333
+      },
+      "mean": {
+        "ingress": 1701151.4907168048,
+        "egress": 1447373.4372043381
+      },
+      "max": {
+        "ingress": 1815509.8205980067,
+        "egress": 1611257.8870431893
+      }
+    }
+  },
+  {
+    "scid": "7d6b2364-5249-48a4-9276-8bd63d76fb94",
+    "values": {
+      "latest": {
+        "ingress": 1424.6133333333332,
+        "egress": 569.52
+      },
+      "mean": {
+        "ingress": 1425.1337365653897,
+        "egress": 565.6932290317906
+      },
+      "max": {
+        "ingress": 1439.6279069767443,
+        "egress": 576.0535117056857
+      }
+    }
+  },
+  {
+    "scid": "7d97dff1-2b69-4b59-9322-bec626fa48da",
+    "values": {
+      "latest": {
+        "ingress": 999.0697674418604,
+        "egress": 124.54485049833887
+      },
+      "mean": {
+        "ingress": 862.6574740724046,
+        "egress": 124.27331601016144
+      },
+      "max": {
+        "ingress": 1036.8316831683169,
+        "egress": 181.156146179402
+      }
+    }
+  },
+  {
+    "scid": "7db186a5-68cc-4d34-bbe1-848a8b4e5a1f",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "7e2e07a7-374e-462b-8140-5ad184a71bfd",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "7e755e02-c2ab-4ce9-ab3a-62f115c30632",
+    "values": {
+      "latest": {
+        "ingress": 1553969279.2,
+        "egress": 1619296.7466666666
+      },
+      "mean": {
+        "ingress": 3753286992.935819,
+        "egress": 44629394.96811386
+      },
+      "max": {
+        "ingress": 9446896718.929766,
+        "egress": 641264971.8133334
+      }
+    }
+  },
+  {
+    "scid": "7ea43b05-0983-4b9b-b7cd-aea816792e0a",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "7f01dc1e-40d1-46e8-93b4-09936fb7b1eb",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "7f2fbdd3-4fc7-41fb-83f8-d0bd73a31373",
+    "values": {
+      "latest": {
+        "ingress": 20883063861.046978,
+        "egress": 78776330204.77852
+      },
+      "mean": {
+        "ingress": 14102867922.928997,
+        "egress": 71075124533.99089
+      },
+      "max": {
+        "ingress": 33411360774.781456,
+        "egress": 131568174473.32451
+      }
+    }
+  },
+  {
+    "scid": "7f3748e7-5b19-4335-8d0d-479fe054cb24",
+    "values": {
+      "latest": {
+        "ingress": 3107343708.72,
+        "egress": 5153785.84
+      },
+      "mean": {
+        "ingress": 1908075207.53498,
+        "egress": 7235499.553206033
+      },
+      "max": {
+        "ingress": 3107343708.72,
+        "egress": 47336437.2
+      }
+    }
+  },
+  {
+    "scid": "7f37a9cd-5b31-4271-a180-3597bbc505d8",
+    "values": {
+      "latest": {
+        "ingress": 16270.373333333333,
+        "egress": 24097.706666666665
+      },
+      "mean": {
+        "ingress": 13430.974970379457,
+        "egress": 24150.22563551762
+      },
+      "max": {
+        "ingress": 25849.573333333334,
+        "egress": 46351.066666666666
+      }
+    }
+  },
+  {
+    "scid": "7f87c2ff-d735-47da-b710-5b3bfcf5f6f7",
+    "values": {
+      "latest": {
+        "ingress": 226875.12,
+        "egress": 29471.386666666665
+      },
+      "mean": {
+        "ingress": 2015594.6576994287,
+        "egress": 126529.85077493585
+      },
+      "max": {
+        "ingress": 22577249.204013377,
+        "egress": 3441098.3466666667
+      }
+    }
+  },
+  {
+    "scid": "7f93759e-916e-4aaa-a2de-bbfccd7f0726",
+    "values": {
+      "latest": {
+        "ingress": 2036650754.64,
+        "egress": 6189594264.746667
+      },
+      "mean": {
+        "ingress": 1484497727.1903179,
+        "egress": 3891257894.4857316
+      },
+      "max": {
+        "ingress": 5262415797.79402,
+        "egress": 7606537381.146667
+      }
+    }
+  },
+  {
+    "scid": "7f99f83b-4ce6-4168-8671-5918d557d8fe",
+    "values": {
+      "latest": {
+        "ingress": 26398.32,
+        "egress": 19658.08
+      },
+      "mean": {
+        "ingress": 178317.14644312792,
+        "egress": 62245.82189932581
+      },
+      "max": {
+        "ingress": 20586129.04,
+        "egress": 3048620.119601329
+      }
+    }
+  },
+  {
+    "scid": "7fadc83e-cee2-4288-88f8-07fe110fdfe2",
+    "values": {
+      "latest": {
+        "ingress": 31767737.04,
+        "egress": 66939314.50666667
+      },
+      "mean": {
+        "ingress": 48542623.20522732,
+        "egress": 60172601.80094819
+      },
+      "max": {
+        "ingress": 281335562.74666667,
+        "egress": 609039304.2923588
+      }
+    }
+  },
+  {
+    "scid": "7fe192d4-ecab-4382-9730-643794f8e21d",
+    "values": {
+      "latest": {
+        "ingress": 18.133333333333333,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 18.45146074665794,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 21.83277591973244,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "802da75d-9d40-41dd-8680-770942d47b8b",
+    "values": {
+      "latest": {
+        "ingress": 1036679429.7792642,
+        "egress": 5609027839.170568
+      },
+      "mean": {
+        "ingress": 826238388.0349274,
+        "egress": 3429020270.847473
+      },
+      "max": {
+        "ingress": 1997584178.8172758,
+        "egress": 6484164956.358804
+      }
+    }
+  },
+  {
+    "scid": "80302663-1ba2-4077-ae12-b40ecbaa450e",
+    "values": {
+      "latest": {
+        "ingress": 2361.4983277591973,
+        "egress": 917.3779264214047
+      },
+      "mean": {
+        "ingress": 3745.1634168971714,
+        "egress": 1130.4270227754096
+      },
+      "max": {
+        "ingress": 13331.880398671095,
+        "egress": 2669.351170568562
+      }
+    }
+  },
+  {
+    "scid": "8081ca8f-a9a0-4698-b5b5-bc23a8fbbb13",
+    "values": {
+      "latest": {
+        "ingress": 3386011.561461794,
+        "egress": 2169245.7408637875
+      },
+      "mean": {
+        "ingress": 5283389.140370517,
+        "egress": 9576513.017677326
+      },
+      "max": {
+        "ingress": 402483822.88372093,
+        "egress": 429481764.85333335
+      }
+    }
+  },
+  {
+    "scid": "80de734d-161a-4d9f-9dde-8f23d04df002",
+    "values": {
+      "latest": {
+        "ingress": 982196984.717608,
+        "egress": 11082392013.39535
+      },
+      "mean": {
+        "ingress": 539458097.9431287,
+        "egress": 10021819136.535982
+      },
+      "max": {
+        "ingress": 8438152174.586667,
+        "egress": 13821959426.453333
+      }
+    }
+  },
+  {
+    "scid": "810b158c-2010-45e0-9124-0cc2372542ef",
+    "values": {
+      "latest": {
+        "ingress": 496.1066666666667,
+        "egress": 1668.7733333333333
+      },
+      "mean": {
+        "ingress": 502.53431329865833,
+        "egress": 1690.9027461810908
+      },
+      "max": {
+        "ingress": 736.72,
+        "egress": 12103.333333333334
+      }
+    }
+  },
+  {
+    "scid": "813352cd-ae30-49d4-b589-60c56a4aceb1",
+    "values": {
+      "latest": {
+        "ingress": 2631.36,
+        "egress": 2644.266666666667
+      },
+      "mean": {
+        "ingress": 7277.268858531407,
+        "egress": 45253.92880129687
+      },
+      "max": {
+        "ingress": 37399.86710963455,
+        "egress": 209665.32890365447
+      }
+    }
+  },
+  {
+    "scid": "8134740b-7497-4398-ac94-7c1ba8564303",
+    "values": {
+      "latest": {
+        "ingress": 1037.6688741721855,
+        "egress": 7041454.410596026
+      },
+      "mean": {
+        "ingress": 1046.9353909417314,
+        "egress": 6573900.23082664
+      },
+      "max": {
+        "ingress": 1207.3355481727574,
+        "egress": 8310586.28
+      }
+    }
+  },
+  {
+    "scid": "81673258-0f12-44c4-b5bb-4b7fb25761a9",
+    "values": {
+      "latest": {
+        "ingress": 96.47840531561462,
+        "egress": 14549.262458471761
+      },
+      "mean": {
+        "ingress": 98.95231224874189,
+        "egress": 171971.31644980228
+      },
+      "max": {
+        "ingress": 127.09333333333333,
+        "egress": 5113809.28
+      }
+    }
+  },
+  {
+    "scid": "816b7cf6-9aea-4717-b053-1027251e2aed",
+    "values": {
+      "latest": {
+        "ingress": 732883.2956810631,
+        "egress": 757375.6279069767
+      },
+      "mean": {
+        "ingress": 6587609.640779554,
+        "egress": 6979375.626466156
+      },
+      "max": {
+        "ingress": 264819624.3986711,
+        "egress": 268157217.56810632
+      }
+    }
+  },
+  {
+    "scid": "819988f7-c21a-4aa4-afab-ca4249174180",
+    "values": {
+      "latest": {
+        "ingress": 4586854883.093333,
+        "egress": 12304647858.746666
+      },
+      "mean": {
+        "ingress": 4347177895.064069,
+        "egress": 5529214383.917039
+      },
+      "max": {
+        "ingress": 25735794735.096344,
+        "egress": 38680722247.973335
+      }
+    }
+  },
+  {
+    "scid": "81e28a44-51a9-4147-a14e-da736ab89266",
+    "values": {
+      "latest": {
+        "ingress": 227268661.62666667,
+        "egress": 1547811032.0266666
+      },
+      "mean": {
+        "ingress": 439387415.7427803,
+        "egress": 2305570554.0505543
+      },
+      "max": {
+        "ingress": 1945611270.0863788,
+        "egress": 5751500601.807309
+      }
+    }
+  },
+  {
+    "scid": "81edaf42-703d-4eaf-a043-00e6e52b0bbc",
+    "values": {
+      "latest": {
+        "ingress": 4221958702.983278,
+        "egress": 17917985448.347828
+      },
+      "mean": {
+        "ingress": 1772526414.0257478,
+        "egress": 5844703023.608096
+      },
+      "max": {
+        "ingress": 7775202493.591973,
+        "egress": 25595687361.658863
+      }
+    }
+  },
+  {
+    "scid": "8225dec7-027c-41c0-94a4-0d24eb5214f7",
+    "values": {
+      "latest": {
+        "ingress": 40822.613333333335,
+        "egress": 1290.4
+      },
+      "mean": {
+        "ingress": 24615.61738288655,
+        "egress": 1181.4476915338864
+      },
+      "max": {
+        "ingress": 43762.073089701,
+        "egress": 26631.25581395349
+      }
+    }
+  },
+  {
+    "scid": "822aec85-d3c6-4d0a-94a0-230f31b967f7",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "822e2451-8daa-4786-a150-c2840385d01f",
+    "values": {
+      "latest": {
+        "ingress": 325593033.2266667,
+        "egress": 5210.346666666666
+      },
+      "mean": {
+        "ingress": 308731134.1640516,
+        "egress": 5102.30834196588
+      },
+      "max": {
+        "ingress": 941930826.6754967,
+        "egress": 9806.72
+      }
+    }
+  },
+  {
+    "scid": "825f9ca7-1d86-432c-a268-3e04e24f2ba9",
+    "values": {
+      "latest": {
+        "ingress": 240987574.24,
+        "egress": 206809685.28
+      },
+      "mean": {
+        "ingress": 306988412.83406806,
+        "egress": 299118841.79449016
+      },
+      "max": {
+        "ingress": 2595524501.10299,
+        "egress": 1014573335.9202658
+      }
+    }
+  },
+  {
+    "scid": "827acbd6-7a54-4605-a645-4d5ff4e8e618",
+    "values": {
+      "latest": {
+        "ingress": 1177765579.04,
+        "egress": 838841824.88
+      },
+      "mean": {
+        "ingress": 919587624.8929152,
+        "egress": 605360135.3609431
+      },
+      "max": {
+        "ingress": 1972191753.1162791,
+        "egress": 1332869538.4451828
+      }
+    }
+  },
+  {
+    "scid": "82821bae-91ef-400c-87e0-43008fd38005",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 102.74247491638796
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 110.70279549936123
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 122.88
+      }
+    }
+  },
+  {
+    "scid": "82eba9c4-6ad2-476e-b76b-4c9a8fb75974",
+    "values": {
+      "latest": {
+        "ingress": 103329.5415282392,
+        "egress": 9804.677740863788
+      },
+      "mean": {
+        "ingress": 107678.0911398696,
+        "egress": 10185.650430284308
+      },
+      "max": {
+        "ingress": 222732.45333333334,
+        "egress": 32200.02666666667
+      }
+    }
+  },
+  {
+    "scid": "83025ba4-4006-4e68-b646-340840256434",
+    "values": {
+      "latest": {
+        "ingress": 882032.96,
+        "egress": 4142.533333333334
+      },
+      "mean": {
+        "ingress": 5868441.873683716,
+        "egress": 4140.504401776807
+      },
+      "max": {
+        "ingress": 253062937.13144758,
+        "egress": 4301.737104825291
+      }
+    }
+  },
+  {
+    "scid": "8354ba35-2896-49d8-9835-fdd00ef3c5fe",
+    "values": {
+      "latest": {
+        "ingress": 1921895069.0666666,
+        "egress": 6575.733333333334
+      },
+      "mean": {
+        "ingress": 1982058195.257868,
+        "egress": 6632.886513850547
+      },
+      "max": {
+        "ingress": 6410188745.887043,
+        "egress": 7779.413333333333
+      }
+    }
+  },
+  {
+    "scid": "835770d2-6495-48db-b20e-adb021d580c7",
+    "values": {
+      "latest": {
+        "ingress": 710566.9900332226,
+        "egress": 511855.2026578073
+      },
+      "mean": {
+        "ingress": 667105.8751122993,
+        "egress": 468139.1088029296
+      },
+      "max": {
+        "ingress": 773911.9733333334,
+        "egress": 645845.44
+      }
+    }
+  },
+  {
+    "scid": "837678ea-80c6-4770-a213-31e4e76dc100",
+    "values": {
+      "latest": {
+        "ingress": 65345.76588628763,
+        "egress": 21257.096989966554
+      },
+      "mean": {
+        "ingress": 84646.16508553496,
+        "egress": 22030.789834392304
+      },
+      "max": {
+        "ingress": 150250.7549668874,
+        "egress": 28828.98013245033
+      }
+    }
+  },
+  {
+    "scid": "83847c9b-4410-4ae9-844f-fa4f24f1d012",
+    "values": {
+      "latest": {
+        "ingress": 8528.853333333333,
+        "egress": 8531.706666666667
+      },
+      "mean": {
+        "ingress": 8541.591695845207,
+        "egress": 8539.531523310206
+      },
+      "max": {
+        "ingress": 8965.093333333334,
+        "egress": 8826.533333333333
+      }
+    }
+  },
+  {
+    "scid": "83e725fb-28c5-4cf4-b7a4-da09b96ccd46",
+    "values": {
+      "latest": {
+        "ingress": 1179066586.9966555,
+        "egress": 275341839.78595316
+      },
+      "mean": {
+        "ingress": 493280825.3413845,
+        "egress": 191881853.910407
+      },
+      "max": {
+        "ingress": 3903318676.2809362,
+        "egress": 960606931.4551495
+      }
+    }
+  },
+  {
+    "scid": "83f1f939-e914-456e-9170-0f88335c7019",
+    "values": {
+      "latest": {
+        "ingress": 51181.35117056856,
+        "egress": 6683237.030100334
+      },
+      "mean": {
+        "ingress": 47218.26241667982,
+        "egress": 6256302.223090112
+      },
+      "max": {
+        "ingress": 61974.750830564786,
+        "egress": 6958662.906666666
+      }
+    }
+  },
+  {
+    "scid": "83f7a1e5-7ad0-433f-9841-f8b72286767c",
+    "values": {
+      "latest": {
+        "ingress": 60447000.0,
+        "egress": 113565448.05333333
+      },
+      "mean": {
+        "ingress": 110173976.8848507,
+        "egress": 148783785.4821261
+      },
+      "max": {
+        "ingress": 1181769598.7466667,
+        "egress": 1319971411.8666666
+      }
+    }
+  },
+  {
+    "scid": "841a43e5-7bf9-417f-94f0-27ebacd071a2",
+    "values": {
+      "latest": {
+        "ingress": 2219.210702341137,
+        "egress": 1103.0635451505016
+      },
+      "mean": {
+        "ingress": 2243.9935343624675,
+        "egress": 1096.0703110344543
+      },
+      "max": {
+        "ingress": 2503.5690235690236,
+        "egress": 1166.32
+      }
+    }
+  },
+  {
+    "scid": "843c1da0-49e7-47ff-823e-12955c336e10",
+    "values": {
+      "latest": {
+        "ingress": 1410.843853820598,
+        "egress": 3869.528239202658
+      },
+      "mean": {
+        "ingress": 1411.4621776421923,
+        "egress": 6929.058335622117
+      },
+      "max": {
+        "ingress": 1440.0,
+        "egress": 143470.98327759196
+      }
+    }
+  },
+  {
+    "scid": "845c8c48-949a-4d95-8afb-8b0e1ffd7b05",
+    "values": {
+      "latest": {
+        "ingress": 3667.933110367893,
+        "egress": 4343.759197324414
+      },
+      "mean": {
+        "ingress": 4434.998454900864,
+        "egress": 4448.3821246908055
+      },
+      "max": {
+        "ingress": 41484.83720930233,
+        "egress": 13838.4
+      }
+    }
+  },
+  {
+    "scid": "84aea626-8928-4959-a0dc-5c153c17cb5c",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 21.794019933554818
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 24.138636248300866
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 37.92
+      }
+    }
+  },
+  {
+    "scid": "84cd86c9-63bc-422c-907f-6b9b4896000b",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "84d8b53e-8337-4044-bc02-60a111eb20ac",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 80.15946843853821
+      },
+      "mean": {
+        "ingress": 1.4754507817833238,
+        "egress": 204.836017645252
+      },
+      "max": {
+        "ingress": 20.411960132890364,
+        "egress": 368.58666666666664
+      }
+    }
+  },
+  {
+    "scid": "851d5330-924d-4e40-ac64-033e077afee4",
+    "values": {
+      "latest": {
+        "ingress": 29599.33110367893,
+        "egress": 30587.478260869564
+      },
+      "mean": {
+        "ingress": 29911.85470104943,
+        "egress": 33453.73430010808
+      },
+      "max": {
+        "ingress": 50440.66225165563,
+        "egress": 58471.33774834437
+      }
+    }
+  },
+  {
+    "scid": "853f0c33-24fc-491d-9e62-2680657113b5",
+    "values": {
+      "latest": {
+        "ingress": 1166524.996677741,
+        "egress": 19504080.850498337
+      },
+      "mean": {
+        "ingress": 3740085.1524539473,
+        "egress": 10933039.23419648
+      },
+      "max": {
+        "ingress": 42058162.515050165,
+        "egress": 134459972.06688964
+      }
+    }
+  },
+  {
+    "scid": "856b4cd2-49dc-480b-9c68-d795fe3cd58b",
+    "values": {
+      "latest": {
+        "ingress": 1929.2,
+        "egress": 2155.1466666666665
+      },
+      "mean": {
+        "ingress": 1950.4149019116478,
+        "egress": 2165.5414126002715
+      },
+      "max": {
+        "ingress": 2226.9767441860463,
+        "egress": 2194.32
+      }
+    }
+  },
+  {
+    "scid": "85813ab7-6ef9-43ed-846b-7ea903a71b74",
+    "values": {
+      "latest": {
+        "ingress": 9221447.197324414,
+        "egress": 3882119.1170568564
+      },
+      "mean": {
+        "ingress": 88442581.6763673,
+        "egress": 16221377.85930593
+      },
+      "max": {
+        "ingress": 284345445.8471761,
+        "egress": 91017052.48
+      }
+    }
+  },
+  {
+    "scid": "85afcdd4-6536-41fb-b1f4-606089b144b7",
+    "values": {
+      "latest": {
+        "ingress": 2621217782.9866667,
+        "egress": 1816151826.6666667
+      },
+      "mean": {
+        "ingress": 2447582251.6077824,
+        "egress": 1149216017.3017023
+      },
+      "max": {
+        "ingress": 6044690505.196013,
+        "egress": 2942705044.266667
+      }
+    }
+  },
+  {
+    "scid": "8621135c-0ecb-4968-8c69-4f871ff9560b",
+    "values": {
+      "latest": {
+        "ingress": 4637.013333333333,
+        "egress": 2026.6933333333334
+      },
+      "mean": {
+        "ingress": 31561.27883719439,
+        "egress": 2384.5421980737897
+      },
+      "max": {
+        "ingress": 186679.30434782608,
+        "egress": 4437.3779264214045
+      }
+    }
+  },
+  {
+    "scid": "862588c4-e0cd-459a-9b2d-15ddec230fb4",
+    "values": {
+      "latest": {
+        "ingress": 9529382186.186666,
+        "egress": 7608797602.026667
+      },
+      "mean": {
+        "ingress": 8475182709.962785,
+        "egress": 5737071139.4598255
+      },
+      "max": {
+        "ingress": 13486872161.568106,
+        "egress": 10974608660.0
+      }
+    }
+  },
+  {
+    "scid": "862d832f-f24b-4b65-9c98-6611d980af8c",
+    "values": {
+      "latest": {
+        "ingress": 2653.0331125827815,
+        "egress": 8395362.066225166
+      },
+      "mean": {
+        "ingress": 2705.178814727125,
+        "egress": 8159141.088001397
+      },
+      "max": {
+        "ingress": 3261.7466666666664,
+        "egress": 15818883.125827815
+      }
+    }
+  },
+  {
+    "scid": "86397a41-6ca8-4da8-9381-1995a90aeb23",
+    "values": {
+      "latest": {
+        "ingress": 12970682524.293333,
+        "egress": 377060010.8
+      },
+      "mean": {
+        "ingress": 9144567514.559042,
+        "egress": 720643331.9767451
+      },
+      "max": {
+        "ingress": 26268471645.2,
+        "egress": 27582888795.12
+      }
+    }
+  },
+  {
+    "scid": "86684d3e-9313-4f58-9997-94935d72bb72",
+    "values": {
+      "latest": {
+        "ingress": 2005.0232558139535,
+        "egress": 1857.9667774086379
+      },
+      "mean": {
+        "ingress": 11262.055421231278,
+        "egress": 1956.3386489601621
+      },
+      "max": {
+        "ingress": 129408.0,
+        "egress": 2824.1328903654485
+      }
+    }
+  },
+  {
+    "scid": "86ba43f3-8267-4f28-9d71-3ea838f87436",
+    "values": {
+      "latest": {
+        "ingress": 901746.32,
+        "egress": 195134.45333333334
+      },
+      "mean": {
+        "ingress": 3555484.8537373543,
+        "egress": 4811892.07206365
+      },
+      "max": {
+        "ingress": 83494693.79401994,
+        "egress": 140705559.73333332
+      }
+    }
+  },
+  {
+    "scid": "86f708d9-b46e-4a66-bf38-5b21f2a85b51",
+    "values": {
+      "latest": {
+        "ingress": 4301744.72,
+        "egress": 6886489.1466666665
+      },
+      "mean": {
+        "ingress": 2588992.8136533108,
+        "egress": 5233808.776946773
+      },
+      "max": {
+        "ingress": 8022689.386666667,
+        "egress": 12602291.609917356
+      }
+    }
+  },
+  {
+    "scid": "871a8735-441a-45dd-8e51-b8301f9574a5",
+    "values": {
+      "latest": {
+        "ingress": 4880.829431438127,
+        "egress": 5784.936454849499
+      },
+      "mean": {
+        "ingress": 102019.54375006723,
+        "egress": 29777.728796484425
+      },
+      "max": {
+        "ingress": 1057770.96,
+        "egress": 179846.18666666668
+      }
+    }
+  },
+  {
+    "scid": "874145d3-c8bc-47dc-b4d0-9938acded641",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "8785501b-61c0-4b90-8bf3-e81f266c1a2e",
+    "values": {
+      "latest": {
+        "ingress": 633.3645484949833,
+        "egress": 752.7491638795987
+      },
+      "mean": {
+        "ingress": 487.8505688810554,
+        "egress": 577.1619968521536
+      },
+      "max": {
+        "ingress": 659.68,
+        "egress": 778.4
+      }
+    }
+  },
+  {
+    "scid": "87cc0d51-5aa3-430b-9bfa-971da7f4dac3",
+    "values": {
+      "latest": {
+        "ingress": 2013499.6266666667,
+        "egress": 4814332.693333333
+      },
+      "mean": {
+        "ingress": 2020477.6830306924,
+        "egress": 4893080.886644422
+      },
+      "max": {
+        "ingress": 2495418.6933333334,
+        "egress": 8007791.308970099
+      }
+    }
+  },
+  {
+    "scid": "87d24d3e-1355-400f-9563-b0c9f5c2194c",
+    "values": {
+      "latest": {
+        "ingress": 23950.453333333335,
+        "egress": 30667.306666666667
+      },
+      "mean": {
+        "ingress": 25407.8740148443,
+        "egress": 33943.12899900232
+      },
+      "max": {
+        "ingress": 43041.56810631229,
+        "egress": 62852.70431893688
+      }
+    }
+  },
+  {
+    "scid": "87d940f2-109f-4227-ab60-b9fdd5fad208",
+    "values": {
+      "latest": {
+        "ingress": 565.92,
+        "egress": 326.18666666666667
+      },
+      "mean": {
+        "ingress": 549.4016085736332,
+        "egress": 295.1574822541167
+      },
+      "max": {
+        "ingress": 659.9867109634552,
+        "egress": 445.8666666666667
+      }
+    }
+  },
+  {
+    "scid": "881bb349-3edf-449d-8289-cd17c2b2cfdb",
+    "values": {
+      "latest": {
+        "ingress": 8770080448.642141,
+        "egress": 52705245665.605354
+      },
+      "mean": {
+        "ingress": 10221943516.324835,
+        "egress": 54113343008.38111
+      },
+      "max": {
+        "ingress": 29017007510.431892,
+        "egress": 100082708893.86667
+      }
+    }
+  },
+  {
+    "scid": "881d13f0-688a-40f3-83cf-487b2736fadb",
+    "values": {
+      "latest": {
+        "ingress": 618.046511627907,
+        "egress": 614.2458471760797
+      },
+      "mean": {
+        "ingress": 614.8243149391634,
+        "egress": 610.9585936786971
+      },
+      "max": {
+        "ingress": 626.48,
+        "egress": 622.72
+      }
+    }
+  },
+  {
+    "scid": "8856e1cf-135a-458b-b3f7-42bf9622aacf",
+    "values": {
+      "latest": {
+        "ingress": 112136.24,
+        "egress": 1487.84
+      },
+      "mean": {
+        "ingress": 16347.632602336234,
+        "egress": 1444.9897978301829
+      },
+      "max": {
+        "ingress": 3258791.3333333335,
+        "egress": 4774.986666666667
+      }
+    }
+  },
+  {
+    "scid": "8875d1b6-8980-4862-a0a7-9f36675817ac",
+    "values": {
+      "latest": {
+        "ingress": 110955.01333333334,
+        "egress": 52709.573333333334
+      },
+      "mean": {
+        "ingress": 94338.57068501941,
+        "egress": 52425.32317295266
+      },
+      "max": {
+        "ingress": 113383.04,
+        "egress": 77906.01993355482
+      }
+    }
+  },
+  {
+    "scid": "889e2ed8-43d6-42b2-b14c-4e634a625915",
+    "values": {
+      "latest": {
+        "ingress": 133.01333333333332,
+        "egress": 70986448.58666667
+      },
+      "mean": {
+        "ingress": 106.4199963470417,
+        "egress": 358570892.023728
+      },
+      "max": {
+        "ingress": 200.2923588039867,
+        "egress": 4704132818.274247
+      }
+    }
+  },
+  {
+    "scid": "88d17665-1901-4efc-aadc-3a1750cc4582",
+    "values": {
+      "latest": {
+        "ingress": 4382.341137123746,
+        "egress": 4449.953177257525
+      },
+      "mean": {
+        "ingress": 3813.3307326956306,
+        "egress": 8043.188238844233
+      },
+      "max": {
+        "ingress": 33168.0,
+        "egress": 732158.5016722408
+      }
+    }
+  },
+  {
+    "scid": "88df9c5e-1866-4a07-9012-846e2192d7ca",
+    "values": {
+      "latest": {
+        "ingress": 1247696516.7733333,
+        "egress": 7248183884.933333
+      },
+      "mean": {
+        "ingress": 977721686.187106,
+        "egress": 5390868569.64145
+      },
+      "max": {
+        "ingress": 1836380976.6933334,
+        "egress": 10910369719.893333
+      }
+    }
+  },
+  {
+    "scid": "89192920-9efd-4f50-9f0d-48abcf8863d3",
+    "values": {
+      "latest": {
+        "ingress": 692083996.8106313,
+        "egress": 114168888.21262458
+      },
+      "mean": {
+        "ingress": 744997218.0783455,
+        "egress": 93229116.62442827
+      },
+      "max": {
+        "ingress": 1798937212.9066668,
+        "egress": 229819715.13621262
+      }
+    }
+  },
+  {
+    "scid": "898c618e-da1d-45d6-9b04-82f0b37bcdab",
+    "values": {
+      "latest": {
+        "ingress": 436.02666666666664,
+        "egress": 1224.32
+      },
+      "mean": {
+        "ingress": 418.59106805336194,
+        "egress": 1498.0527858528753
+      },
+      "max": {
+        "ingress": 454.56478405315613,
+        "egress": 4119.573333333334
+      }
+    }
+  },
+  {
+    "scid": "8997b807-296d-4f5a-8a74-24f55020dd51",
+    "values": {
+      "latest": {
+        "ingress": 12790404.053333333,
+        "egress": 18952693.546666667
+      },
+      "mean": {
+        "ingress": 10951791.390638677,
+        "egress": 15789851.076004548
+      },
+      "max": {
+        "ingress": 157998418.05333334,
+        "egress": 130760901.1638796
+      }
+    }
+  },
+  {
+    "scid": "89b10159-9590-4fcb-a9e7-a4f807f63b44",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "89f10438-66ad-4e5b-9f64-2112af2904ed",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "89f49535-510b-44b1-8222-c36fb794b6fa",
+    "values": {
+      "latest": {
+        "ingress": 1194.2251655629138,
+        "egress": 729.0596026490066
+      },
+      "mean": {
+        "ingress": 16611.064276505258,
+        "egress": 1645019.500003962
+      },
+      "max": {
+        "ingress": 197171.7529215359,
+        "egress": 48487491.111853085
+      }
+    }
+  },
+  {
+    "scid": "8a48c70f-4c71-4bf8-956d-d2f4874bdffc",
+    "values": {
+      "latest": {
+        "ingress": 114.66666666666667,
+        "egress": 121.38666666666667
+      },
+      "mean": {
+        "ingress": 114.6884739272189,
+        "egress": 123.64598974085837
+      },
+      "max": {
+        "ingress": 126.5551839464883,
+        "egress": 145.51747088186357
+      }
+    }
+  },
+  {
+    "scid": "8a5756bb-5876-4315-9b54-c187b504dbc4",
+    "values": {
+      "latest": {
+        "ingress": 236.14715719063545,
+        "egress": 1176.5886287625417
+      },
+      "mean": {
+        "ingress": 547.7455703959217,
+        "egress": 1347.4025105604776
+      },
+      "max": {
+        "ingress": 85119.25333333333,
+        "egress": 34690.28571428572
+      }
+    }
+  },
+  {
+    "scid": "8a66b8d4-2a6f-4e15-93f5-085efdff7a6a",
+    "values": {
+      "latest": {
+        "ingress": 558.6666666666666,
+        "egress": 830.6933333333334
+      },
+      "mean": {
+        "ingress": 566.7877754388044,
+        "egress": 734.9974591956574
+      },
+      "max": {
+        "ingress": 624.7973421926911,
+        "egress": 892.5217391304348
+      }
+    }
+  },
+  {
+    "scid": "8aafc220-da5f-4290-a9e7-d5df1f0e49cc",
+    "values": {
+      "latest": {
+        "ingress": 1375.4172185430464,
+        "egress": 9278002.066225166
+      },
+      "mean": {
+        "ingress": 1449.3497642689024,
+        "egress": 8737205.545188716
+      },
+      "max": {
+        "ingress": 2701.271523178808,
+        "egress": 15491828.079470199
+      }
+    }
+  },
+  {
+    "scid": "8ab264f8-51f9-47c8-9233-6f2b71a15048",
+    "values": {
+      "latest": {
+        "ingress": 4738106.8,
+        "egress": 5189264.533333333
+      },
+      "mean": {
+        "ingress": 3419010.5175523623,
+        "egress": 3853556.653652783
+      },
+      "max": {
+        "ingress": 6965226.053333334,
+        "egress": 26729726.056198347
+      }
+    }
+  },
+  {
+    "scid": "8ab91ec7-b126-4c2b-807b-d400b95072a9",
+    "values": {
+      "latest": {
+        "ingress": 536.7973421926911,
+        "egress": 528.8770764119602
+      },
+      "mean": {
+        "ingress": 1445.420176629809,
+        "egress": 575.6298139612651
+      },
+      "max": {
+        "ingress": 11119.335548172758,
+        "egress": 1531.029900332226
+      }
+    }
+  },
+  {
+    "scid": "8ac85ffe-60b7-48a5-885e-59b85b069e1d",
+    "values": {
+      "latest": {
+        "ingress": 108.01328903654485,
+        "egress": 3596.624584717608
+      },
+      "mean": {
+        "ingress": 120.27426890764632,
+        "egress": 24071.660067773515
+      },
+      "max": {
+        "ingress": 151.81333333333333,
+        "egress": 135847.81395348837
+      }
+    }
+  },
+  {
+    "scid": "8b10fe6f-4af5-4592-b093-845b809ba60e",
+    "values": {
+      "latest": {
+        "ingress": 1356.32,
+        "egress": 193.94666666666666
+      },
+      "mean": {
+        "ingress": 1361.0552692550605,
+        "egress": 202.60128657997566
+      },
+      "max": {
+        "ingress": 5720.4,
+        "egress": 245.95348837209303
+      }
+    }
+  },
+  {
+    "scid": "8b2ca47a-8bff-4407-90cc-623b5427f95d",
+    "values": {
+      "latest": {
+        "ingress": 6224355.653333333,
+        "egress": 14225152.773333333
+      },
+      "mean": {
+        "ingress": 53785401.86926562,
+        "egress": 48545891.54906341
+      },
+      "max": {
+        "ingress": 620462712.2933333,
+        "egress": 606284695.7333333
+      }
+    }
+  },
+  {
+    "scid": "8b4bebc7-1ed7-4d06-8860-0484f21276f5",
+    "values": {
+      "latest": {
+        "ingress": 430369.6688741722,
+        "egress": 2706520.317880795
+      },
+      "mean": {
+        "ingress": 5631980.71967359,
+        "egress": 2623473.2738473164
+      },
+      "max": {
+        "ingress": 637968280.4784054,
+        "egress": 41363084.93843594
+      }
+    }
+  },
+  {
+    "scid": "8bd8b9b3-6985-4201-ae90-c95456fee925",
+    "values": {
+      "latest": {
+        "ingress": 10245257391.066668,
+        "egress": 2614660061.68
+      },
+      "mean": {
+        "ingress": 4114003723.6748424,
+        "egress": 2326536300.0214806
+      },
+      "max": {
+        "ingress": 23449328452.07321,
+        "egress": 8263157449.770383
+      }
+    }
+  },
+  {
+    "scid": "8cc820be-62a1-4682-a42b-5193743aeabb",
+    "values": {
+      "latest": {
+        "ingress": 1734.6889632107022,
+        "egress": 858.4615384615385
+      },
+      "mean": {
+        "ingress": 3645.8032536526284,
+        "egress": 822.1834137647809
+      },
+      "max": {
+        "ingress": 547156.8372093023,
+        "egress": 1475.3866666666668
+      }
+    }
+  },
+  {
+    "scid": "8ccb1cd8-5e4e-4015-b264-4732c5eb5028",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "8ceca1cd-f5a1-483b-b2ab-756ab0da26f1",
+    "values": {
+      "latest": {
+        "ingress": 1709748133.76,
+        "egress": 181043972.45333335
+      },
+      "mean": {
+        "ingress": 1205442408.196288,
+        "egress": 141751384.02869853
+      },
+      "max": {
+        "ingress": 2154177972.8,
+        "egress": 1186891421.7333333
+      }
+    }
+  },
+  {
+    "scid": "8cf48638-518e-4f78-8dd4-5546c1d3d94b",
+    "values": {
+      "latest": {
+        "ingress": 866296706.6133333,
+        "egress": 454564271.84
+      },
+      "mean": {
+        "ingress": 1555817119.444204,
+        "egress": 526321063.58157957
+      },
+      "max": {
+        "ingress": 13659237803.585285,
+        "egress": 5118727812.1866665
+      }
+    }
+  },
+  {
+    "scid": "8d25144c-32f2-40ee-b627-6aca9d1fd0cc",
+    "values": {
+      "latest": {
+        "ingress": 136210.48,
+        "egress": 138754.50666666665
+      },
+      "mean": {
+        "ingress": 173604.12791452694,
+        "egress": 13210732.30968751
+      },
+      "max": {
+        "ingress": 909468.4768211921,
+        "egress": 58681556.986666664
+      }
+    }
+  },
+  {
+    "scid": "8d52a5da-2212-4696-b4c6-f5f1f35ebf5b",
+    "values": {
+      "latest": {
+        "ingress": 5446.88,
+        "egress": 5576.266666666666
+      },
+      "mean": {
+        "ingress": 4462.824726603731,
+        "egress": 3509.9940767939484
+      },
+      "max": {
+        "ingress": 6997.049833887043,
+        "egress": 6850.870431893688
+      }
+    }
+  },
+  {
+    "scid": "8d703367-935c-4c79-a13c-38e861d2861a",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "8de489a7-3153-4167-8c4a-e6beaaab2653",
+    "values": {
+      "latest": {
+        "ingress": 4181564291.4817276,
+        "egress": 721972198.1926911
+      },
+      "mean": {
+        "ingress": 3770694266.5072865,
+        "egress": 668366817.3897518
+      },
+      "max": {
+        "ingress": 6022824295.733334,
+        "egress": 1229104349.129568
+      }
+    }
+  },
+  {
+    "scid": "8e577713-0de2-453f-a4dd-4f17d153ada6",
+    "values": {
+      "latest": {
+        "ingress": 855923522.3122923,
+        "egress": 5783368.77076412
+      },
+      "mean": {
+        "ingress": 2914075724.315174,
+        "egress": 14218046.866672384
+      },
+      "max": {
+        "ingress": 5155819172.693334,
+        "egress": 30700166.410596028
+      }
+    }
+  },
+  {
+    "scid": "8e731536-f401-4ae7-8044-13cecf8d24f2",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "8e944086-e92f-4d59-beee-3970a6f7278a",
+    "values": {
+      "latest": {
+        "ingress": 39915865.72757475,
+        "egress": 741437.5813953489
+      },
+      "mean": {
+        "ingress": 32622245.68774126,
+        "egress": 566723.0201890662
+      },
+      "max": {
+        "ingress": 94798610.90666667,
+        "egress": 1548736.2133333334
+      }
+    }
+  },
+  {
+    "scid": "8e9d94a9-6bbf-4e83-aba4-49d4891c944a",
+    "values": {
+      "latest": {
+        "ingress": 1383.52,
+        "egress": 140.02666666666667
+      },
+      "mean": {
+        "ingress": 1067.8284936559533,
+        "egress": 145.55141653401282
+      },
+      "max": {
+        "ingress": 7649.807308970099,
+        "egress": 191.25827814569536
+      }
+    }
+  },
+  {
+    "scid": "8eab03c0-40f2-4b92-a699-a5d392a53048",
+    "values": {
+      "latest": {
+        "ingress": 47853246491.638794,
+        "egress": 10886581844.494984
+      },
+      "mean": {
+        "ingress": 51126100193.02881,
+        "egress": 12371674766.35512
+      },
+      "max": {
+        "ingress": 95428967496.16,
+        "egress": 32090038569.727573
+      }
+    }
+  },
+  {
+    "scid": "8ec5c1d7-fa53-4ee4-900b-cd8a37e4de0a",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "8ed7798c-34f0-4e0f-8c77-1389086c961c",
+    "values": {
+      "latest": {
+        "ingress": 358277609.94666666,
+        "egress": 87202948.8
+      },
+      "mean": {
+        "ingress": 319126338.93425953,
+        "egress": 56847637.67570388
+      },
+      "max": {
+        "ingress": 657102187.8145696,
+        "egress": 127224074.49833886
+      }
+    }
+  },
+  {
+    "scid": "8ef1b7bc-c825-4f7b-82b6-405c2b7ae2c8",
+    "values": {
+      "latest": {
+        "ingress": 287.04318936877075,
+        "egress": 25.142857142857142
+      },
+      "mean": {
+        "ingress": 289.0123969095548,
+        "egress": 37.25425676848689
+      },
+      "max": {
+        "ingress": 329.28,
+        "egress": 43.16778523489933
+      }
+    }
+  },
+  {
+    "scid": "8f046b8b-a734-4422-b426-d21a16282266",
+    "values": {
+      "latest": {
+        "ingress": 3094695.8666666667,
+        "egress": 3189780.9066666667
+      },
+      "mean": {
+        "ingress": 4029663.5946225696,
+        "egress": 21875880.104440298
+      },
+      "max": {
+        "ingress": 7179464.106312293,
+        "egress": 406274584.72
+      }
+    }
+  },
+  {
+    "scid": "8f36dfef-9675-4fee-99ef-9c7de29e1627",
+    "values": {
+      "latest": {
+        "ingress": 578152130.08,
+        "egress": 1789733219.84
+      },
+      "mean": {
+        "ingress": 556388433.7510638,
+        "egress": 1283718940.3014443
+      },
+      "max": {
+        "ingress": 2346414108.4533334,
+        "egress": 4275670764.8160534
+      }
+    }
+  },
+  {
+    "scid": "8f385fb8-9070-4944-81cf-1fdc0117ffd1",
+    "values": {
+      "latest": {
+        "ingress": 123372998.98666666,
+        "egress": 2981442249.173333
+      },
+      "mean": {
+        "ingress": 29656642.01079534,
+        "egress": 1627561845.259539
+      },
+      "max": {
+        "ingress": 715459221.6722409,
+        "egress": 7831170452.1866665
+      }
+    }
+  },
+  {
+    "scid": "8f498cb0-f916-4847-9f30-77a9a7f0974d",
+    "values": {
+      "latest": {
+        "ingress": 247.81270903010034,
+        "egress": 737.257525083612
+      },
+      "mean": {
+        "ingress": 244.53292510080354,
+        "egress": 725.9193219527037
+      },
+      "max": {
+        "ingress": 389.156146179402,
+        "egress": 3980.2259136212624
+      }
+    }
+  },
+  {
+    "scid": "8f70add2-850b-404a-b5ac-0459957c3d09",
+    "values": {
+      "latest": {
+        "ingress": 186.70234113712374,
+        "egress": 1504.2943143812709
+      },
+      "mean": {
+        "ingress": 783.0931507447298,
+        "egress": 2886.513750628119
+      },
+      "max": {
+        "ingress": 14467.006711409396,
+        "egress": 220911.60132890366
+      }
+    }
+  },
+  {
+    "scid": "8f7f92c5-6968-4369-aa3b-dc23445bc0a1",
+    "values": {
+      "latest": {
+        "ingress": 244808.5298013245,
+        "egress": 36988.39735099338
+      },
+      "mean": {
+        "ingress": 169446.4583163779,
+        "egress": 36836.433426405056
+      },
+      "max": {
+        "ingress": 318902.3678929766,
+        "egress": 51231.86710963455
+      }
+    }
+  },
+  {
+    "scid": "8f80b196-5332-40b2-a35b-2ce2133e5f29",
+    "values": {
+      "latest": {
+        "ingress": 42275.73333333333,
+        "egress": 11494.053333333333
+      },
+      "mean": {
+        "ingress": 82275.70261661234,
+        "egress": 11600.797222352316
+      },
+      "max": {
+        "ingress": 11275937.302325582,
+        "egress": 96564.57142857143
+      }
+    }
+  },
+  {
+    "scid": "8fead412-5c89-4ddf-88ce-caa11fd6a796",
+    "values": {
+      "latest": {
+        "ingress": 355.3488372093023,
+        "egress": 13121140.970099667
+      },
+      "mean": {
+        "ingress": 357.34231041864575,
+        "egress": 11462357.711255193
+      },
+      "max": {
+        "ingress": 364.5298013245033,
+        "egress": 17536775.973421928
+      }
+    }
+  },
+  {
+    "scid": "90723412-846b-48ee-8ed5-4bf72c225dc0",
+    "values": {
+      "latest": {
+        "ingress": 3402494724.56,
+        "egress": 5784192865.013333
+      },
+      "mean": {
+        "ingress": 5349158253.727173,
+        "egress": 4026247534.017508
+      },
+      "max": {
+        "ingress": 13142954612.093023,
+        "egress": 10490611193.146667
+      }
+    }
+  },
+  {
+    "scid": "90e775c1-c48d-426c-b9a4-6c412ddff754",
+    "values": {
+      "latest": {
+        "ingress": 47430557589.404686,
+        "egress": 75986517818.22073
+      },
+      "mean": {
+        "ingress": 30956394769.357014,
+        "egress": 84427149070.77745
+      },
+      "max": {
+        "ingress": 81657784745.67442,
+        "egress": 126925799342.08
+      }
+    }
+  },
+  {
+    "scid": "91008b81-04a7-43d4-89cc-1140244d2487",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "9107e4f3-cb9d-4c23-a356-2aecf0974f4a",
+    "values": {
+      "latest": {
+        "ingress": 6954286.501672241,
+        "egress": 7954.996655518395
+      },
+      "mean": {
+        "ingress": 10030398.753137676,
+        "egress": 7872.900360476623
+      },
+      "max": {
+        "ingress": 125476176.98996656,
+        "egress": 8834.790697674418
+      }
+    }
+  },
+  {
+    "scid": "915247f2-026d-407e-bdb5-e5d272de411b",
+    "values": {
+      "latest": {
+        "ingress": 48556.82666666667,
+        "egress": 127115.76
+      },
+      "mean": {
+        "ingress": 48857.73177995011,
+        "egress": 128413.32114791263
+      },
+      "max": {
+        "ingress": 70497.83388704319,
+        "egress": 196150.00664451826
+      }
+    }
+  },
+  {
+    "scid": "916d1762-c571-4dbf-baf4-6a28c2f691ad",
+    "values": {
+      "latest": {
+        "ingress": 22654.675496688742,
+        "egress": 15373.059602649008
+      },
+      "mean": {
+        "ingress": 19135.6394751351,
+        "egress": 13732.274233908558
+      },
+      "max": {
+        "ingress": 26200.74418604651,
+        "egress": 17366.538205980065
+      }
+    }
+  },
+  {
+    "scid": "917627fa-d842-4216-b637-a60d4ffee805",
+    "values": {
+      "latest": {
+        "ingress": 588.5333333333333,
+        "egress": 842.5066666666667
+      },
+      "mean": {
+        "ingress": 582.3806514029163,
+        "egress": 842.4769299802026
+      },
+      "max": {
+        "ingress": 630.1866666666666,
+        "egress": 877.1178451178451
+      }
+    }
+  },
+  {
+    "scid": "917bf593-fd77-47e3-84cf-cf95cefe96da",
+    "values": {
+      "latest": {
+        "ingress": 131389.28,
+        "egress": 28612.293333333335
+      },
+      "mean": {
+        "ingress": 119612.38581528181,
+        "egress": 24387.682552048653
+      },
+      "max": {
+        "ingress": 244252.17275747508,
+        "egress": 63299.13621262459
+      }
+    }
+  },
+  {
+    "scid": "91ec5940-45f6-4372-9f88-0b8dbf90b5af",
+    "values": {
+      "latest": {
+        "ingress": 11962.0,
+        "egress": 30722.773333333334
+      },
+      "mean": {
+        "ingress": 8762.98424610233,
+        "egress": 10831.662928139383
+      },
+      "max": {
+        "ingress": 297964.4119601329,
+        "egress": 208067.14666666667
+      }
+    }
+  },
+  {
+    "scid": "923321c4-d3d9-4e95-9b63-d60f897bf720",
+    "values": {
+      "latest": {
+        "ingress": 78.61794019933555,
+        "egress": 4011.7740863787376
+      },
+      "mean": {
+        "ingress": 81.97093285731309,
+        "egress": 10010.580201395382
+      },
+      "max": {
+        "ingress": 152.8,
+        "egress": 37569.05960264901
+      }
+    }
+  },
+  {
+    "scid": "924d8f89-e625-408c-9c00-4f98283d6911",
+    "values": {
+      "latest": {
+        "ingress": 203.02341137123747,
+        "egress": 273.9799331103679
+      },
+      "mean": {
+        "ingress": 235.11745841912676,
+        "egress": 277.1666460487904
+      },
+      "max": {
+        "ingress": 1839.2558139534883,
+        "egress": 643.641196013289
+      }
+    }
+  },
+  {
+    "scid": "92512f10-1f81-4902-bbb6-09242f8bbb82",
+    "values": {
+      "latest": {
+        "ingress": 331140.9066666667,
+        "egress": 104936.96
+      },
+      "mean": {
+        "ingress": 353397.4756819827,
+        "egress": 147970.17299922975
+      },
+      "max": {
+        "ingress": 982816.1872909699,
+        "egress": 523810.56
+      }
+    }
+  },
+  {
+    "scid": "92cbb48c-6658-4a43-8d41-114d0f4f489a",
+    "values": {
+      "latest": {
+        "ingress": 10871.333333333334,
+        "egress": 3471.8133333333335
+      },
+      "mean": {
+        "ingress": 7452.849657449818,
+        "egress": 3429.199928155186
+      },
+      "max": {
+        "ingress": 25010.746666666666,
+        "egress": 12726.51655629139
+      }
+    }
+  },
+  {
+    "scid": "92ddf792-8433-4c93-9168-87bc6a314426",
+    "values": {
+      "latest": {
+        "ingress": 1609689.5681063123,
+        "egress": 5466.019933554818
+      },
+      "mean": {
+        "ingress": 4286998.480426853,
+        "egress": 5393.085201930188
+      },
+      "max": {
+        "ingress": 85673884.46511628,
+        "egress": 12875.386666666667
+      }
+    }
+  },
+  {
+    "scid": "93055442-d0a4-4fd5-b62e-b618140d5d7f",
+    "values": {
+      "latest": {
+        "ingress": 58426.15282392027,
+        "egress": 20300.730897009966
+      },
+      "mean": {
+        "ingress": 117081.41451698238,
+        "egress": 19559.513478104865
+      },
+      "max": {
+        "ingress": 339159.6533333333,
+        "egress": 32644.225913621263
+      }
+    }
+  },
+  {
+    "scid": "93138f6d-c0f7-403e-b3ea-faa694106c5d",
+    "values": {
+      "latest": {
+        "ingress": 385568.74666666664,
+        "egress": 80969.76
+      },
+      "mean": {
+        "ingress": 39464125.62047141,
+        "egress": 10558033.605676355
+      },
+      "max": {
+        "ingress": 935979143.8936877,
+        "egress": 383603733.9003322
+      }
+    }
+  },
+  {
+    "scid": "9315df0b-3984-4e2a-b3de-77df4720efaf",
+    "values": {
+      "latest": {
+        "ingress": 251542.58193979933,
+        "egress": 79835.85284280937
+      },
+      "mean": {
+        "ingress": 3475196.759359906,
+        "egress": 112614.10010135006
+      },
+      "max": {
+        "ingress": 161899713.92,
+        "egress": 1712630.1333333333
+      }
+    }
+  },
+  {
+    "scid": "931ba49d-f849-4277-9820-bc22a7719a6f",
+    "values": {
+      "latest": {
+        "ingress": 66229419.733333334,
+        "egress": 341094433.12
+      },
+      "mean": {
+        "ingress": 97939756.21678653,
+        "egress": 652927934.8813424
+      },
+      "max": {
+        "ingress": 305855646.4318937,
+        "egress": 5704706532.4
+      }
+    }
+  },
+  {
+    "scid": "933cbcbd-11ed-4e5a-9d19-78d122cfa02b",
+    "values": {
+      "latest": {
+        "ingress": 968751.0933333334,
+        "egress": 266574.5333333333
+      },
+      "mean": {
+        "ingress": 1524942.974116257,
+        "egress": 304086.4797025556
+      },
+      "max": {
+        "ingress": 12208598.506666666,
+        "egress": 691448.6133333333
+      }
+    }
+  },
+  {
+    "scid": "9344e3d4-0995-4dee-8ee9-e70ed3e738e1",
+    "values": {
+      "latest": {
+        "ingress": 58570477.31561462,
+        "egress": 7484459214.750831
+      },
+      "mean": {
+        "ingress": 71620460.9498699,
+        "egress": 3421578265.1197443
+      },
+      "max": {
+        "ingress": 196811053.66112956,
+        "egress": 12301676891.2
+      }
+    }
+  },
+  {
+    "scid": "934b5710-520d-4c56-968d-8476eb301870",
+    "values": {
+      "latest": {
+        "ingress": 4664127244.373333,
+        "egress": 1122699667.2266667
+      },
+      "mean": {
+        "ingress": 2236624727.835913,
+        "egress": 652759074.1556417
+      },
+      "max": {
+        "ingress": 6375023237.980066,
+        "egress": 1267271268.0
+      }
+    }
+  },
+  {
+    "scid": "935b6fd4-14e0-4faa-ab4c-4bdf120fade2",
+    "values": {
+      "latest": {
+        "ingress": 447.62666666666667,
+        "egress": 11172645.04
+      },
+      "mean": {
+        "ingress": 519.0748390684165,
+        "egress": 9760008.400306294
+      },
+      "max": {
+        "ingress": 13246.059800664452,
+        "egress": 19435725.786666665
+      }
+    }
+  },
+  {
+    "scid": "938b2901-6630-4f0b-8c1f-5e00b66ebb7c",
+    "values": {
+      "latest": {
+        "ingress": 5094553232.48,
+        "egress": 3848697758.64
+      },
+      "mean": {
+        "ingress": 4283676482.907833,
+        "egress": 6065752440.805127
+      },
+      "max": {
+        "ingress": 6577050671.747088,
+        "egress": 11683088651.760798
+      }
+    }
+  },
+  {
+    "scid": "93eebe3a-4fdd-4d4a-9e81-ca23690ee5ed",
+    "values": {
+      "latest": {
+        "ingress": 2705551953.09699,
+        "egress": 790712181.5384616
+      },
+      "mean": {
+        "ingress": 1538802525.4718814,
+        "egress": 823941628.6676327
+      },
+      "max": {
+        "ingress": 3056586981.44,
+        "egress": 1467724670.5866666
+      }
+    }
+  },
+  {
+    "scid": "940cf557-39dc-4140-a2e5-df9871cca828",
+    "values": {
+      "latest": {
+        "ingress": 1020.3466666666667,
+        "egress": 1290.9866666666667
+      },
+      "mean": {
+        "ingress": 935.3649753790648,
+        "egress": 1267.9865882865365
+      },
+      "max": {
+        "ingress": 1130.8752079866888,
+        "egress": 1464.9302325581396
+      }
+    }
+  },
+  {
+    "scid": "9448d35b-055a-4c9a-9e93-c62b4d0753e6",
+    "values": {
+      "latest": {
+        "ingress": 214.64451827242524,
+        "egress": 1261.8471760797343
+      },
+      "mean": {
+        "ingress": 1643.843272971397,
+        "egress": 1394.9484217870738
+      },
+      "max": {
+        "ingress": 15437.973333333333,
+        "egress": 3837.4933333333333
+      }
+    }
+  },
+  {
+    "scid": "94d4cda8-8527-4e9d-bb01-9769c302f118",
+    "values": {
+      "latest": {
+        "ingress": 87.78666666666666,
+        "egress": 108.58666666666667
+      },
+      "mean": {
+        "ingress": 92.57270266486648,
+        "egress": 113.64394016658564
+      },
+      "max": {
+        "ingress": 249.5973377703827,
+        "egress": 133.73710482529117
+      }
+    }
+  },
+  {
+    "scid": "952a8701-3ca0-45ee-9b6a-a2890581bc23",
+    "values": {
+      "latest": {
+        "ingress": 1739.531772575251,
+        "egress": 2650.7290969899664
+      },
+      "mean": {
+        "ingress": 1747.3361607214795,
+        "egress": 2699.2806658637587
+      },
+      "max": {
+        "ingress": 1834.3388704318936,
+        "egress": 2944.4309764309764
+      }
+    }
+  },
+  {
+    "scid": "9535fce0-e586-420b-a044-f24df712a585",
+    "values": {
+      "latest": {
+        "ingress": 276821818.27424747,
+        "egress": 41542387.90635452
+      },
+      "mean": {
+        "ingress": 192896303.5994629,
+        "egress": 51849882.28878706
+      },
+      "max": {
+        "ingress": 963876125.2093023,
+        "egress": 388376004.4147157
+      }
+    }
+  },
+  {
+    "scid": "95433ca9-9978-4791-844a-64e3f8e2296b",
+    "values": {
+      "latest": {
+        "ingress": 2049855063.2026577,
+        "egress": 133355692.30564784
+      },
+      "mean": {
+        "ingress": 1546431152.658864,
+        "egress": 160426784.4623476
+      },
+      "max": {
+        "ingress": 2472499811.5083055,
+        "egress": 481998544.32
+      }
+    }
+  },
+  {
+    "scid": "954f1e38-cabb-4cf8-aa16-32fa65314c32",
+    "values": {
+      "latest": {
+        "ingress": 2608669240.56,
+        "egress": 219245176.93333334
+      },
+      "mean": {
+        "ingress": 2590307469.217901,
+        "egress": 416236100.3055219
+      },
+      "max": {
+        "ingress": 10424186148.225914,
+        "egress": 12475222024.45033
+      }
+    }
+  },
+  {
+    "scid": "9562b13c-43a3-4e63-8b59-77a18b7e8602",
+    "values": {
+      "latest": {
+        "ingress": 73787.3712374582,
+        "egress": 40356.78929765886
+      },
+      "mean": {
+        "ingress": 37678.16290384327,
+        "egress": 57402.29015615638
+      },
+      "max": {
+        "ingress": 194585.10891089108,
+        "egress": 246106.26666666666
+      }
+    }
+  },
+  {
+    "scid": "957ef638-c8c8-41cb-a2db-26a431b253c9",
+    "values": {
+      "latest": {
+        "ingress": 228.21333333333334,
+        "egress": 633.9466666666667
+      },
+      "mean": {
+        "ingress": 228.08878187418236,
+        "egress": 576.5145255438204
+      },
+      "max": {
+        "ingress": 237.78666666666666,
+        "egress": 725.5466666666666
+      }
+    }
+  },
+  {
+    "scid": "95d88f6d-70d5-4c17-8f0b-38c15c6aa57d",
+    "values": {
+      "latest": {
+        "ingress": 906481662.4533334,
+        "egress": 1931168783.9733334
+      },
+      "mean": {
+        "ingress": 1013576546.5736432,
+        "egress": 1773814255.3626359
+      },
+      "max": {
+        "ingress": 2119950947.295681,
+        "egress": 2677407346.4717607
+      }
+    }
+  },
+  {
+    "scid": "95ed5990-332b-49eb-87e8-beafde03260a",
+    "values": {
+      "latest": {
+        "ingress": 431.25083612040135,
+        "egress": 412.68227424749165
+      },
+      "mean": {
+        "ingress": 108179.72115817248,
+        "egress": 1053.5041585774334
+      },
+      "max": {
+        "ingress": 26302109.28,
+        "egress": 166930.32
+      }
+    }
+  },
+  {
+    "scid": "9622bc35-cc9c-4c41-8b12-cfef77399a13",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.1647971585637862,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 1.979933110367893,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "968d6d88-88b8-4238-a46b-d927fc259148",
+    "values": {
+      "latest": {
+        "ingress": 14223493715.573334,
+        "egress": 4943773015.386666
+      },
+      "mean": {
+        "ingress": 26434544416.708862,
+        "egress": 4263516540.3849063
+      },
+      "max": {
+        "ingress": 56385501516.53333,
+        "egress": 8021302886.225165
+      }
+    }
+  },
+  {
+    "scid": "96fb0fd8-3a12-409d-99fa-c50dd0d3aea9",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "9704ae6b-f7d1-458a-b07f-3e44409e1e34",
+    "values": {
+      "latest": {
+        "ingress": 971.8145695364238,
+        "egress": 1934.1192052980132
+      },
+      "mean": {
+        "ingress": 976.7171638401802,
+        "egress": 1975.592176616697
+      },
+      "max": {
+        "ingress": 1012.3853820598007,
+        "egress": 2250.6312292358803
+      }
+    }
+  },
+  {
+    "scid": "973c5570-4763-413f-910d-76aa459b8ccd",
+    "values": {
+      "latest": {
+        "ingress": 34786.37333333334,
+        "egress": 160248.4
+      },
+      "mean": {
+        "ingress": 30059.87588828152,
+        "egress": 161519.88386221873
+      },
+      "max": {
+        "ingress": 55104.1872909699,
+        "egress": 295137.0933333333
+      }
+    }
+  },
+  {
+    "scid": "975af3bd-a397-49cc-8065-88e13f9f800a",
+    "values": {
+      "latest": {
+        "ingress": 434779.5496688742,
+        "egress": 506159.44370860927
+      },
+      "mean": {
+        "ingress": 542869.0698187765,
+        "egress": 2024554.0110120536
+      },
+      "max": {
+        "ingress": 2514014.4584717606,
+        "egress": 46573490.50249584
+      }
+    }
+  },
+  {
+    "scid": "975d5c74-2359-4e29-81f7-34397dbee8e7",
+    "values": {
+      "latest": {
+        "ingress": 18330148655.36,
+        "egress": 27877485603.413334
+      },
+      "mean": {
+        "ingress": 11060110164.285503,
+        "egress": 28363644365.046013
+      },
+      "max": {
+        "ingress": 37299937804.8,
+        "egress": 101680099295.04
+      }
+    }
+  },
+  {
+    "scid": "977c1df1-97f8-4e9b-a373-59f68fc961cb",
+    "values": {
+      "latest": {
+        "ingress": 94191514.16722408,
+        "egress": 505769731.5585284
+      },
+      "mean": {
+        "ingress": 111893279.59159003,
+        "egress": 309819204.5655194
+      },
+      "max": {
+        "ingress": 397979051.84,
+        "egress": 1021763395.0067114
+      }
+    }
+  },
+  {
+    "scid": "97c84b65-35e7-4bb3-8302-937ea8918d3e",
+    "values": {
+      "latest": {
+        "ingress": 7940.173913043478,
+        "egress": 6951026.8361204015
+      },
+      "mean": {
+        "ingress": 7873.1652106292595,
+        "egress": 10032754.324026769
+      },
+      "max": {
+        "ingress": 8762.205980066445,
+        "egress": 125031844.96
+      }
+    }
+  },
+  {
+    "scid": "97d2f1b1-a483-4737-a2f5-a42a803e6bd1",
+    "values": {
+      "latest": {
+        "ingress": 5441.801324503312,
+        "egress": 405.2450331125828
+      },
+      "mean": {
+        "ingress": 3766.8138444124447,
+        "egress": 544.5756380676298
+      },
+      "max": {
+        "ingress": 5662.5647840531565,
+        "egress": 857.9667774086379
+      }
+    }
+  },
+  {
+    "scid": "981b4457-5638-489b-b34d-bc90993efcff",
+    "values": {
+      "latest": {
+        "ingress": 1770016.18729097,
+        "egress": 5964915.531772575
+      },
+      "mean": {
+        "ingress": 1894924.6147404122,
+        "egress": 5637052.509971035
+      },
+      "max": {
+        "ingress": 21010064.58862876,
+        "egress": 10525129.953177258
+      }
+    }
+  },
+  {
+    "scid": "983bd0c5-b104-4588-9883-63090595a48d",
+    "values": {
+      "latest": {
+        "ingress": 1641.6,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 1640.8738147532285,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 1660.8,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "9872666b-3b5c-431f-ac3e-42d979418bcb",
+    "values": {
+      "latest": {
+        "ingress": 3904.8026755852843,
+        "egress": 3301.190635451505
+      },
+      "mean": {
+        "ingress": 3513.298383133486,
+        "egress": 3559.8712419837743
+      },
+      "max": {
+        "ingress": 4198.4,
+        "egress": 78935.49333333333
+      }
+    }
+  },
+  {
+    "scid": "987c3d30-3dde-4ea3-8fd0-946278c26264",
+    "values": {
+      "latest": {
+        "ingress": 15386572.026666667,
+        "egress": 5680894.08
+      },
+      "mean": {
+        "ingress": 7264591.305916926,
+        "egress": 9967018.550541399
+      },
+      "max": {
+        "ingress": 25646543.226666667,
+        "egress": 111674572.84525791
+      }
+    }
+  },
+  {
+    "scid": "98b9312c-12e8-4ffd-a1b5-adabb93dd1cd",
+    "values": {
+      "latest": {
+        "ingress": 98651778.51505017,
+        "egress": 602776432.4013377
+      },
+      "mean": {
+        "ingress": 194026738.51128703,
+        "egress": 488717690.9976974
+      },
+      "max": {
+        "ingress": 1278359414.1986754,
+        "egress": 1882266340.013289
+      }
+    }
+  },
+  {
+    "scid": "98d4b8ea-6b9d-44a0-be08-96b26cfbe6ac",
+    "values": {
+      "latest": {
+        "ingress": 1581.7066666666667,
+        "egress": 772.4
+      },
+      "mean": {
+        "ingress": 10402.404442167777,
+        "egress": 732.7910326787653
+      },
+      "max": {
+        "ingress": 2519435.0933333333,
+        "egress": 1464.72
+      }
+    }
+  },
+  {
+    "scid": "999bff17-ee62-4159-b308-f628b969d11c",
+    "values": {
+      "latest": {
+        "ingress": 101471.86622073578,
+        "egress": 382035.9866220736
+      },
+      "mean": {
+        "ingress": 87019.50717396798,
+        "egress": 307832.08512774383
+      },
+      "max": {
+        "ingress": 277085.84,
+        "egress": 581548.5333333333
+      }
+    }
+  },
+  {
+    "scid": "99b3ff19-c603-4bb9-b3f9-baa332d17668",
+    "values": {
+      "latest": {
+        "ingress": 5111895.36,
+        "egress": 1070452.2933333332
+      },
+      "mean": {
+        "ingress": 4201948.0658051185,
+        "egress": 793971.4606202306
+      },
+      "max": {
+        "ingress": 5195866.346666667,
+        "egress": 2547995.242524917
+      }
+    }
+  },
+  {
+    "scid": "99cad702-0337-407d-8ee8-99944be56e9f",
+    "values": {
+      "latest": {
+        "ingress": 10365414298.506666,
+        "egress": 14126943491.573334
+      },
+      "mean": {
+        "ingress": 4276039784.5472527,
+        "egress": 17484860942.289158
+      },
+      "max": {
+        "ingress": 23712299674.702164,
+        "egress": 43431619215.5208
+      }
+    }
+  },
+  {
+    "scid": "99fae9f9-ebd0-4249-b514-debd4f8c53c7",
+    "values": {
+      "latest": {
+        "ingress": 5021423733.333333,
+        "egress": 9527882592.106667
+      },
+      "mean": {
+        "ingress": 8412555216.5064945,
+        "egress": 6548145264.230541
+      },
+      "max": {
+        "ingress": 40010492348.896324,
+        "egress": 19505223866.70199
+      }
+    }
+  },
+  {
+    "scid": "9a256c19-4882-49c8-981e-cf901d29049c",
+    "values": {
+      "latest": {
+        "ingress": 29203214922.8,
+        "egress": 13470500742.88
+      },
+      "mean": {
+        "ingress": 17691245179.634922,
+        "egress": 16607576550.670467
+      },
+      "max": {
+        "ingress": 58031912249.009964,
+        "egress": 89236406975.14381
+      }
+    }
+  },
+  {
+    "scid": "9addc483-3867-425e-b25d-095b96d2ceaf",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "9affe5a5-f371-4a4e-8ecc-610008067eb7",
+    "values": {
+      "latest": {
+        "ingress": 1294732973.7257526,
+        "egress": 1258152769.2040133
+      },
+      "mean": {
+        "ingress": 1550601303.0823798,
+        "egress": 1893019750.1887798
+      },
+      "max": {
+        "ingress": 4835877907.003323,
+        "egress": 6351482233.150501
+      }
+    }
+  },
+  {
+    "scid": "9b10ab6d-ac6a-4999-ab32-b81bd54413fd",
+    "values": {
+      "latest": {
+        "ingress": 1374.2781456953642,
+        "egress": 6147826.781456954
+      },
+      "mean": {
+        "ingress": 1492.5707875122343,
+        "egress": 5984977.694046324
+      },
+      "max": {
+        "ingress": 4128.8533333333335,
+        "egress": 8043193.8133333335
+      }
+    }
+  },
+  {
+    "scid": "9bedca61-682b-4dc8-822d-a643f0b39986",
+    "values": {
+      "latest": {
+        "ingress": 1182174639.76,
+        "egress": 35466252.053333335
+      },
+      "mean": {
+        "ingress": 473972129.9844338,
+        "egress": 29145886.357803073
+      },
+      "max": {
+        "ingress": 3890562393.866667,
+        "egress": 255246774.29333332
+      }
+    }
+  },
+  {
+    "scid": "9d127fd3-05d2-40a9-9eea-0a236f1ee65f",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 73527123.93355481
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 39832327.25727937
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 86348665.46666667
+      }
+    }
+  },
+  {
+    "scid": "9d24ca58-1eb8-4465-89d7-b1b6ab69e62c",
+    "values": {
+      "latest": {
+        "ingress": 109.04983388704319,
+        "egress": 113.72757475083057
+      },
+      "mean": {
+        "ingress": 107.6258204300368,
+        "egress": 112.22558417637339
+      },
+      "max": {
+        "ingress": 119.36,
+        "egress": 124.48
+      }
+    }
+  },
+  {
+    "scid": "9d8d7def-8883-4db7-8d7a-34b17ad0efff",
+    "values": {
+      "latest": {
+        "ingress": 1849.04,
+        "egress": 750.6666666666666
+      },
+      "mean": {
+        "ingress": 3154.9104499051455,
+        "egress": 956.8634978144652
+      },
+      "max": {
+        "ingress": 12120.186666666666,
+        "egress": 2651.4515050167224
+      }
+    }
+  },
+  {
+    "scid": "9dd89ef5-b26a-4f63-aa08-ab3a3b0b9de1",
+    "values": {
+      "latest": {
+        "ingress": 30392339965.44,
+        "egress": 15219871583.68
+      },
+      "mean": {
+        "ingress": 21352069337.852863,
+        "egress": 18286664237.047417
+      },
+      "max": {
+        "ingress": 75353957021.57333,
+        "egress": 90269690682.46153
+      }
+    }
+  },
+  {
+    "scid": "9df568bd-ca1a-4c27-b183-f1d4fbfb178b",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "9e0297f7-e544-48f7-97f3-f3476967ff78",
+    "values": {
+      "latest": {
+        "ingress": 69373577.49333334,
+        "egress": 57418367.28
+      },
+      "mean": {
+        "ingress": 208795198.3710468,
+        "egress": 111585820.77465124
+      },
+      "max": {
+        "ingress": 346494701.6,
+        "egress": 391647550.7508306
+      }
+    }
+  },
+  {
+    "scid": "9e27aae3-41f4-4bc5-8159-718a51569501",
+    "values": {
+      "latest": {
+        "ingress": 413892073.12,
+        "egress": 1381570679.12
+      },
+      "mean": {
+        "ingress": 473212023.1412412,
+        "egress": 454508070.3507709
+      },
+      "max": {
+        "ingress": 2008548636.6511629,
+        "egress": 8423484306.986667
+      }
+    }
+  },
+  {
+    "scid": "9e6e1a2a-afb6-47d2-a9c8-0a4828adac66",
+    "values": {
+      "latest": {
+        "ingress": 2502265256.613333,
+        "egress": 162293349.38666666
+      },
+      "mean": {
+        "ingress": 1573134397.1237173,
+        "egress": 86660464.59453641
+      },
+      "max": {
+        "ingress": 2502265256.613333,
+        "egress": 180222225.5946844
+      }
+    }
+  },
+  {
+    "scid": "9e8a8143-bdee-431e-80e8-6b8d01d9ba82",
+    "values": {
+      "latest": {
+        "ingress": 4909.12,
+        "egress": 3288.5866666666666
+      },
+      "mean": {
+        "ingress": 4871.053295416653,
+        "egress": 3374.0172406439483
+      },
+      "max": {
+        "ingress": 5625.2,
+        "egress": 3607.28
+      }
+    }
+  },
+  {
+    "scid": "9eac97b5-b3a8-4031-9a50-6925259a3cbf",
+    "values": {
+      "latest": {
+        "ingress": 29924361347.58804,
+        "egress": 30882916148.385384
+      },
+      "mean": {
+        "ingress": 42902947265.77898,
+        "egress": 12142543607.510298
+      },
+      "max": {
+        "ingress": 106553907217.92,
+        "egress": 43227756203.333336
+      }
+    }
+  },
+  {
+    "scid": "9ee39dd4-eb34-41f1-a4bd-6de95361aca8",
+    "values": {
+      "latest": {
+        "ingress": 69.20930232558139,
+        "egress": 79941075.21594684
+      },
+      "mean": {
+        "ingress": 66.5037026731893,
+        "egress": 107197481.86931305
+      },
+      "max": {
+        "ingress": 78.56,
+        "egress": 172956417.46179402
+      }
+    }
+  },
+  {
+    "scid": "9efecc9d-f8d5-4fcb-8d4d-8e8b9e864fa5",
+    "values": {
+      "latest": {
+        "ingress": 2128786976.347826,
+        "egress": 1178628064.3210702
+      },
+      "mean": {
+        "ingress": 1792922681.7390685,
+        "egress": 1386115795.7092981
+      },
+      "max": {
+        "ingress": 23400693443.344482,
+        "egress": 2809914405.6375837
+      }
+    }
+  },
+  {
+    "scid": "a0335d99-4571-4769-8377-590ce191c564",
+    "values": {
+      "latest": {
+        "ingress": 1244458734.8533332,
+        "egress": 1251264670.08
+      },
+      "mean": {
+        "ingress": 1017947757.2201476,
+        "egress": 1620068660.669807
+      },
+      "max": {
+        "ingress": 2062025800.4518273,
+        "egress": 6252310849.52
+      }
+    }
+  },
+  {
+    "scid": "a0728b5d-5a68-4b81-8c38-6360a1b0ff62",
+    "values": {
+      "latest": {
+        "ingress": 53110292.4,
+        "egress": 156949774.45333335
+      },
+      "mean": {
+        "ingress": 96044013.56640932,
+        "egress": 119205513.99193844
+      },
+      "max": {
+        "ingress": 756136868.8106313,
+        "egress": 798522500.4651163
+      }
+    }
+  },
+  {
+    "scid": "a09dda66-6143-4e0a-a4b9-deb8db939104",
+    "values": {
+      "latest": {
+        "ingress": 52707453922.88,
+        "egress": 8692446713.093334
+      },
+      "mean": {
+        "ingress": 53393915758.82167,
+        "egress": 10034843186.796076
+      },
+      "max": {
+        "ingress": 98129884761.01334,
+        "egress": 27462248793.146667
+      }
+    }
+  },
+  {
+    "scid": "a0b6b955-bdc4-4170-a324-6af417268420",
+    "values": {
+      "latest": {
+        "ingress": 23.2,
+        "egress": 132.29333333333332
+      },
+      "mean": {
+        "ingress": 23.276191526856834,
+        "egress": 129.86064072702635
+      },
+      "max": {
+        "ingress": 25.52,
+        "egress": 143.8405315614618
+      }
+    }
+  },
+  {
+    "scid": "a0d133c9-4497-4d9d-bf01-3993cb69217e",
+    "values": {
+      "latest": {
+        "ingress": 10220.746666666666,
+        "egress": 138526522.98666668
+      },
+      "mean": {
+        "ingress": 10089.379849147752,
+        "egress": 103625620.51178561
+      },
+      "max": {
+        "ingress": 11123.827242524916,
+        "egress": 432260886.538206
+      }
+    }
+  },
+  {
+    "scid": "a0f039ab-d90d-4271-bcb8-ab4a96687db6",
+    "values": {
+      "latest": {
+        "ingress": 4736.026490066225,
+        "egress": 4307.23178807947
+      },
+      "mean": {
+        "ingress": 5125.505842657073,
+        "egress": 6728.6592706775655
+      },
+      "max": {
+        "ingress": 16815.28,
+        "egress": 198101.12
+      }
+    }
+  },
+  {
+    "scid": "a0f73cb8-d5bf-4b4f-baf7-2cd94ff3acac",
+    "values": {
+      "latest": {
+        "ingress": 931.0666666666667,
+        "egress": 838.32
+      },
+      "mean": {
+        "ingress": 925.6031127110756,
+        "egress": 837.7367380808894
+      },
+      "max": {
+        "ingress": 943.1466666666666,
+        "egress": 845.84
+      }
+    }
+  },
+  {
+    "scid": "a1015a70-0db4-4c21-bc9b-b4dcb63771a9",
+    "values": {
+      "latest": {
+        "ingress": 681.12,
+        "egress": 1330.5866666666666
+      },
+      "mean": {
+        "ingress": 727.8424245457118,
+        "egress": 1334.7813397568727
+      },
+      "max": {
+        "ingress": 890.9235880398671,
+        "egress": 1382.728476821192
+      }
+    }
+  },
+  {
+    "scid": "a11214f3-cb4f-47fe-a55f-85877a35cc58",
+    "values": {
+      "latest": {
+        "ingress": 45300.4,
+        "egress": 1862.64
+      },
+      "mean": {
+        "ingress": 3152.525381534012,
+        "egress": 1993.3848701930594
+      },
+      "max": {
+        "ingress": 197773.12,
+        "egress": 6813.44
+      }
+    }
+  },
+  {
+    "scid": "a13b95b3-aa03-496e-9c8b-acc50fbacb99",
+    "values": {
+      "latest": {
+        "ingress": 19993220248.026577,
+        "egress": 15666788680.53156
+      },
+      "mean": {
+        "ingress": 20179249920.44294,
+        "egress": 17749478098.084538
+      },
+      "max": {
+        "ingress": 53054098375.6,
+        "egress": 55864567816.31788
+      }
+    }
+  },
+  {
+    "scid": "a13bc58d-b6d4-4356-9583-96669d1ad485",
+    "values": {
+      "latest": {
+        "ingress": 10580418405.966555,
+        "egress": 10800604229.431438
+      },
+      "mean": {
+        "ingress": 6321193487.600573,
+        "egress": 3308320062.959795
+      },
+      "max": {
+        "ingress": 10836103562.578074,
+        "egress": 14893208424.106312
+      }
+    }
+  },
+  {
+    "scid": "a14205cc-9bb6-421c-a796-2b1195f41e56",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 32.42666666666667
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 34.24995385483864
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 37.54666666666667
+      }
+    }
+  },
+  {
+    "scid": "a147c6bc-88ae-41f3-8a49-93083ef267a8",
+    "values": {
+      "latest": {
+        "ingress": 13997922.826666666,
+        "egress": 47135258.48
+      },
+      "mean": {
+        "ingress": 268062240.7022369,
+        "egress": 520570581.7606645
+      },
+      "max": {
+        "ingress": 2404283787.866667,
+        "egress": 2835284662.769231
+      }
+    }
+  },
+  {
+    "scid": "a1518382-42c3-4387-ad7b-070f2b02a342",
+    "values": {
+      "latest": {
+        "ingress": 364135297.0631229,
+        "egress": 845718512.0797342
+      },
+      "mean": {
+        "ingress": 415703132.5083673,
+        "egress": 948247811.7517661
+      },
+      "max": {
+        "ingress": 893761376.48,
+        "egress": 2013981412.0
+      }
+    }
+  },
+  {
+    "scid": "a181a454-92a0-4415-887a-f88e829e9778",
+    "values": {
+      "latest": {
+        "ingress": 148.53333333333333,
+        "egress": 4755.866666666667
+      },
+      "mean": {
+        "ingress": 165.6488857061997,
+        "egress": 1099.9117948594117
+      },
+      "max": {
+        "ingress": 428.06644518272424,
+        "egress": 14946.40931780366
+      }
+    }
+  },
+  {
+    "scid": "a1bfe136-6c25-4349-8ba3-46d23c2e76e1",
+    "values": {
+      "latest": {
+        "ingress": 2430146155.5585284,
+        "egress": 9487445015.759197
+      },
+      "mean": {
+        "ingress": 1686652198.710997,
+        "egress": 5735338409.118554
+      },
+      "max": {
+        "ingress": 2651884542.0468225,
+        "egress": 10058626334.591362
+      }
+    }
+  },
+  {
+    "scid": "a1cdca5b-85e1-45a0-85dc-688ffdacc959",
+    "values": {
+      "latest": {
+        "ingress": 135.3112582781457,
+        "egress": 585.8807947019867
+      },
+      "mean": {
+        "ingress": 105.45363600855511,
+        "egress": 435.34553204014446
+      },
+      "max": {
+        "ingress": 471.12292358803984,
+        "egress": 5312.32
+      }
+    }
+  },
+  {
+    "scid": "a1e14ab7-d48d-444b-99ff-9357dd028650",
+    "values": {
+      "latest": {
+        "ingress": 144.80267558528428,
+        "egress": 695.571906354515
+      },
+      "mean": {
+        "ingress": 143.6706187905738,
+        "egress": 692.8037711381247
+      },
+      "max": {
+        "ingress": 286.83056478405314,
+        "egress": 3950.5116279069766
+      }
+    }
+  },
+  {
+    "scid": "a240aa5d-cc1d-4b60-9f7a-11637797c670",
+    "values": {
+      "latest": {
+        "ingress": 28.066889632107024,
+        "egress": 559.4113712374582
+      },
+      "mean": {
+        "ingress": 28.538934261554978,
+        "egress": 486.64715209640485
+      },
+      "max": {
+        "ingress": 32.32,
+        "egress": 825.4983277591973
+      }
+    }
+  },
+  {
+    "scid": "a26cad83-788b-441d-a3d8-aa5efd763613",
+    "values": {
+      "latest": {
+        "ingress": 339536.4266666667,
+        "egress": 505896988.9866667
+      },
+      "mean": {
+        "ingress": 136118672.88765743,
+        "egress": 165557643.8621845
+      },
+      "max": {
+        "ingress": 3358928158.8,
+        "egress": 1528154703.92
+      }
+    }
+  },
+  {
+    "scid": "a2d826bf-fe04-48a3-b0e2-36fa514d77dc",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 22.14569536423841
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 16.483970508720866
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 22.367892976588628
+      }
+    }
+  },
+  {
+    "scid": "a2ec23d0-56dd-4896-84df-c01501760271",
+    "values": {
+      "latest": {
+        "ingress": 312094.9866666667,
+        "egress": 79799.49333333333
+      },
+      "mean": {
+        "ingress": 300173.0816092844,
+        "egress": 86980.11687237346
+      },
+      "max": {
+        "ingress": 571638.9565217391,
+        "egress": 247978.96989966556
+      }
+    }
+  },
+  {
+    "scid": "a3005403-d0de-4025-b0dd-1e8a35ac3962",
+    "values": {
+      "latest": {
+        "ingress": 13997708.346666666,
+        "egress": 47145478.10666667
+      },
+      "mean": {
+        "ingress": 268062041.50370884,
+        "egress": 520570875.9200754
+      },
+      "max": {
+        "ingress": 2389464836.266667,
+        "egress": 2835276164.040134
+      }
+    }
+  },
+  {
+    "scid": "a322c093-b337-4680-a25a-1f0465b080ff",
+    "values": {
+      "latest": {
+        "ingress": 564752.8266666667,
+        "egress": 64447706.50666667
+      },
+      "mean": {
+        "ingress": 77404584.67227611,
+        "egress": 63775958.18326018
+      },
+      "max": {
+        "ingress": 3017783686.9333334,
+        "egress": 234191542.93333334
+      }
+    }
+  },
+  {
+    "scid": "a33c7189-776e-4d9d-897c-9add7ed7e206",
+    "values": {
+      "latest": {
+        "ingress": 37.25333333333333,
+        "egress": 79047682.50666666
+      },
+      "mean": {
+        "ingress": 48.83472656071444,
+        "egress": 37714971.42821869
+      },
+      "max": {
+        "ingress": 1226.8086522462563,
+        "egress": 934894639.0282862
+      }
+    }
+  },
+  {
+    "scid": "a3af7ce3-592e-4fd4-a0a2-91dd653e174e",
+    "values": {
+      "latest": {
+        "ingress": 104621.11036789298,
+        "egress": 36091.31772575251
+      },
+      "mean": {
+        "ingress": 94869.77691165089,
+        "egress": 459375.87216984417
+      },
+      "max": {
+        "ingress": 7504883.295681063,
+        "egress": 8102165.6688741725
+      }
+    }
+  },
+  {
+    "scid": "a3ee647f-7a30-461f-af23-e5c3a74ea6d9",
+    "values": {
+      "latest": {
+        "ingress": 18452.613333333335,
+        "egress": 424769909.17333335
+      },
+      "mean": {
+        "ingress": 17932.30520296416,
+        "egress": 430825557.10693496
+      },
+      "max": {
+        "ingress": 24475.886855241264,
+        "egress": 592945338.1333333
+      }
+    }
+  },
+  {
+    "scid": "a4109552-ba22-4eb4-b8dd-05245f4e8497",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 1695.7350993377484
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 1714.5361111735622
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 1737.12
+      }
+    }
+  },
+  {
+    "scid": "a4bb6f71-c439-4238-8305-2c490249c613",
+    "values": {
+      "latest": {
+        "ingress": 1629.9130434782608,
+        "egress": 31702.608695652172
+      },
+      "mean": {
+        "ingress": 1915.7322497017444,
+        "egress": 69466.70013417574
+      },
+      "max": {
+        "ingress": 42564.651162790695,
+        "egress": 431374.24
+      }
+    }
+  },
+  {
+    "scid": "a4eeaed6-709e-4797-ac64-ab1c83a0af32",
+    "values": {
+      "latest": {
+        "ingress": 2831.3621262458473,
+        "egress": 66117223.973421924
+      },
+      "mean": {
+        "ingress": 2924.119289696108,
+        "egress": 108877126.77122307
+      },
+      "max": {
+        "ingress": 4192.292358803987,
+        "egress": 149409720.7785235
+      }
+    }
+  },
+  {
+    "scid": "a4f32340-4b35-4b4a-b1b3-7b15bf515bb4",
+    "values": {
+      "latest": {
+        "ingress": 96.47840531561462,
+        "egress": 115.48172757475083
+      },
+      "mean": {
+        "ingress": 100.33632234800615,
+        "egress": 113.94504582344995
+      },
+      "max": {
+        "ingress": 114.6578073089701,
+        "egress": 125.98006644518273
+      }
+    }
+  },
+  {
+    "scid": "a4f4719c-a4fc-417f-b0df-545dd950111d",
+    "values": {
+      "latest": {
+        "ingress": 5854591939.269103,
+        "egress": 266464449.70099667
+      },
+      "mean": {
+        "ingress": 4860516245.245536,
+        "egress": 326186284.10868347
+      },
+      "max": {
+        "ingress": 10293045469.767443,
+        "egress": 715702701.4046823
+      }
+    }
+  },
+  {
+    "scid": "a53344f7-59bc-40f0-84a8-9602bf99098d",
+    "values": {
+      "latest": {
+        "ingress": 1465236.0401337792,
+        "egress": 1702605.3244147156
+      },
+      "mean": {
+        "ingress": 1181367.9155255007,
+        "egress": 6088632.9900264
+      },
+      "max": {
+        "ingress": 24982962.106666666,
+        "egress": 166403296.98666668
+      }
+    }
+  },
+  {
+    "scid": "a5534a2b-2df7-414c-aa73-fd4d75992a68",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "a558186a-95f8-4346-88c0-f155536f10f8",
+    "values": {
+      "latest": {
+        "ingress": 3494705.28,
+        "egress": 27155.626666666667
+      },
+      "mean": {
+        "ingress": 7659920.5002628155,
+        "egress": 2339426.478761276
+      },
+      "max": {
+        "ingress": 89267062.69767442,
+        "egress": 5794976.32
+      }
+    }
+  },
+  {
+    "scid": "a5a37a30-24f5-44f2-976e-61eb41565abf",
+    "values": {
+      "latest": {
+        "ingress": 9784502.153846154,
+        "egress": 405026.0869565217
+      },
+      "mean": {
+        "ingress": 13576622.101693232,
+        "egress": 1553232.5370328298
+      },
+      "max": {
+        "ingress": 153165262.62251654,
+        "egress": 38584228.29333334
+      }
+    }
+  },
+  {
+    "scid": "a5ceb962-4a11-43a5-b568-ce9b94899a0a",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "a644191f-4b58-4549-8bef-d6ff8c40f226",
+    "values": {
+      "latest": {
+        "ingress": 575.7333333333333,
+        "egress": 878.4533333333334
+      },
+      "mean": {
+        "ingress": 584.5588288065703,
+        "egress": 804.3731418506082
+      },
+      "max": {
+        "ingress": 611.6943521594684,
+        "egress": 1458.3388704318936
+      }
+    }
+  },
+  {
+    "scid": "a6a14251-41a4-4b8d-95d5-b6537c5b3348",
+    "values": {
+      "latest": {
+        "ingress": 3485.351170568562,
+        "egress": 3558.876254180602
+      },
+      "mean": {
+        "ingress": 2584.077808004388,
+        "egress": 2656.4688596197784
+      },
+      "max": {
+        "ingress": 3511.2533333333336,
+        "egress": 3629.76
+      }
+    }
+  },
+  {
+    "scid": "a6bf1f39-68b7-4d24-8a2f-22f6548e48c9",
+    "values": {
+      "latest": {
+        "ingress": 229187.89333333334,
+        "egress": 34182.16
+      },
+      "mean": {
+        "ingress": 195150.13467662162,
+        "egress": 43454.16332842282
+      },
+      "max": {
+        "ingress": 435534.0332225914,
+        "egress": 178832.74666666667
+      }
+    }
+  },
+  {
+    "scid": "a6eb401d-8a68-42d2-8158-6119257850e8",
+    "values": {
+      "latest": {
+        "ingress": 27075300433.880795,
+        "egress": 16525773840.980133
+      },
+      "mean": {
+        "ingress": 5219728552.654601,
+        "egress": 11298250660.999472
+      },
+      "max": {
+        "ingress": 50937617922.57807,
+        "egress": 26266275542.85524
+      }
+    }
+  },
+  {
+    "scid": "a7509de9-1932-4c0b-a413-e24a4b7e68e7",
+    "values": {
+      "latest": {
+        "ingress": 123861.83277591973,
+        "egress": 370763.47826086957
+      },
+      "mean": {
+        "ingress": 175662.6433544532,
+        "egress": 371121.4159413789
+      },
+      "max": {
+        "ingress": 541462.0,
+        "egress": 1028306.48
+      }
+    }
+  },
+  {
+    "scid": "a78018dc-65d8-458d-86c8-d2f821983bf8",
+    "values": {
+      "latest": {
+        "ingress": 662.5284280936455,
+        "egress": 641.819397993311
+      },
+      "mean": {
+        "ingress": 678.045209675233,
+        "egress": 657.7747369877252
+      },
+      "max": {
+        "ingress": 719.0933333333334,
+        "egress": 716.3733333333333
+      }
+    }
+  },
+  {
+    "scid": "a7a623f6-90f0-4997-b9f7-2b1de49e23ae",
+    "values": {
+      "latest": {
+        "ingress": 278.4,
+        "egress": 278.4
+      },
+      "mean": {
+        "ingress": 279.47691473096205,
+        "egress": 279.48030964627907
+      },
+      "max": {
+        "ingress": 295.2582781456954,
+        "egress": 295.4701986754967
+      }
+    }
+  },
+  {
+    "scid": "a7b7c01b-f359-470b-afa9-69c9f236d7f6",
+    "values": {
+      "latest": {
+        "ingress": 387.70666666666665,
+        "egress": 440.08
+      },
+      "mean": {
+        "ingress": 358.98062986508666,
+        "egress": 430.4271502647707
+      },
+      "max": {
+        "ingress": 528.8,
+        "egress": 572.2666666666667
+      }
+    }
+  },
+  {
+    "scid": "a8302418-4619-41bf-9c31-9182e70709eb",
+    "values": {
+      "latest": {
+        "ingress": 734.2724252491695,
+        "egress": 720.3189368770765
+      },
+      "mean": {
+        "ingress": 1800.3405644340355,
+        "egress": 800.4211938441973
+      },
+      "max": {
+        "ingress": 8343.229235880399,
+        "egress": 1769.68
+      }
+    }
+  },
+  {
+    "scid": "a8ca2183-dd11-4476-b725-c35e6c640a95",
+    "values": {
+      "latest": {
+        "ingress": 39719.84,
+        "egress": 6704186.8
+      },
+      "mean": {
+        "ingress": 35936.60372045128,
+        "egress": 6259617.814265537
+      },
+      "max": {
+        "ingress": 48056.56,
+        "egress": 7000534.133333334
+      }
+    }
+  },
+  {
+    "scid": "a8d29b87-062a-47ad-be96-c114c1cd6fde",
+    "values": {
+      "latest": {
+        "ingress": 57.32890365448505,
+        "egress": 58262.93687707641
+      },
+      "mean": {
+        "ingress": 53.4133045348783,
+        "egress": 49099.63333676845
+      },
+      "max": {
+        "ingress": 67.85478547854785,
+        "egress": 369493.25333333336
+      }
+    }
+  },
+  {
+    "scid": "a90abebc-5c17-4fe9-8d23-31712fb9e2e0",
+    "values": {
+      "latest": {
+        "ingress": 9976039.090301003,
+        "egress": 14049695.866220735
+      },
+      "mean": {
+        "ingress": 38258945.970167026,
+        "egress": 59220292.454312675
+      },
+      "max": {
+        "ingress": 585492280.1328903,
+        "egress": 451336638.0332226
+      }
+    }
+  },
+  {
+    "scid": "a928a705-e4aa-456e-a3e3-ea6ecd698db6",
+    "values": {
+      "latest": {
+        "ingress": 5747.719063545151,
+        "egress": 3251.2909698996655
+      },
+      "mean": {
+        "ingress": 2306.997037775943,
+        "egress": 2198.8408252037502
+      },
+      "max": {
+        "ingress": 75237.44850498339,
+        "egress": 7156.08
+      }
+    }
+  },
+  {
+    "scid": "a9382674-1185-4571-b783-45564390b5fe",
+    "values": {
+      "latest": {
+        "ingress": 154992478.16,
+        "egress": 76026596.13333334
+      },
+      "mean": {
+        "ingress": 177886392.99149144,
+        "egress": 173863845.8097655
+      },
+      "max": {
+        "ingress": 414849319.09634554,
+        "egress": 675231035.28
+      }
+    }
+  },
+  {
+    "scid": "a9785dd1-f731-41b7-8ca9-08d520d4f7b9",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "a98466d5-82c1-4359-98ab-d3b050eb58b0",
+    "values": {
+      "latest": {
+        "ingress": 93.25333333333333,
+        "egress": 113.36
+      },
+      "mean": {
+        "ingress": 96.02808887987692,
+        "egress": 118.04528886905665
+      },
+      "max": {
+        "ingress": 244.25249169435216,
+        "egress": 607.5747508305648
+      }
+    }
+  },
+  {
+    "scid": "a9e64dc1-a71c-4818-aaf4-9272bf61f66f",
+    "values": {
+      "latest": {
+        "ingress": 63415134024.0,
+        "egress": 85585500077.4485
+      },
+      "mean": {
+        "ingress": 39212474680.058174,
+        "egress": 93469963219.87315
+      },
+      "max": {
+        "ingress": 84389123131.85284,
+        "egress": 154790761315.25333
+      }
+    }
+  },
+  {
+    "scid": "a9ff049e-d47c-4063-a72f-c360bcab9870",
+    "values": {
+      "latest": {
+        "ingress": 18726260283.733334,
+        "egress": 32747986136.32
+      },
+      "mean": {
+        "ingress": 26148995487.140106,
+        "egress": 24759040793.42013
+      },
+      "max": {
+        "ingress": 88262047516.91695,
+        "egress": 60110394669.653336
+      }
+    }
+  },
+  {
+    "scid": "aa8edd2c-9e45-4b24-9a72-6bdaecdf5614",
+    "values": {
+      "latest": {
+        "ingress": 3713899219.9466667,
+        "egress": 7724751960.56
+      },
+      "mean": {
+        "ingress": 4130355370.636281,
+        "egress": 2287044510.6578155
+      },
+      "max": {
+        "ingress": 15609353162.373333,
+        "egress": 11960292694.613333
+      }
+    }
+  },
+  {
+    "scid": "ab39ba80-4b82-45d6-b9e7-223277434c1f",
+    "values": {
+      "latest": {
+        "ingress": 31161553661.306667,
+        "egress": 29901503436.8
+      },
+      "mean": {
+        "ingress": 41424110403.76678,
+        "egress": 30495103763.1756
+      },
+      "max": {
+        "ingress": 76441249563.73334,
+        "egress": 76217706772.6589
+      }
+    }
+  },
+  {
+    "scid": "ab75ebca-c7cb-4c7c-8519-f2c6a3a51c6d",
+    "values": {
+      "latest": {
+        "ingress": 2925104.6357615893,
+        "egress": 78627.09933774834
+      },
+      "mean": {
+        "ingress": 3639086.3536810083,
+        "egress": 79334.89927494442
+      },
+      "max": {
+        "ingress": 55779723.96013289,
+        "egress": 1475269.5629139072
+      }
+    }
+  },
+  {
+    "scid": "ab91e089-80e9-467e-87ce-8c6f017ddd0d",
+    "values": {
+      "latest": {
+        "ingress": 7225625859.5348835,
+        "egress": 1242487567.1495016
+      },
+      "mean": {
+        "ingress": 5390477840.980717,
+        "egress": 976796343.3460151
+      },
+      "max": {
+        "ingress": 10854286327.096346,
+        "egress": 1826216158.139535
+      }
+    }
+  },
+  {
+    "scid": "abb1d5dc-6b67-4747-9dd4-5459a56710bc",
+    "values": {
+      "latest": {
+        "ingress": 10583112748.762543,
+        "egress": 10341470317.16388
+      },
+      "mean": {
+        "ingress": 3166676894.108024,
+        "egress": 6192731066.163002
+      },
+      "max": {
+        "ingress": 14835476995.003323,
+        "egress": 10731601406.48505
+      }
+    }
+  },
+  {
+    "scid": "abc51e3b-812b-40d8-b7d3-20f41b255d32",
+    "values": {
+      "latest": {
+        "ingress": 4601524460.96,
+        "egress": 3846158485.786667
+      },
+      "mean": {
+        "ingress": 6832439281.395627,
+        "egress": 4983546697.7366
+      },
+      "max": {
+        "ingress": 28660113890.099667,
+        "egress": 33689111798.96
+      }
+    }
+  },
+  {
+    "scid": "abdc166d-3307-4e19-afe7-b1021a32168b",
+    "values": {
+      "latest": {
+        "ingress": 253829.81333333332,
+        "egress": 52108.933333333334
+      },
+      "mean": {
+        "ingress": 23823144.00070508,
+        "egress": 2735718.303610835
+      },
+      "max": {
+        "ingress": 371190243.2,
+        "egress": 223435773.35117057
+      }
+    }
+  },
+  {
+    "scid": "ac0304e0-00a2-498a-9d5a-7465209de37a",
+    "values": {
+      "latest": {
+        "ingress": 2233395383.7066665,
+        "egress": 162154022.64
+      },
+      "mean": {
+        "ingress": 1418267137.1428862,
+        "egress": 86595977.12299646
+      },
+      "max": {
+        "ingress": 2321171855.0431895,
+        "egress": 179992036.10666665
+      }
+    }
+  },
+  {
+    "scid": "ac2034f1-4d6d-42b4-bddd-f1c49e399d22",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "ac276944-85ac-4d5b-be6a-d32e66f55964",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "ac33812b-305f-410c-992c-4fc6ef3dd83e",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "ac537ea8-8eab-4e83-96fb-29a03bb6b176",
+    "values": {
+      "latest": {
+        "ingress": 8200608040.08,
+        "egress": 8919477822.48
+      },
+      "mean": {
+        "ingress": 7387939466.6587105,
+        "egress": 12732327874.396267
+      },
+      "max": {
+        "ingress": 17881246633.52,
+        "egress": 36044138314.82667
+      }
+    }
+  },
+  {
+    "scid": "ac540183-b1ff-476a-b605-5ce8aecc527a",
+    "values": {
+      "latest": {
+        "ingress": 68323764.0,
+        "egress": 94889238.69333333
+      },
+      "mean": {
+        "ingress": 35804134.10315631,
+        "egress": 54363112.4480258
+      },
+      "max": {
+        "ingress": 178992252.45333335,
+        "egress": 129570416.42809364
+      }
+    }
+  },
+  {
+    "scid": "ac74f2ce-e7ae-4296-8f64-05e3f171218d",
+    "values": {
+      "latest": {
+        "ingress": 184808.98996655518,
+        "egress": 36778.72909698997
+      },
+      "mean": {
+        "ingress": 30707.13131420108,
+        "egress": 27646.82778553193
+      },
+      "max": {
+        "ingress": 184808.98996655518,
+        "egress": 39787.63879598662
+      }
+    }
+  },
+  {
+    "scid": "aca4be6f-7d5a-48d0-8d3b-b94dc8e5cd94",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 73217883.9601329
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 35074788.5816678
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 83648137.22259136
+      }
+    }
+  },
+  {
+    "scid": "ad1c671f-deb6-47ce-9ed3-984663ee7c65",
+    "values": {
+      "latest": {
+        "ingress": 3579.7725752508363,
+        "egress": 3483.933110367893
+      },
+      "mean": {
+        "ingress": 2656.569183007884,
+        "egress": 2584.2487633516853
+      },
+      "max": {
+        "ingress": 3610.9066666666668,
+        "egress": 3502.0533333333333
+      }
+    }
+  },
+  {
+    "scid": "ad57018a-3fa1-491e-827a-b843124c62a9",
+    "values": {
+      "latest": {
+        "ingress": 304.8,
+        "egress": 42.4
+      },
+      "mean": {
+        "ingress": 306.44406388338774,
+        "egress": 44.31930555022828
+      },
+      "max": {
+        "ingress": 311.49333333333334,
+        "egress": 56.98502495840266
+      }
+    }
+  },
+  {
+    "scid": "ad5ac8d9-a6f1-452a-862a-cf992362cb62",
+    "values": {
+      "latest": {
+        "ingress": 25990.657718120805,
+        "egress": 921997236.6442953
+      },
+      "mean": {
+        "ingress": 25021.390751480278,
+        "egress": 911676896.884016
+      },
+      "max": {
+        "ingress": 397062.511627907,
+        "egress": 1242203016.0265782
+      }
+    }
+  },
+  {
+    "scid": "ad65cd41-e1ff-4618-9526-c210fdbafa74",
+    "values": {
+      "latest": {
+        "ingress": 2233395383.7066665,
+        "egress": 162154029.84
+      },
+      "mean": {
+        "ingress": 1418267137.1428862,
+        "egress": 86595984.56978258
+      },
+      "max": {
+        "ingress": 2321171855.0431895,
+        "egress": 179992045.06666666
+      }
+    }
+  },
+  {
+    "scid": "ad8287ff-0a1e-44fd-9f90-26c0ad5a56ad",
+    "values": {
+      "latest": {
+        "ingress": 954386074.56,
+        "egress": 3335519379.04
+      },
+      "mean": {
+        "ingress": 1589598639.8942735,
+        "egress": 3438988212.954756
+      },
+      "max": {
+        "ingress": 14730074040.4,
+        "egress": 10637704773.131578
+      }
+    }
+  },
+  {
+    "scid": "ad9488d1-f973-4301-81ac-25d690ddeef7",
+    "values": {
+      "latest": {
+        "ingress": 10410.373333333333,
+        "egress": 24819.2
+      },
+      "mean": {
+        "ingress": 22801.977202274218,
+        "egress": 27009.1959081412
+      },
+      "max": {
+        "ingress": 84477.97670549084,
+        "egress": 32046.85524126456
+      }
+    }
+  },
+  {
+    "scid": "ae0df7b5-31d2-407d-817a-3a5a7907886e",
+    "values": {
+      "latest": {
+        "ingress": 2003981.6533333333,
+        "egress": 1602416.9066666667
+      },
+      "mean": {
+        "ingress": 7411718.5732190935,
+        "egress": 9108546.264377847
+      },
+      "max": {
+        "ingress": 152570870.3630363,
+        "egress": 98174378.64
+      }
+    }
+  },
+  {
+    "scid": "ae137ca3-c132-4c9e-902e-231ff0dc511b",
+    "values": {
+      "latest": {
+        "ingress": 2306.1066666666666,
+        "egress": 6711452.133333334
+      },
+      "mean": {
+        "ingress": 2307.9923316783884,
+        "egress": 9495271.165461563
+      },
+      "max": {
+        "ingress": 2339.3112582781455,
+        "egress": 97129013.15614618
+      }
+    }
+  },
+  {
+    "scid": "ae20d05c-36bd-4a38-afd4-e15377b69d9d",
+    "values": {
+      "latest": {
+        "ingress": 17593.333333333332,
+        "egress": 428033445.3066667
+      },
+      "mean": {
+        "ingress": 16222.775040436825,
+        "egress": 420644144.47059274
+      },
+      "max": {
+        "ingress": 22140.50331125828,
+        "egress": 554019505.9264214
+      }
+    }
+  },
+  {
+    "scid": "ae2605a4-a078-4811-8800-2b2d4412c3e7",
+    "values": {
+      "latest": {
+        "ingress": 355.18936877076413,
+        "egress": 881.9401993355482
+      },
+      "mean": {
+        "ingress": 361.8043619488557,
+        "egress": 800.0154717251334
+      },
+      "max": {
+        "ingress": 372.3466666666667,
+        "egress": 1170.1333333333334
+      }
+    }
+  },
+  {
+    "scid": "ae305595-159b-46ee-b7ca-fe1bb8d7c17f",
+    "values": {
+      "latest": {
+        "ingress": 2096183780.3056479,
+        "egress": 108374624.10631229
+      },
+      "mean": {
+        "ingress": 1537365840.092297,
+        "egress": 157488112.41130713
+      },
+      "max": {
+        "ingress": 2503013025.6688743,
+        "egress": 735753429.3421926
+      }
+    }
+  },
+  {
+    "scid": "ae684268-ad51-4ffd-a1c0-b7aa5b4cdd90",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "aec58254-b34a-4e82-83b3-dadacf9e49a1",
+    "values": {
+      "latest": {
+        "ingress": 131389.28,
+        "egress": 28816.453333333335
+      },
+      "mean": {
+        "ingress": 119612.49528726966,
+        "egress": 24592.64978788264
+      },
+      "max": {
+        "ingress": 244252.17275747508,
+        "egress": 63503.681063122924
+      }
+    }
+  },
+  {
+    "scid": "af143114-ae97-469b-a33f-fcf643bb1c76",
+    "values": {
+      "latest": {
+        "ingress": 174560613.86666667,
+        "egress": 456164196.56
+      },
+      "mean": {
+        "ingress": 455048480.3968804,
+        "egress": 694671203.3092633
+      },
+      "max": {
+        "ingress": 1058096987.9733334,
+        "egress": 1295611772.4119601
+      }
+    }
+  },
+  {
+    "scid": "af59171b-0ecc-4b67-ac16-8fbe30589afd",
+    "values": {
+      "latest": {
+        "ingress": 1681328280.5886288,
+        "egress": 16084527645.80602
+      },
+      "mean": {
+        "ingress": 1861662186.151982,
+        "egress": 14511986966.907682
+      },
+      "max": {
+        "ingress": 9438789233.226667,
+        "egress": 19565972921.127518
+      }
+    }
+  },
+  {
+    "scid": "afa8ca87-db65-4b19-8514-b5345abef9bb",
+    "values": {
+      "latest": {
+        "ingress": 4858345998.613334,
+        "egress": 347029832.2133333
+      },
+      "mean": {
+        "ingress": 4157385880.817662,
+        "egress": 1091777585.6710424
+      },
+      "max": {
+        "ingress": 19217741999.495018,
+        "egress": 18574216632.0
+      }
+    }
+  },
+  {
+    "scid": "afe48180-19e0-48c5-8c92-eac23febfab1",
+    "values": {
+      "latest": {
+        "ingress": 25180073000.853333,
+        "egress": 28335955784.373333
+      },
+      "mean": {
+        "ingress": 17092756576.863575,
+        "egress": 20968900032.194996
+      },
+      "max": {
+        "ingress": 48179208709.2,
+        "egress": 42264044708.093025
+      }
+    }
+  },
+  {
+    "scid": "afeb63dd-fcfd-49db-9e87-29e537e6fd6b",
+    "values": {
+      "latest": {
+        "ingress": 5036.6511627906975,
+        "egress": 220566641.14285713
+      },
+      "mean": {
+        "ingress": 4431.602658732771,
+        "egress": 159146039.2662781
+      },
+      "max": {
+        "ingress": 10112.026490066226,
+        "egress": 489260751.6
+      }
+    }
+  },
+  {
+    "scid": "b00c9ff4-6a3f-4475-af17-32042185da5f",
+    "values": {
+      "latest": {
+        "ingress": 258347.06666666668,
+        "egress": 91465.76
+      },
+      "mean": {
+        "ingress": 2688632.0849662633,
+        "egress": 81806.5799841787
+      },
+      "max": {
+        "ingress": 154552147.641196,
+        "egress": 1400760.053156146
+      }
+    }
+  },
+  {
+    "scid": "b0250d18-e8de-406c-9956-851ecd2dc0f6",
+    "values": {
+      "latest": {
+        "ingress": 10580418275.397993,
+        "egress": 10800608868.147158
+      },
+      "mean": {
+        "ingress": 6321191529.758335,
+        "egress": 3308321488.958767
+      },
+      "max": {
+        "ingress": 10836103432.877077,
+        "egress": 14893215720.930233
+      }
+    }
+  },
+  {
+    "scid": "b031653d-0746-4a53-bcb0-17735a60d939",
+    "values": {
+      "latest": {
+        "ingress": 7621.859531772575,
+        "egress": 2980.655518394649
+      },
+      "mean": {
+        "ingress": 8629.187850919543,
+        "egress": 3260.7477556965373
+      },
+      "max": {
+        "ingress": 21114.870431893687,
+        "egress": 10522.764119601328
+      }
+    }
+  },
+  {
+    "scid": "b0cc2e3b-9f09-446e-a960-6a62abcdff7f",
+    "values": {
+      "latest": {
+        "ingress": 15052811025.226667,
+        "egress": 63220626778.10667
+      },
+      "mean": {
+        "ingress": 20088801392.106148,
+        "egress": 34023023950.177425
+      },
+      "max": {
+        "ingress": 102286952759.52,
+        "egress": 74605060366.8
+      }
+    }
+  },
+  {
+    "scid": "b0d6ff8f-f763-4b11-a0ec-767db94a4cdc",
+    "values": {
+      "latest": {
+        "ingress": 75750424985.25752,
+        "egress": 47257788915.15719
+      },
+      "mean": {
+        "ingress": 84427660087.05771,
+        "egress": 30957351094.876087
+      },
+      "max": {
+        "ingress": 127123868184.0537,
+        "egress": 82742057480.16107
+      }
+    }
+  },
+  {
+    "scid": "b14195c8-ccd2-4095-bba9-1e1e04760574",
+    "values": {
+      "latest": {
+        "ingress": 1327.202657807309,
+        "egress": 1999.4684385382059
+      },
+      "mean": {
+        "ingress": 1413.128302704873,
+        "egress": 3617.682299248647
+      },
+      "max": {
+        "ingress": 8310.613333333333,
+        "egress": 188164.26666666666
+      }
+    }
+  },
+  {
+    "scid": "b1710dc3-6b76-4402-8d76-24af9e21a0c4",
+    "values": {
+      "latest": {
+        "ingress": 405803221.92,
+        "egress": 4621015.76
+      },
+      "mean": {
+        "ingress": 163614572.00671998,
+        "egress": 2174731.6882327856
+      },
+      "max": {
+        "ingress": 405803221.92,
+        "egress": 5633380.8
+      }
+    }
+  },
+  {
+    "scid": "b19d79ee-cffd-44d7-8792-604caf241411",
+    "values": {
+      "latest": {
+        "ingress": 182459228.32,
+        "egress": 39751.73333333333
+      },
+      "mean": {
+        "ingress": 131119994.86795071,
+        "egress": 757883.5428488458
+      },
+      "max": {
+        "ingress": 1892709649.6212626,
+        "egress": 15139717.333333334
+      }
+    }
+  },
+  {
+    "scid": "b1ba457f-ff1c-439e-ba25-1e52076bec93",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 247608141.3156146
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 211256910.26601946
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 349676985.807309
+      }
+    }
+  },
+  {
+    "scid": "b1da962b-0830-4706-a89c-2b2ca82faa2a",
+    "values": {
+      "latest": {
+        "ingress": 9535035099.205297,
+        "egress": 9925776459.629139
+      },
+      "mean": {
+        "ingress": 12810182697.729317,
+        "egress": 8984265987.089472
+      },
+      "max": {
+        "ingress": 39660297425.22259,
+        "egress": 44482973175.041595
+      }
+    }
+  },
+  {
+    "scid": "b1e2393e-5749-4bb8-b9c3-6dbcdfa78557",
+    "values": {
+      "latest": {
+        "ingress": 5477526801.226666,
+        "egress": 313040439.25333333
+      },
+      "mean": {
+        "ingress": 3154544558.903652,
+        "egress": 319092834.0267963
+      },
+      "max": {
+        "ingress": 9699068718.32558,
+        "egress": 1237040686.8266666
+      }
+    }
+  },
+  {
+    "scid": "b2003241-e0bd-4734-93d6-92fc0f6ac4fe",
+    "values": {
+      "latest": {
+        "ingress": 105214.64,
+        "egress": 15583.36
+      },
+      "mean": {
+        "ingress": 82888.48966578215,
+        "egress": 13844.42850421456
+      },
+      "max": {
+        "ingress": 205944.18635607322,
+        "egress": 21479.70568561873
+      }
+    }
+  },
+  {
+    "scid": "b2918a27-23fc-4fb0-ba9e-6d32f63977b2",
+    "values": {
+      "latest": {
+        "ingress": 2020.48,
+        "egress": 790.96
+      },
+      "mean": {
+        "ingress": 3368.881015068137,
+        "egress": 1010.7460453927047
+      },
+      "max": {
+        "ingress": 12286.378737541529,
+        "egress": 2416.0533333333333
+      }
+    }
+  },
+  {
+    "scid": "b31af1ef-77a7-4cca-a6e8-e0d50787917f",
+    "values": {
+      "latest": {
+        "ingress": 12516189.27152318,
+        "egress": 30651997.907284766
+      },
+      "mean": {
+        "ingress": 8154326.71638556,
+        "egress": 87659261.63805227
+      },
+      "max": {
+        "ingress": 96028669.61333333,
+        "egress": 284193311.0133333
+      }
+    }
+  },
+  {
+    "scid": "b37e10c4-9552-4d63-8f06-79ff83c0a439",
+    "values": {
+      "latest": {
+        "ingress": 29949.794019933553,
+        "egress": 47064.7707641196
+      },
+      "mean": {
+        "ingress": 29896.229021935007,
+        "egress": 43688.82317189239
+      },
+      "max": {
+        "ingress": 43246.23411371237,
+        "egress": 56199.67892976588
+      }
+    }
+  },
+  {
+    "scid": "b3a1ede6-d417-4aad-9294-211de943fdd6",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 448.265780730897
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 353.759948581814
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 610.066225165563
+      }
+    }
+  },
+  {
+    "scid": "b3c9b555-7f1d-47d7-9031-079edac22f85",
+    "values": {
+      "latest": {
+        "ingress": 73755226.2742475,
+        "egress": 27896244.41471572
+      },
+      "mean": {
+        "ingress": 109594238.30323921,
+        "egress": 29395170.03694163
+      },
+      "max": {
+        "ingress": 1075989923.8940396,
+        "egress": 103379502.92976588
+      }
+    }
+  },
+  {
+    "scid": "b3edecf3-f344-40c7-87cf-be30385dbaf8",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 384325262.1129568
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 387532491.81827044
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 525186652.99667776
+      }
+    }
+  },
+  {
+    "scid": "b44df27c-8312-4673-81a8-bd68413992ba",
+    "values": {
+      "latest": {
+        "ingress": 8063.466666666666,
+        "egress": 156604.26666666666
+      },
+      "mean": {
+        "ingress": 5420.297606987765,
+        "egress": 4714984.169659515
+      },
+      "max": {
+        "ingress": 14530.950166112956,
+        "egress": 162600777.62666667
+      }
+    }
+  },
+  {
+    "scid": "b44eaa26-0f7a-4874-af94-b81b003264e4",
+    "values": {
+      "latest": {
+        "ingress": 8593693956.213333,
+        "egress": 2509344041.3333335
+      },
+      "mean": {
+        "ingress": 5101421156.165421,
+        "egress": 2820474123.6365714
+      },
+      "max": {
+        "ingress": 17732872301.913044,
+        "egress": 4080730243.4019933
+      }
+    }
+  },
+  {
+    "scid": "b4738f69-42a7-46e7-8356-663cf725bff5",
+    "values": {
+      "latest": {
+        "ingress": 14223614.293333333,
+        "egress": 8075837092.16
+      },
+      "mean": {
+        "ingress": 9304890.170900073,
+        "egress": 6968248288.564373
+      },
+      "max": {
+        "ingress": 37837986.577181205,
+        "egress": 14449392713.6
+      }
+    }
+  },
+  {
+    "scid": "b478a077-1a79-4471-b3e5-7e888197fa2e",
+    "values": {
+      "latest": {
+        "ingress": 126300961.11627907,
+        "egress": 132588.01328903655
+      },
+      "mean": {
+        "ingress": 121007481.34368467,
+        "egress": 14822.90685085544
+      },
+      "max": {
+        "ingress": 188604557.10299003,
+        "egress": 527967.0133333333
+      }
+    }
+  },
+  {
+    "scid": "b4a0784c-deb6-4edb-9975-70274b9e33cd",
+    "values": {
+      "latest": {
+        "ingress": 33119556128.586666,
+        "egress": 30711326719.36
+      },
+      "mean": {
+        "ingress": 37570117156.111404,
+        "egress": 25160644488.26902
+      },
+      "max": {
+        "ingress": 81070430890.04651,
+        "egress": 114841065548.74667
+      }
+    }
+  },
+  {
+    "scid": "b4a38235-7e8e-4579-9cc7-88f6a5fe4d8f",
+    "values": {
+      "latest": {
+        "ingress": 302.98327759197326,
+        "egress": 43.34448160535117
+      },
+      "mean": {
+        "ingress": 305.05327787764764,
+        "egress": 44.09114235526338
+      },
+      "max": {
+        "ingress": 328.5083612040134,
+        "egress": 49.541528239202655
+      }
+    }
+  },
+  {
+    "scid": "b4b0a9cb-9224-4923-abb3-7415fe8a6dbd",
+    "values": {
+      "latest": {
+        "ingress": 11558.19867549669,
+        "egress": 5872653.165562914
+      },
+      "mean": {
+        "ingress": 10555.515208629997,
+        "egress": 5341191.271843494
+      },
+      "max": {
+        "ingress": 13037.506666666666,
+        "egress": 51356585.674418606
+      }
+    }
+  },
+  {
+    "scid": "b5139f6c-0614-46b5-abba-d489a12c5020",
+    "values": {
+      "latest": {
+        "ingress": 144783.36,
+        "egress": 557491.84
+      },
+      "mean": {
+        "ingress": 645044.1033613671,
+        "egress": 38569299.36348239
+      },
+      "max": {
+        "ingress": 3554565.2845257903,
+        "egress": 137669646.08
+      }
+    }
+  },
+  {
+    "scid": "b51879d5-99bd-476f-b051-1c194b76cfb2",
+    "values": {
+      "latest": {
+        "ingress": 22643930117.68,
+        "egress": 22557460941.52
+      },
+      "mean": {
+        "ingress": 25026675766.768227,
+        "egress": 18961914065.506454
+      },
+      "max": {
+        "ingress": 68679055338.09967,
+        "egress": 90878580046.32
+      }
+    }
+  },
+  {
+    "scid": "b55e4183-a474-4485-9823-3be4651c46e2",
+    "values": {
+      "latest": {
+        "ingress": 51.2,
+        "egress": 115.86666666666666
+      },
+      "mean": {
+        "ingress": 51.355871111753025,
+        "egress": 113.87325536619136
+      },
+      "max": {
+        "ingress": 56.508361204013376,
+        "egress": 126.4
+      }
+    }
+  },
+  {
+    "scid": "b576a90f-5beb-4ec8-83a5-c0bebd0b6533",
+    "values": {
+      "latest": {
+        "ingress": 1152877118.7733333,
+        "egress": 2191481372.56
+      },
+      "mean": {
+        "ingress": 1386090418.3912623,
+        "egress": 1792774878.5313506
+      },
+      "max": {
+        "ingress": 2748518853.7066665,
+        "egress": 23391506843.772575
+      }
+    }
+  },
+  {
+    "scid": "b5963593-0b98-4b89-adf4-1023cc4c72a4",
+    "values": {
+      "latest": {
+        "ingress": 92.39735099337749,
+        "egress": 112.6092715231788
+      },
+      "mean": {
+        "ingress": 71.37881188996631,
+        "egress": 90.10150310640144
+      },
+      "max": {
+        "ingress": 109.82059800664452,
+        "egress": 437.96
+      }
+    }
+  },
+  {
+    "scid": "b5aa5e1a-55c3-4693-a519-d4031a2e52fe",
+    "values": {
+      "latest": {
+        "ingress": 242663.81333333332,
+        "egress": 1113330.32
+      },
+      "mean": {
+        "ingress": 14415513.066803675,
+        "egress": 2404239.5468412074
+      },
+      "max": {
+        "ingress": 97006328.88,
+        "egress": 15577264.226289518
+      }
+    }
+  },
+  {
+    "scid": "b6b872c2-a7e2-4665-ad89-795f61bc48ea",
+    "values": {
+      "latest": {
+        "ingress": 32834301.28,
+        "egress": 1884037.0933333333
+      },
+      "mean": {
+        "ingress": 10891413.170365695,
+        "egress": 19650067.692186303
+      },
+      "max": {
+        "ingress": 76123113.44,
+        "egress": 92084023.97324415
+      }
+    }
+  },
+  {
+    "scid": "b6dc006e-5cfd-4c21-b576-6a954177c050",
+    "values": {
+      "latest": {
+        "ingress": 2493931.466666667,
+        "egress": 3485595.2266666666
+      },
+      "mean": {
+        "ingress": 2887863.53337786,
+        "egress": 24000609.64202358
+      },
+      "max": {
+        "ingress": 5975194.338870432,
+        "egress": 423456497.3023256
+      }
+    }
+  },
+  {
+    "scid": "b7b741da-5847-4bcb-8dc3-179e3a3dd54b",
+    "values": {
+      "latest": {
+        "ingress": 185.19601328903656,
+        "egress": 7.229235880398671
+      },
+      "mean": {
+        "ingress": 118.60568119085089,
+        "egress": 7.286078408255711
+      },
+      "max": {
+        "ingress": 379.62666666666667,
+        "egress": 10.843853820598007
+      }
+    }
+  },
+  {
+    "scid": "b7b8f440-5e5f-4b31-b1d9-d5a598ab5415",
+    "values": {
+      "latest": {
+        "ingress": 863.6254180602007,
+        "egress": 41806.769230769234
+      },
+      "mean": {
+        "ingress": 856.7586381529015,
+        "egress": 44581.84975667371
+      },
+      "max": {
+        "ingress": 874.5066666666667,
+        "egress": 65452.746666666666
+      }
+    }
+  },
+  {
+    "scid": "b7e1373e-17b5-4561-80c9-b5a0fbab0d33",
+    "values": {
+      "latest": {
+        "ingress": 3848632565.2,
+        "egress": 2247551474.213333
+      },
+      "mean": {
+        "ingress": 3052679616.52658,
+        "egress": 3096443582.441168
+      },
+      "max": {
+        "ingress": 46686915468.456375,
+        "egress": 28085705277.324505
+      }
+    }
+  },
+  {
+    "scid": "b7f8dc8d-7fd7-415f-8daa-44d16e05403e",
+    "values": {
+      "latest": {
+        "ingress": 31732310166.4,
+        "egress": 18718788785.066666
+      },
+      "mean": {
+        "ingress": 24756717397.264317,
+        "egress": 26146970932.950912
+      },
+      "max": {
+        "ingress": 60165320931.94666,
+        "egress": 89683489498.68439
+      }
+    }
+  },
+  {
+    "scid": "b80a4c95-1b57-450c-a86d-25de68a303b9",
+    "values": {
+      "latest": {
+        "ingress": 86.67549668874172,
+        "egress": 108.05298013245033
+      },
+      "mean": {
+        "ingress": 72.20453683375104,
+        "egress": 89.71122767682378
+      },
+      "max": {
+        "ingress": 267.80066445182723,
+        "egress": 449.9066666666667
+      }
+    }
+  },
+  {
+    "scid": "b85d9136-670a-4bdb-b877-ee0c376bac30",
+    "values": {
+      "latest": {
+        "ingress": 1671.362126245847,
+        "egress": 689.8073089700997
+      },
+      "mean": {
+        "ingress": 1677.0742536550956,
+        "egress": 717.6098597532947
+      },
+      "max": {
+        "ingress": 1701.3866666666668,
+        "egress": 2726.251655629139
+      }
+    }
+  },
+  {
+    "scid": "b86df08f-c9d5-48f8-9256-24d04e3b845f",
+    "values": {
+      "latest": {
+        "ingress": 161689524.27906978,
+        "egress": 152749139.61461794
+      },
+      "mean": {
+        "ingress": 139751013.56142816,
+        "egress": 61684729.584093295
+      },
+      "max": {
+        "ingress": 215126962.3654485,
+        "egress": 169876783.78595316
+      }
+    }
+  },
+  {
+    "scid": "b8a9b384-a396-4877-8981-eb1681863166",
+    "values": {
+      "latest": {
+        "ingress": 23.2,
+        "egress": 127.01333333333334
+      },
+      "mean": {
+        "ingress": 23.27624793782704,
+        "egress": 124.7175753237431
+      },
+      "max": {
+        "ingress": 25.691275167785236,
+        "egress": 138.09966777408638
+      }
+    }
+  },
+  {
+    "scid": "b8ae15ec-5ab1-4136-8742-d7c580c7fa17",
+    "values": {
+      "latest": {
+        "ingress": 268.02666666666664,
+        "egress": 192.37333333333333
+      },
+      "mean": {
+        "ingress": 78240139.3267323,
+        "egress": 106120298.48641069
+      },
+      "max": {
+        "ingress": 2236652645.129568,
+        "egress": 2313531363.653333
+      }
+    }
+  },
+  {
+    "scid": "b8d7dbcf-4326-454e-99c6-0a4fd5af81bf",
+    "values": {
+      "latest": {
+        "ingress": 7132362.986666666,
+        "egress": 2728694.986666667
+      },
+      "mean": {
+        "ingress": 12075825.698470466,
+        "egress": 6466898.282766831
+      },
+      "max": {
+        "ingress": 148333159.62666667,
+        "egress": 17545318.98666667
+      }
+    }
+  },
+  {
+    "scid": "b90fce2b-7f04-4901-b025-8b46a66f6ccf",
+    "values": {
+      "latest": {
+        "ingress": 626.6220735785953,
+        "egress": 1059.638795986622
+      },
+      "mean": {
+        "ingress": 451.9759355208349,
+        "egress": 1496.7008178433407
+      },
+      "max": {
+        "ingress": 708.9127516778524,
+        "egress": 4231.733333333334
+      }
+    }
+  },
+  {
+    "scid": "b929d646-5fcb-4818-a9a8-18e86b792c8a",
+    "values": {
+      "latest": {
+        "ingress": 21429881.364548493,
+        "egress": 10588758.341137124
+      },
+      "mean": {
+        "ingress": 23538951.31396326,
+        "egress": 9333354.101934869
+      },
+      "max": {
+        "ingress": 565481060.0401338,
+        "egress": 15387973.706666667
+      }
+    }
+  },
+  {
+    "scid": "b966f5f6-46bf-4a8a-ac6a-a73d67cc7416",
+    "values": {
+      "latest": {
+        "ingress": 1250.96,
+        "egress": 1940.3466666666666
+      },
+      "mean": {
+        "ingress": 7124.567966462163,
+        "egress": 3982.574020832695
+      },
+      "max": {
+        "ingress": 100803.80698835275,
+        "egress": 18973.79034941764
+      }
+    }
+  },
+  {
+    "scid": "b9cd992f-be68-44b5-b466-c18e63d6b539",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "b9f79c25-3bc2-4c59-8103-c1f496d07308",
+    "values": {
+      "latest": {
+        "ingress": 1159453360.425249,
+        "egress": 1239597215.4418604
+      },
+      "mean": {
+        "ingress": 1445855079.1191394,
+        "egress": 1333031554.7530649
+      },
+      "max": {
+        "ingress": 2982672133.12,
+        "egress": 2933504125.2
+      }
+    }
+  },
+  {
+    "scid": "b9f8f440-038d-4a4e-bb99-6afdd111d953",
+    "values": {
+      "latest": {
+        "ingress": 30941.076411960134,
+        "egress": 30871.335548172756
+      },
+      "mean": {
+        "ingress": 30112.772635607238,
+        "egress": 32052.325378604135
+      },
+      "max": {
+        "ingress": 48856.5049833887,
+        "egress": 49339.706666666665
+      }
+    }
+  },
+  {
+    "scid": "ba5f76b0-1612-4e9f-bfc5-e9f5d8bbaf75",
+    "values": {
+      "latest": {
+        "ingress": 671430166.1866666,
+        "egress": 75704189.70666666
+      },
+      "mean": {
+        "ingress": 243840117.5592245,
+        "egress": 28398107.222564988
+      },
+      "max": {
+        "ingress": 885080288.2657807,
+        "egress": 106928385.94666667
+      }
+    }
+  },
+  {
+    "scid": "ba9322c1-93f2-409f-9ca8-163031e89fc5",
+    "values": {
+      "latest": {
+        "ingress": 2376500997.6266665,
+        "egress": 2061915663.04
+      },
+      "mean": {
+        "ingress": 1875530466.886698,
+        "egress": 1643990305.0691187
+      },
+      "max": {
+        "ingress": 3340180187.9466667,
+        "egress": 2599102502.7774086
+      }
+    }
+  },
+  {
+    "scid": "badce9f7-75f9-4033-839b-4abf274ba34a",
+    "values": {
+      "latest": {
+        "ingress": 936528906.8361204,
+        "egress": 850729623.5183946
+      },
+      "mean": {
+        "ingress": 668210927.4057561,
+        "egress": 441987737.5087084
+      },
+      "max": {
+        "ingress": 3725915739.561462,
+        "egress": 2299568130.32
+      }
+    }
+  },
+  {
+    "scid": "baf94437-b3b0-49b6-84cf-09c027e9d4f8",
+    "values": {
+      "latest": {
+        "ingress": 80513497.73333333,
+        "egress": 1509.92
+      },
+      "mean": {
+        "ingress": 45824650.73845485,
+        "egress": 1318.0889542397429
+      },
+      "max": {
+        "ingress": 263327249.5250836,
+        "egress": 1889.9933554817276
+      }
+    }
+  },
+  {
+    "scid": "bb3aeb56-5f86-4023-acc7-557780a35424",
+    "values": {
+      "latest": {
+        "ingress": 156.21333333333334,
+        "egress": 139.65333333333334
+      },
+      "mean": {
+        "ingress": 162.5251636456684,
+        "egress": 139.8686977445671
+      },
+      "max": {
+        "ingress": 192.05333333333334,
+        "egress": 145.59468438538207
+      }
+    }
+  },
+  {
+    "scid": "bb5ab83d-82f7-4984-8737-a10faff5e16f",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "bb783906-5d3c-461a-adca-a6151b843aac",
+    "values": {
+      "latest": {
+        "ingress": 75906.95016611296,
+        "egress": 295119.4418604651
+      },
+      "mean": {
+        "ingress": 79823.85409919613,
+        "egress": 358556.98162878235
+      },
+      "max": {
+        "ingress": 218018.13861386137,
+        "egress": 1211926.119205298
+      }
+    }
+  },
+  {
+    "scid": "bbe48914-6d1c-46c9-8086-8c328d3bafdc",
+    "values": {
+      "latest": {
+        "ingress": 235.08305647840533,
+        "egress": 773341273.4086379
+      },
+      "mean": {
+        "ingress": 262.6311361550175,
+        "egress": 1974997698.1089969
+      },
+      "max": {
+        "ingress": 358.96,
+        "egress": 17295412568.39867
+      }
+    }
+  },
+  {
+    "scid": "bbe76de0-e9b4-45e5-add5-5415245a28f7",
+    "values": {
+      "latest": {
+        "ingress": 95388.29333333333,
+        "egress": 217.62666666666667
+      },
+      "mean": {
+        "ingress": 28502897.14116605,
+        "egress": 218.62498767296307
+      },
+      "max": {
+        "ingress": 986991900.3466667,
+        "egress": 298.6933333333333
+      }
+    }
+  },
+  {
+    "scid": "bc06fe95-4236-4a26-b343-b1976d7f8e39",
+    "values": {
+      "latest": {
+        "ingress": 74.27814569536424,
+        "egress": 88.63576158940397
+      },
+      "mean": {
+        "ingress": 77.50567269987253,
+        "egress": 93.87477645345668
+      },
+      "max": {
+        "ingress": 83.77257525083613,
+        "egress": 102.21926910299004
+      }
+    }
+  },
+  {
+    "scid": "bc1a44f4-7ae8-4a89-ad19-241866f73378",
+    "values": {
+      "latest": {
+        "ingress": 2289.0933333333332,
+        "egress": 885.1466666666666
+      },
+      "mean": {
+        "ingress": 3687.296157730757,
+        "egress": 1106.6657058373187
+      },
+      "max": {
+        "ingress": 11008.85049833887,
+        "egress": 2752.0531561461794
+      }
+    }
+  },
+  {
+    "scid": "bc54f878-78a5-4b91-8241-3041224c3cce",
+    "values": {
+      "latest": {
+        "ingress": 3308.72,
+        "egress": 73583988.29333334
+      },
+      "mean": {
+        "ingress": 2945.138215038306,
+        "egress": 504876494.1049762
+      },
+      "max": {
+        "ingress": 21059.667774086378,
+        "egress": 20849070909.687706
+      }
+    }
+  },
+  {
+    "scid": "bc6ced75-3059-458a-a60f-203fa1fe4066",
+    "values": {
+      "latest": {
+        "ingress": 78.82666666666667,
+        "egress": 96.72
+      },
+      "mean": {
+        "ingress": 160080.0779223361,
+        "egress": 60103455.59465874
+      },
+      "max": {
+        "ingress": 2111606.3466666667,
+        "egress": 862806658.3733333
+      }
+    }
+  },
+  {
+    "scid": "bc6d5311-3173-490e-8ea0-09d12d6518d5",
+    "values": {
+      "latest": {
+        "ingress": 3270.8,
+        "egress": 10375.92
+      },
+      "mean": {
+        "ingress": 3267.5360377684597,
+        "egress": 10297.058974893389
+      },
+      "max": {
+        "ingress": 3449.0915141430946,
+        "egress": 10532.853333333333
+      }
+    }
+  },
+  {
+    "scid": "bc857d8e-0ceb-47fa-83e9-810b75c5aa82",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 287.03678929765886
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 288.10742168493834
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 295.68
+      }
+    }
+  },
+  {
+    "scid": "bc96eb08-e225-484c-b1ff-c17a181a84b9",
+    "values": {
+      "latest": {
+        "ingress": 1064294991.255814,
+        "egress": 49058779.08305648
+      },
+      "mean": {
+        "ingress": 1002809186.9841422,
+        "egress": 139818421.426156
+      },
+      "max": {
+        "ingress": 2269355257.568106,
+        "egress": 629265999.3089701
+      }
+    }
+  },
+  {
+    "scid": "bc9dece8-ebf6-47bb-bf46-f9971f920528",
+    "values": {
+      "latest": {
+        "ingress": 783203.6943521595,
+        "egress": 1944787.1362126246
+      },
+      "mean": {
+        "ingress": 748932.53256041,
+        "egress": 1918603.0924409444
+      },
+      "max": {
+        "ingress": 942529.04,
+        "egress": 2000705.0933333333
+      }
+    }
+  },
+  {
+    "scid": "bcd19a90-051d-4aa5-9a20-436e23c038c0",
+    "values": {
+      "latest": {
+        "ingress": 324501.38666666666,
+        "egress": 90504.24
+      },
+      "mean": {
+        "ingress": 305810.4003945715,
+        "egress": 94121.87614852497
+      },
+      "max": {
+        "ingress": 587881.8933333333,
+        "egress": 252636.53333333333
+      }
+    }
+  },
+  {
+    "scid": "bd04925e-e0bf-4bc0-aeed-6cbcd277660a",
+    "values": {
+      "latest": {
+        "ingress": 5395.7086092715235,
+        "egress": 514.6490066225166
+      },
+      "mean": {
+        "ingress": 3771.7902728454264,
+        "egress": 556.9249768481907
+      },
+      "max": {
+        "ingress": 5661.395348837209,
+        "egress": 777.063122923588
+      }
+    }
+  },
+  {
+    "scid": "bd0b0011-52eb-452b-bd92-ee343984ce57",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "bd390604-e36a-45fe-b40a-b8bd85b6856c",
+    "values": {
+      "latest": {
+        "ingress": 2928345.6,
+        "egress": 8458866.266666668
+      },
+      "mean": {
+        "ingress": 2903812.101403744,
+        "egress": 8512606.669677265
+      },
+      "max": {
+        "ingress": 3414347.215946844,
+        "egress": 8684657.573333334
+      }
+    }
+  },
+  {
+    "scid": "bdaeefa1-99e5-41e9-b8de-13e10264e3da",
+    "values": {
+      "latest": {
+        "ingress": 272.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 272.11818670698113,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 275.7866666666667,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "bdf51392-7991-4564-bc29-c409c4bd840b",
+    "values": {
+      "latest": {
+        "ingress": 40793.89966555184,
+        "egress": 1055749.9397993311
+      },
+      "mean": {
+        "ingress": 39671.96804100776,
+        "egress": 818967.6413802841
+      },
+      "max": {
+        "ingress": 60069.049833887046,
+        "egress": 1084139.2266666666
+      }
+    }
+  },
+  {
+    "scid": "be1ba63d-b53c-43ab-8d16-17b8c4517e18",
+    "values": {
+      "latest": {
+        "ingress": 19835.653333333332,
+        "egress": 267337528.64
+      },
+      "mean": {
+        "ingress": 22964.24852784184,
+        "egress": 293975480.09007
+      },
+      "max": {
+        "ingress": 31041.226666666666,
+        "egress": 582099843.4666667
+      }
+    }
+  },
+  {
+    "scid": "be2dcbf1-13e0-4c2b-822a-371c73f7ef28",
+    "values": {
+      "latest": {
+        "ingress": 25120966380.373333,
+        "egress": 15393865247.573334
+      },
+      "mean": {
+        "ingress": 23257062389.357555,
+        "egress": 15345516868.16112
+      },
+      "max": {
+        "ingress": 59657488658.77333,
+        "egress": 25221456756.518272
+      }
+    }
+  },
+  {
+    "scid": "be7a90ca-1e4b-41b4-8710-042be5a070fa",
+    "values": {
+      "latest": {
+        "ingress": 1218396314.8,
+        "egress": 8182642413.8133335
+      },
+      "mean": {
+        "ingress": 919324326.2692533,
+        "egress": 7117462591.038217
+      },
+      "max": {
+        "ingress": 3555518961.932886,
+        "egress": 14547619992.266666
+      }
+    }
+  },
+  {
+    "scid": "beb2d2ce-a399-406c-b323-ecd1eae09269",
+    "values": {
+      "latest": {
+        "ingress": 94.29333333333334,
+        "egress": 1346.56
+      },
+      "mean": {
+        "ingress": 92.10318438406006,
+        "egress": 1133.3897465186046
+      },
+      "max": {
+        "ingress": 135.97333333333333,
+        "egress": 1427.1362126245847
+      }
+    }
+  },
+  {
+    "scid": "bfc4f0d7-3852-46bb-ad3a-930bdcd1cf20",
+    "values": {
+      "latest": {
+        "ingress": 1491.0033222591362,
+        "egress": 19705.78073089701
+      },
+      "mean": {
+        "ingress": 1487.054468497464,
+        "egress": 20918.096937858227
+      },
+      "max": {
+        "ingress": 1512.751677852349,
+        "egress": 72368.4
+      }
+    }
+  },
+  {
+    "scid": "bfff3423-7cbf-46a3-9f5a-5cfbb34cd382",
+    "values": {
+      "latest": {
+        "ingress": 202.94039735099338,
+        "egress": 252.8476821192053
+      },
+      "mean": {
+        "ingress": 204.36657042753893,
+        "egress": 256.35847249294847
+      },
+      "max": {
+        "ingress": 209.86046511627907,
+        "egress": 262.24
+      }
+    }
+  },
+  {
+    "scid": "c0130d43-abac-4dc2-9b91-4e0d39e608bd",
+    "values": {
+      "latest": {
+        "ingress": 20.980132450331126,
+        "egress": 1131.6026490066224
+      },
+      "mean": {
+        "ingress": 27.010923066054126,
+        "egress": 1135.4104429815593
+      },
+      "max": {
+        "ingress": 102.98666666666666,
+        "egress": 1558.56
+      }
+    }
+  },
+  {
+    "scid": "c0f795da-5b2f-4652-b465-c220d662e892",
+    "values": {
+      "latest": {
+        "ingress": 113.72757475083057,
+        "egress": 109.04983388704319
+      },
+      "mean": {
+        "ingress": 112.22534236303804,
+        "egress": 107.62559010848197
+      },
+      "max": {
+        "ingress": 124.48,
+        "egress": 119.36
+      }
+    }
+  },
+  {
+    "scid": "c1671512-4f49-46ba-9264-aeb5287eaf17",
+    "values": {
+      "latest": {
+        "ingress": 5109016765.226666,
+        "egress": 6377774700.1866665
+      },
+      "mean": {
+        "ingress": 5086261784.4443655,
+        "egress": 5797637639.789065
+      },
+      "max": {
+        "ingress": 16079050155.546667,
+        "egress": 26160806502.73544
+      }
+    }
+  },
+  {
+    "scid": "c1a05ef7-133c-4ba9-a46a-fad8d55c17e9",
+    "values": {
+      "latest": {
+        "ingress": 55585550740.83721,
+        "egress": 79724766250.52492
+      },
+      "mean": {
+        "ingress": 74978214094.61555,
+        "egress": 72511278355.87224
+      },
+      "max": {
+        "ingress": 144961916498.49835,
+        "egress": 138712377947.61203
+      }
+    }
+  },
+  {
+    "scid": "c1b43827-bd76-4f4a-872a-0e2ba1816e6b",
+    "values": {
+      "latest": {
+        "ingress": 2013.4485049833886,
+        "egress": 2013.4485049833886
+      },
+      "mean": {
+        "ingress": 2018.9846772469552,
+        "egress": 2021.717612922006
+      },
+      "max": {
+        "ingress": 2042.5953177257525,
+        "egress": 2047.0635451505016
+      }
+    }
+  },
+  {
+    "scid": "c1f65e8f-588f-4863-93e7-2b88cd228a47",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "c23442f2-3e0e-4fb0-b0be-fc1f3e2ea273",
+    "values": {
+      "latest": {
+        "ingress": 1881166579.6266668,
+        "egress": 50488417.946666665
+      },
+      "mean": {
+        "ingress": 967835765.4069359,
+        "egress": 261298599.78045014
+      },
+      "max": {
+        "ingress": 2986960680.0,
+        "egress": 2828883240.64
+      }
+    }
+  },
+  {
+    "scid": "c23e44cf-a432-4564-bac6-3eccf4b49868",
+    "values": {
+      "latest": {
+        "ingress": 289.33779264214047,
+        "egress": 173.88628762541805
+      },
+      "mean": {
+        "ingress": 269.0950001324798,
+        "egress": 170.04896521629286
+      },
+      "max": {
+        "ingress": 358.2876254180602,
+        "egress": 177.05960264900662
+      }
+    }
+  },
+  {
+    "scid": "c2535121-6f0a-44f4-bab8-ebde3099606d",
+    "values": {
+      "latest": {
+        "ingress": 238529831.30666667,
+        "egress": 2257.2
+      },
+      "mean": {
+        "ingress": 202353552.63757187,
+        "egress": 2446.5773713932153
+      },
+      "max": {
+        "ingress": 469089523.98671097,
+        "egress": 6876.933333333333
+      }
+    }
+  },
+  {
+    "scid": "c26b818b-0512-4be8-9740-62f2ba60da81",
+    "values": {
+      "latest": {
+        "ingress": 36085.88628762542,
+        "egress": 34221.163879598666
+      },
+      "mean": {
+        "ingress": 25616.198779449813,
+        "egress": 29316.175662421527
+      },
+      "max": {
+        "ingress": 51816.13289036545,
+        "egress": 194750.27242524916
+      }
+    }
+  },
+  {
+    "scid": "c29d438f-0d92-44e0-a730-1b74577463b5",
+    "values": {
+      "latest": {
+        "ingress": 2261.7792642140466,
+        "egress": 6718714.193979933
+      },
+      "mean": {
+        "ingress": 2247.5517287710377,
+        "egress": 9781485.438494515
+      },
+      "max": {
+        "ingress": 2270.9066666666668,
+        "egress": 125689541.22558923
+      }
+    }
+  },
+  {
+    "scid": "c2a86c96-75ac-4bd4-a540-52acdb190e82",
+    "values": {
+      "latest": {
+        "ingress": 576.96,
+        "egress": 422.4266666666667
+      },
+      "mean": {
+        "ingress": 572.5590770110759,
+        "egress": 419.56146553201603
+      },
+      "max": {
+        "ingress": 586.369384359401,
+        "egress": 436.77870216306155
+      }
+    }
+  },
+  {
+    "scid": "c2af009b-d919-4ead-b5d4-f4d1e05318e0",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "c2b1e809-0e87-438e-a0f4-ee1e3b09f831",
+    "values": {
+      "latest": {
+        "ingress": 537556.1333333333,
+        "egress": 328665789.70666665
+      },
+      "mean": {
+        "ingress": 297004.5585565648,
+        "egress": 310901929.74487233
+      },
+      "max": {
+        "ingress": 843038.0134228187,
+        "egress": 943710240.5562913
+      }
+    }
+  },
+  {
+    "scid": "c2d5f624-3636-4670-9954-62760ed1c293",
+    "values": {
+      "latest": {
+        "ingress": 229131.82724252492,
+        "egress": 20765.39534883721
+      },
+      "mean": {
+        "ingress": 313770.4538643481,
+        "egress": 161563.62570797745
+      },
+      "max": {
+        "ingress": 7594469.342281879,
+        "egress": 7658439.357859531
+      }
+    }
+  },
+  {
+    "scid": "c310cf90-0422-4e84-8cf0-47ba377cff1c",
+    "values": {
+      "latest": {
+        "ingress": 319.9202657807309,
+        "egress": 3686.3255813953488
+      },
+      "mean": {
+        "ingress": 508.79723135647777,
+        "egress": 3745.6097331312208
+      },
+      "max": {
+        "ingress": 32970.09271523179,
+        "egress": 11538.933333333332
+      }
+    }
+  },
+  {
+    "scid": "c335e87a-a00f-48c9-9e5a-71693e8ea6c0",
+    "values": {
+      "latest": {
+        "ingress": 104287.4950166113,
+        "egress": 6640247.734219269
+      },
+      "mean": {
+        "ingress": 107131.3099974352,
+        "egress": 10554903.47357146
+      },
+      "max": {
+        "ingress": 180236.48,
+        "egress": 108928363.01333334
+      }
+    }
+  },
+  {
+    "scid": "c35754f2-9b40-432e-88db-84138eb6e783",
+    "values": {
+      "latest": {
+        "ingress": 1738.0730897009967,
+        "egress": 107417223.89368771
+      },
+      "mean": {
+        "ingress": 1825.7182159540428,
+        "egress": 132827784.95221771
+      },
+      "max": {
+        "ingress": 2584.0529801324506,
+        "egress": 197302569.0099668
+      }
+    }
+  },
+  {
+    "scid": "c39b0dd0-dfb4-4d59-90b0-0a85f2485d68",
+    "values": {
+      "latest": {
+        "ingress": 2096183780.3056479,
+        "egress": 108374624.10631229
+      },
+      "mean": {
+        "ingress": 1537365560.1325033,
+        "egress": 157488083.59239656
+      },
+      "max": {
+        "ingress": 2503013025.6688743,
+        "egress": 735753429.3421926
+      }
+    }
+  },
+  {
+    "scid": "c3e109c3-4e36-4cf4-a5c9-d91e2f8648a5",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "c417031b-98e1-4dc9-a737-f7d75f8604ad",
+    "values": {
+      "latest": {
+        "ingress": 744071186.7906977,
+        "egress": 239720292.41196012
+      },
+      "mean": {
+        "ingress": 713870469.7601625,
+        "egress": 255041099.53543288
+      },
+      "max": {
+        "ingress": 1095936389.8205981,
+        "egress": 396780407.14666665
+      }
+    }
+  },
+  {
+    "scid": "c41c5af1-6375-4f4b-aec0-a89444b6b527",
+    "values": {
+      "latest": {
+        "ingress": 424.1066666666667,
+        "egress": 442.56
+      },
+      "mean": {
+        "ingress": 420.992067459282,
+        "egress": 439.01074086851617
+      },
+      "max": {
+        "ingress": 435.73333333333335,
+        "egress": 453.92
+      }
+    }
+  },
+  {
+    "scid": "c4385623-973b-425f-978e-f1e67fbacc85",
+    "values": {
+      "latest": {
+        "ingress": 13001.85430463576,
+        "egress": 18449.509933774836
+      },
+      "mean": {
+        "ingress": 15063.187237494381,
+        "egress": 27997.887442667816
+      },
+      "max": {
+        "ingress": 29654.1926910299,
+        "egress": 72363.6146179402
+      }
+    }
+  },
+  {
+    "scid": "c4419bc4-2cbf-4bc8-9260-0cda17a00970",
+    "values": {
+      "latest": {
+        "ingress": 361219.5231788079,
+        "egress": 407025.90728476824
+      },
+      "mean": {
+        "ingress": 377593.040886908,
+        "egress": 416831.11556733545
+      },
+      "max": {
+        "ingress": 461491.1096345515,
+        "egress": 555780.1993355482
+      }
+    }
+  },
+  {
+    "scid": "c48751f8-34ad-439c-ac75-a1a04b5ed972",
+    "values": {
+      "latest": {
+        "ingress": 1395057980.0,
+        "egress": 404054752.93333334
+      },
+      "mean": {
+        "ingress": 1323533813.2212973,
+        "egress": 408560777.75585884
+      },
+      "max": {
+        "ingress": 1849599783.3333333,
+        "egress": 552963925.04
+      }
+    }
+  },
+  {
+    "scid": "c4f0c295-1abe-4464-8089-9d7606c4c37f",
+    "values": {
+      "latest": {
+        "ingress": 145315903.84,
+        "egress": 283.25333333333333
+      },
+      "mean": {
+        "ingress": 217944113.49830055,
+        "egress": 358.0251800184286
+      },
+      "max": {
+        "ingress": 1022105316.9251248,
+        "egress": 1516.32612312812
+      }
+    }
+  },
+  {
+    "scid": "c5169868-38fa-4809-84d3-81bfd8bd97a8",
+    "values": {
+      "latest": {
+        "ingress": 13688.829431438127,
+        "egress": 137250474.70234114
+      },
+      "mean": {
+        "ingress": 12756.778379272158,
+        "egress": 92549421.1158003
+      },
+      "max": {
+        "ingress": 17428.266666666666,
+        "egress": 154643414.90666667
+      }
+    }
+  },
+  {
+    "scid": "c517debb-5428-4cdf-82da-cdd396544e25",
+    "values": {
+      "latest": {
+        "ingress": 9545995458.72,
+        "egress": 7581318857.306666
+      },
+      "mean": {
+        "ingress": 8447462696.238379,
+        "egress": 5717898610.828593
+      },
+      "max": {
+        "ingress": 13576705619.866667,
+        "egress": 10917972924.305647
+      }
+    }
+  },
+  {
+    "scid": "c5bf4d76-6da0-44a1-afeb-6127ada78f16",
+    "values": {
+      "latest": {
+        "ingress": 2488.794701986755,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 1105.1053917576035,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 2510.3411371237457,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "c5bfe097-4a36-46db-b2c3-adff4f18db66",
+    "values": {
+      "latest": {
+        "ingress": 243.46666666666667,
+        "egress": 20002.266666666666
+      },
+      "mean": {
+        "ingress": 244.5524397804171,
+        "egress": 26239.046749874018
+      },
+      "max": {
+        "ingress": 250.7641196013289,
+        "egress": 1244599.1733333333
+      }
+    }
+  },
+  {
+    "scid": "c63fc8f0-7c84-43e5-9430-e2fca1bedfcb",
+    "values": {
+      "latest": {
+        "ingress": 15940.213333333333,
+        "egress": 19055.066666666666
+      },
+      "mean": {
+        "ingress": 16258.18864565899,
+        "egress": 18997.491371335305
+      },
+      "max": {
+        "ingress": 17501.668874172185,
+        "egress": 20316.82119205298
+      }
+    }
+  },
+  {
+    "scid": "c648e129-b7b9-4c78-bbf3-5bc66018c2f1",
+    "values": {
+      "latest": {
+        "ingress": 533.2533333333333,
+        "egress": 541.3866666666667
+      },
+      "mean": {
+        "ingress": 1415.5970603717687,
+        "egress": 574.0106275904136
+      },
+      "max": {
+        "ingress": 10392.986666666666,
+        "egress": 1523.92
+      }
+    }
+  },
+  {
+    "scid": "c65bd8e2-6e6a-421f-82df-edea4123a75f",
+    "values": {
+      "latest": {
+        "ingress": 1148509756.64,
+        "egress": 540780027.0933334
+      },
+      "mean": {
+        "ingress": 669538864.0581487,
+        "egress": 1040671838.1645732
+      },
+      "max": {
+        "ingress": 2101933951.2026577,
+        "egress": 10339506941.226667
+      }
+    }
+  },
+  {
+    "scid": "c662da28-422a-421a-b184-c6c246d67b6e",
+    "values": {
+      "latest": {
+        "ingress": 30.506666666666668,
+        "egress": 1183.4133333333334
+      },
+      "mean": {
+        "ingress": 102.43301446527317,
+        "egress": 985.6151116467771
+      },
+      "max": {
+        "ingress": 550.8266666666667,
+        "egress": 1423.7866666666666
+      }
+    }
+  },
+  {
+    "scid": "c67a3ca0-0cba-410a-8345-3dfa4a0fb559",
+    "values": {
+      "latest": {
+        "ingress": 23.2,
+        "egress": 109.6
+      },
+      "mean": {
+        "ingress": 23.277402236435847,
+        "egress": 118.46316047288796
+      },
+      "max": {
+        "ingress": 25.52,
+        "egress": 131.08305647840533
+      }
+    }
+  },
+  {
+    "scid": "c68d5615-2d47-4fde-b8be-bca37088df5e",
+    "values": {
+      "latest": {
+        "ingress": 150260879.33333334,
+        "egress": 154638976.69333333
+      },
+      "mean": {
+        "ingress": 260750771.68305698,
+        "egress": 285406681.9570919
+      },
+      "max": {
+        "ingress": 737834830.4318937,
+        "egress": 1519498038.1129568
+      }
+    }
+  },
+  {
+    "scid": "c69101bb-1942-4400-b11f-6ea34ee7e363",
+    "values": {
+      "latest": {
+        "ingress": 28859816891.93311,
+        "egress": 25619290324.1204
+      },
+      "mean": {
+        "ingress": 21356556904.80613,
+        "egress": 17400909581.47732
+      },
+      "max": {
+        "ingress": 42857532507.00332,
+        "egress": 48993529985.71237
+      }
+    }
+  },
+  {
+    "scid": "c73589e3-fd22-4fe7-bc54-4c0ae4de7efc",
+    "values": {
+      "latest": {
+        "ingress": 49917607778.60465,
+        "egress": 46549895071.22923
+      },
+      "mean": {
+        "ingress": 63080995772.1191,
+        "egress": 29891936225.72372
+      },
+      "max": {
+        "ingress": 129170220899.41333,
+        "egress": 74652117845.2709
+      }
+    }
+  },
+  {
+    "scid": "c7af49ba-94ec-413a-b819-14b37888133e",
+    "values": {
+      "latest": {
+        "ingress": 32.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 32.23373501370296,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 35.2,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "c7c2ba71-7c2a-433f-b643-99d5e5b9b26d",
+    "values": {
+      "latest": {
+        "ingress": 16487355519.173334,
+        "egress": 9816659667.44
+      },
+      "mean": {
+        "ingress": 13803812091.890648,
+        "egress": 6087889628.809749
+      },
+      "max": {
+        "ingress": 81416443412.89037,
+        "egress": 36742965334.033226
+      }
+    }
+  },
+  {
+    "scid": "c7f5e6de-99d1-4a67-9bf0-ae9aee46dba1",
+    "values": {
+      "latest": {
+        "ingress": 85.33333333333333,
+        "egress": 85.33333333333333
+      },
+      "mean": {
+        "ingress": 4739.044009473631,
+        "egress": 525.1863916033572
+      },
+      "max": {
+        "ingress": 72489.28,
+        "egress": 7415.093333333333
+      }
+    }
+  },
+  {
+    "scid": "c7fe2cc8-d104-461c-82c8-81a3deca515c",
+    "values": {
+      "latest": {
+        "ingress": 2913542903.52,
+        "egress": 17640943866.773335
+      },
+      "mean": {
+        "ingress": 1261025447.6289623,
+        "egress": 5733407381.052463
+      },
+      "max": {
+        "ingress": 3967977503.84,
+        "egress": 25203831750.013245
+      }
+    }
+  },
+  {
+    "scid": "c80fdf8c-c8b4-4dc2-a27a-ff02df72d61b",
+    "values": {
+      "latest": {
+        "ingress": 6016663.066666666,
+        "egress": 49950703.25333333
+      },
+      "mean": {
+        "ingress": 8427052.500543293,
+        "egress": 129897749.55419949
+      },
+      "max": {
+        "ingress": 29142411.093333334,
+        "egress": 943715827.5614618
+      }
+    }
+  },
+  {
+    "scid": "c83ba1d9-bff1-4947-8585-dc997f3be6a5",
+    "values": {
+      "latest": {
+        "ingress": 3702946.453333333,
+        "egress": 261390190.93333334
+      },
+      "mean": {
+        "ingress": 2798054.35291897,
+        "egress": 253277556.66708425
+      },
+      "max": {
+        "ingress": 13904105.386666667,
+        "egress": 853212256.56
+      }
+    }
+  },
+  {
+    "scid": "c854bca5-a89b-44aa-b307-46c4b712d592",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "c8b67507-835d-47b7-b137-4bc0d1a7104d",
+    "values": {
+      "latest": {
+        "ingress": 1697789258.88,
+        "egress": 2115940308.1866667
+      },
+      "mean": {
+        "ingress": 1140330858.4334707,
+        "egress": 1691330261.8816347
+      },
+      "max": {
+        "ingress": 1897196238.1866667,
+        "egress": 3050770049.5733333
+      }
+    }
+  },
+  {
+    "scid": "c8bee5bf-01ee-4d42-89fb-894e85597692",
+    "values": {
+      "latest": {
+        "ingress": 626.5866666666667,
+        "egress": 919.8666666666667
+      },
+      "mean": {
+        "ingress": 629.0979414641798,
+        "egress": 861.8876394896333
+      },
+      "max": {
+        "ingress": 661.7408637873754,
+        "egress": 1004.7574750830565
+      }
+    }
+  },
+  {
+    "scid": "c90af496-4a28-4cd1-a177-b27967b34f06",
+    "values": {
+      "latest": {
+        "ingress": 71.14666666666666,
+        "egress": 73580596.02666667
+      },
+      "mean": {
+        "ingress": 74.24708827986028,
+        "egress": 504873013.39807004
+      },
+      "max": {
+        "ingress": 98.07308970099668,
+        "egress": 20849067164.119602
+      }
+    }
+  },
+  {
+    "scid": "c94845ef-6002-45a8-98cb-a4f207e6b31b",
+    "values": {
+      "latest": {
+        "ingress": 506579.6,
+        "egress": 983.3066666666666
+      },
+      "mean": {
+        "ingress": 541607.1139230706,
+        "egress": 902.2213259885772
+      },
+      "max": {
+        "ingress": 1326222.5357737106,
+        "egress": 1385.328903654485
+      }
+    }
+  },
+  {
+    "scid": "c9a4f7b5-3126-4ec9-b5d0-178117a60880",
+    "values": {
+      "latest": {
+        "ingress": 5250831093.546667,
+        "egress": 2374846528.7733335
+      },
+      "mean": {
+        "ingress": 4118477893.907917,
+        "egress": 2534895831.871151
+      },
+      "max": {
+        "ingress": 7461969234.96,
+        "egress": 7540287377.9009905
+      }
+    }
+  },
+  {
+    "scid": "c9aef082-e342-4e48-8c9a-57805a1d9d48",
+    "values": {
+      "latest": {
+        "ingress": 144.96,
+        "egress": 1487.3866666666668
+      },
+      "mean": {
+        "ingress": 151.88542704407433,
+        "egress": 1444.4664317420907
+      },
+      "max": {
+        "ingress": 269.2890365448505,
+        "egress": 2077.76
+      }
+    }
+  },
+  {
+    "scid": "c9beda45-f721-47b9-8b22-1f6f991212e3",
+    "values": {
+      "latest": {
+        "ingress": 295.04,
+        "egress": 2640.1866666666665
+      },
+      "mean": {
+        "ingress": 292.28996633723426,
+        "egress": 6543.82835788066
+      },
+      "max": {
+        "ingress": 314.70198675496687,
+        "egress": 45286.51162790698
+      }
+    }
+  },
+  {
+    "scid": "c9c70e8d-8f14-44e4-ada6-d1ba6c3e1414",
+    "values": {
+      "latest": {
+        "ingress": 348.38795986622074,
+        "egress": 642.0602006688963
+      },
+      "mean": {
+        "ingress": 346.7035090732594,
+        "egress": 641.9235572490544
+      },
+      "max": {
+        "ingress": 360.56,
+        "egress": 662.24
+      }
+    }
+  },
+  {
+    "scid": "c9d3556a-bb2d-4b13-89ae-eb626906a0f1",
+    "values": {
+      "latest": {
+        "ingress": 413.7142857142857,
+        "egress": 399.6279069767442
+      },
+      "mean": {
+        "ingress": 418.1333568443968,
+        "egress": 563.1835260665788
+      },
+      "max": {
+        "ingress": 433.24916943521595,
+        "egress": 33050.320907617504
+      }
+    }
+  },
+  {
+    "scid": "c9de51c7-7e2d-4570-ac0a-a5a652237dbc",
+    "values": {
+      "latest": {
+        "ingress": 13534521381.714285,
+        "egress": 6831726998.059801
+      },
+      "mean": {
+        "ingress": 10003448693.037292,
+        "egress": 5617461432.447641
+      },
+      "max": {
+        "ingress": 17567008993.668873,
+        "egress": 9346195004.91089
+      }
+    }
+  },
+  {
+    "scid": "c9f58189-ad91-44df-b352-69d9ea80a002",
+    "values": {
+      "latest": {
+        "ingress": 2654.0533333333333,
+        "egress": 11.146666666666667
+      },
+      "mean": {
+        "ingress": 2457.2468587850726,
+        "egress": 18.806794725912578
+      },
+      "max": {
+        "ingress": 5196.598006644518,
+        "egress": 37.12
+      }
+    }
+  },
+  {
+    "scid": "c9fd12ba-3ffc-4336-9d0c-a2394dfe835d",
+    "values": {
+      "latest": {
+        "ingress": 2460477.2,
+        "egress": 1138327.0666666667
+      },
+      "mean": {
+        "ingress": 389045288.6015372,
+        "egress": 621712823.9657276
+      },
+      "max": {
+        "ingress": 2044778759.0282862,
+        "egress": 4505261336.1866665
+      }
+    }
+  },
+  {
+    "scid": "ca2cff36-bdaf-4158-95fc-bd1bcaf41df2",
+    "values": {
+      "latest": {
+        "ingress": 24931338.586666666,
+        "egress": 491974163.0133333
+      },
+      "mean": {
+        "ingress": 45566061.608443156,
+        "egress": 203428146.4245619
+      },
+      "max": {
+        "ingress": 852534847.2292359,
+        "egress": 3271846765.2
+      }
+    }
+  },
+  {
+    "scid": "ca39e8f6-2fbd-4d04-ba99-153276b2bc99",
+    "values": {
+      "latest": {
+        "ingress": 8206.4,
+        "egress": 1077708646.1066666
+      },
+      "mean": {
+        "ingress": 8874.432082750696,
+        "egress": 731621303.6925452
+      },
+      "max": {
+        "ingress": 21000.586666666666,
+        "egress": 1279869329.4617941
+      }
+    }
+  },
+  {
+    "scid": "caa54ef7-b04a-4f74-882c-889a0a57c95e",
+    "values": {
+      "latest": {
+        "ingress": 13489603274.32,
+        "egress": 10161013067.626667
+      },
+      "mean": {
+        "ingress": 14986752123.186222,
+        "egress": 9651163746.314068
+      },
+      "max": {
+        "ingress": 48028636017.41333,
+        "egress": 19425081386.872482
+      }
+    }
+  },
+  {
+    "scid": "cac678e8-45d9-4472-a7b3-61d498b19b53",
+    "values": {
+      "latest": {
+        "ingress": 322827347.3333333,
+        "egress": 1294804485.28
+      },
+      "mean": {
+        "ingress": 2104976496.7752545,
+        "egress": 1152750732.467659
+      },
+      "max": {
+        "ingress": 24173553379.65333,
+        "egress": 2119794248.3733332
+      }
+    }
+  },
+  {
+    "scid": "cb832ef3-f739-4bc3-b9ef-ffac677e5dd8",
+    "values": {
+      "latest": {
+        "ingress": 249913.1772575251,
+        "egress": 4628.869565217391
+      },
+      "mean": {
+        "ingress": 249461.41306432404,
+        "egress": 4014.948855519062
+      },
+      "max": {
+        "ingress": 500213.76,
+        "egress": 34127.708609271525
+      }
+    }
+  },
+  {
+    "scid": "cc5f3b04-63ee-4f93-89c2-ff9d7cec0f13",
+    "values": {
+      "latest": {
+        "ingress": 482.88,
+        "egress": 1881.7066666666667
+      },
+      "mean": {
+        "ingress": 1341.90329014937,
+        "egress": 2077.6712940439425
+      },
+      "max": {
+        "ingress": 87942.88,
+        "egress": 6646.538205980067
+      }
+    }
+  },
+  {
+    "scid": "cccb78db-0584-4c94-ae86-8528f036ad77",
+    "values": {
+      "latest": {
+        "ingress": 73456250011.70667,
+        "egress": 85447776695.30667
+      },
+      "mean": {
+        "ingress": 69057873074.59697,
+        "egress": 85418949995.49515
+      },
+      "max": {
+        "ingress": 129178640602.71947,
+        "egress": 176187183435.69232
+      }
+    }
+  },
+  {
+    "scid": "cd200521-330b-4fa8-b689-70c18e69bb67",
+    "values": {
+      "latest": {
+        "ingress": 82809635.30666667,
+        "egress": 154420257.44
+      },
+      "mean": {
+        "ingress": 6335080.912344308,
+        "egress": 399373264.1369428
+      },
+      "max": {
+        "ingress": 82991465.57333334,
+        "egress": 1260007732.8266666
+      }
+    }
+  },
+  {
+    "scid": "cd6722d5-af7f-4d81-a27b-1f111e56c5b2",
+    "values": {
+      "latest": {
+        "ingress": 38.08,
+        "egress": 1760.5866666666666
+      },
+      "mean": {
+        "ingress": 39.76110622413871,
+        "egress": 1838.1830182341819
+      },
+      "max": {
+        "ingress": 92.75167785234899,
+        "egress": 2166.5066666666667
+      }
+    }
+  },
+  {
+    "scid": "cdb20727-90f0-4c2c-8e6d-6fac841703fd",
+    "values": {
+      "latest": {
+        "ingress": 309268.4916943522,
+        "egress": 85622443.02990033
+      },
+      "mean": {
+        "ingress": 1617365.580815425,
+        "egress": 125161650.25139752
+      },
+      "max": {
+        "ingress": 26629042.346666668,
+        "egress": 269919876.26666665
+      }
+    }
+  },
+  {
+    "scid": "ce3c927c-fb1e-47ed-9755-4c2e5cfd0e26",
+    "values": {
+      "latest": {
+        "ingress": 400128.40133779263,
+        "egress": 178332.4949832776
+      },
+      "mean": {
+        "ingress": 373094.3297825533,
+        "egress": 173381.01720021004
+      },
+      "max": {
+        "ingress": 409699.03355704696,
+        "egress": 218748.93959731545
+      }
+    }
+  },
+  {
+    "scid": "ce8f3f15-dd6b-49f7-9815-d0f830e1704b",
+    "values": {
+      "latest": {
+        "ingress": 273.70666666666665,
+        "egress": 854.4266666666666
+      },
+      "mean": {
+        "ingress": 273.1947662000131,
+        "egress": 763.2243442970815
+      },
+      "max": {
+        "ingress": 275.5436241610738,
+        "egress": 936.4784053156146
+      }
+    }
+  },
+  {
+    "scid": "cecf64bf-c5b5-4ad0-8f42-e213434f1c8e",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "cee65467-4691-475c-a62a-7271db8ff9a1",
+    "values": {
+      "latest": {
+        "ingress": 743.7866666666666,
+        "egress": 937.6
+      },
+      "mean": {
+        "ingress": 630.8131314205119,
+        "egress": 895.7114714258952
+      },
+      "max": {
+        "ingress": 800.0797342192691,
+        "egress": 1043.4285714285713
+      }
+    }
+  },
+  {
+    "scid": "ceecb999-0473-4a5a-bbbb-d31d27c87e5d",
+    "values": {
+      "latest": {
+        "ingress": 3194.1866666666665,
+        "egress": 3760.8533333333335
+      },
+      "mean": {
+        "ingress": 2715.920361006733,
+        "egress": 3663.6071995804327
+      },
+      "max": {
+        "ingress": 4639.197324414716,
+        "egress": 4762.64
+      }
+    }
+  },
+  {
+    "scid": "cf450d34-80f9-4d5e-96c2-423f0a3bde05",
+    "values": {
+      "latest": {
+        "ingress": 338507.8933333333,
+        "egress": 126936.69333333333
+      },
+      "mean": {
+        "ingress": 364802.93611053954,
+        "egress": 143790.6032101538
+      },
+      "max": {
+        "ingress": 836309.6989966555,
+        "egress": 758122.6133333333
+      }
+    }
+  },
+  {
+    "scid": "cf62a005-e362-46b9-a3a6-325028dac384",
+    "values": {
+      "latest": {
+        "ingress": 1182174537.3866668,
+        "egress": 35465924.08
+      },
+      "mean": {
+        "ingress": 473972029.3072123,
+        "egress": 29145536.150273263
+      },
+      "max": {
+        "ingress": 3890562291.4933333,
+        "egress": 255246483.22666666
+      }
+    }
+  },
+  {
+    "scid": "cf86b03f-5196-4733-a09d-0224957ba9f7",
+    "values": {
+      "latest": {
+        "ingress": 7256.666666666667,
+        "egress": 5352.373333333333
+      },
+      "mean": {
+        "ingress": 13725.396001882256,
+        "egress": 6164.170969269852
+      },
+      "max": {
+        "ingress": 55916.46511627907,
+        "egress": 9841.973333333333
+      }
+    }
+  },
+  {
+    "scid": "cf95c776-7c22-45e0-ad5c-004758163354",
+    "values": {
+      "latest": {
+        "ingress": 3587.056478405316,
+        "egress": 9.196013289036545
+      },
+      "mean": {
+        "ingress": 3498.8519167125723,
+        "egress": 32.09516139420637
+      },
+      "max": {
+        "ingress": 10827.76,
+        "egress": 122.95302013422818
+      }
+    }
+  },
+  {
+    "scid": "cfab41d6-3fa5-4373-97b0-d0309b75787c",
+    "values": {
+      "latest": {
+        "ingress": 6874.64,
+        "egress": 4607.413333333333
+      },
+      "mean": {
+        "ingress": 7690.415353539404,
+        "egress": 10833.300190943903
+      },
+      "max": {
+        "ingress": 13880.66889632107,
+        "egress": 307127.4381270903
+      }
+    }
+  },
+  {
+    "scid": "cff07a10-55b1-487f-87a6-4d1078926e5d",
+    "values": {
+      "latest": {
+        "ingress": 51335093.306666665,
+        "egress": 145199142.88
+      },
+      "mean": {
+        "ingress": 349980673.6898635,
+        "egress": 263928422.65983412
+      },
+      "max": {
+        "ingress": 3331842988.0266666,
+        "egress": 1346974288.5315614
+      }
+    }
+  },
+  {
+    "scid": "cff4798f-d9e2-4fc4-9da3-70632c6311ab",
+    "values": {
+      "latest": {
+        "ingress": 2119220.0664451825,
+        "egress": 8032387.933554817
+      },
+      "mean": {
+        "ingress": 2990484.46364069,
+        "egress": 8675376.761365987
+      },
+      "max": {
+        "ingress": 9452621.182724252,
+        "egress": 15765826.133333333
+      }
+    }
+  },
+  {
+    "scid": "d002e64a-83fc-4ec4-bc46-bda9f0797d80",
+    "values": {
+      "latest": {
+        "ingress": 341.46666666666664,
+        "egress": 633.28
+      },
+      "mean": {
+        "ingress": 342.63515144493203,
+        "egress": 633.8992319519872
+      },
+      "max": {
+        "ingress": 350.29333333333335,
+        "egress": 644.0
+      }
+    }
+  },
+  {
+    "scid": "d0036e59-f4c0-4d43-b044-4b7b42493af9",
+    "values": {
+      "latest": {
+        "ingress": 1331917029.9733334,
+        "egress": 335767283.6533333
+      },
+      "mean": {
+        "ingress": 886584529.3685517,
+        "egress": 200352073.06963703
+      },
+      "max": {
+        "ingress": 3417864105.3023257,
+        "egress": 763999381.6877077
+      }
+    }
+  },
+  {
+    "scid": "d025b23f-9550-4555-958a-47a5dcef3c39",
+    "values": {
+      "latest": {
+        "ingress": 23609623424.426666,
+        "egress": 63435509866.24
+      },
+      "mean": {
+        "ingress": 27416055427.375446,
+        "egress": 29381381169.522476
+      },
+      "max": {
+        "ingress": 65074588788.90667,
+        "egress": 88005694095.30898
+      }
+    }
+  },
+  {
+    "scid": "d02a13a6-b710-46ef-9ee4-250e09f1a37f",
+    "values": {
+      "latest": {
+        "ingress": 806847913.92,
+        "egress": 1465332466.0
+      },
+      "mean": {
+        "ingress": 637334522.9681598,
+        "egress": 1507224365.5231106
+      },
+      "max": {
+        "ingress": 1443730730.1794019,
+        "egress": 6361492716.066445
+      }
+    }
+  },
+  {
+    "scid": "d04c73f8-db92-4732-ad93-c650e164f0f8",
+    "values": {
+      "latest": {
+        "ingress": 11809955148.361204,
+        "egress": 24918424122.354515
+      },
+      "mean": {
+        "ingress": 10197195268.700314,
+        "egress": 21146869015.908737
+      },
+      "max": {
+        "ingress": 14776849077.615894,
+        "egress": 41227465216.18543
+      }
+    }
+  },
+  {
+    "scid": "d04dbc76-f3cd-48a7-83ca-314b9aa5a1f7",
+    "values": {
+      "latest": {
+        "ingress": 440496323.17333335,
+        "egress": 293815518.82666665
+      },
+      "mean": {
+        "ingress": 505611905.82916963,
+        "egress": 305839129.108323
+      },
+      "max": {
+        "ingress": 736091201.92,
+        "egress": 1300652432.9333334
+      }
+    }
+  },
+  {
+    "scid": "d0ad0d4f-2f3b-4733-934d-476639ed5cea",
+    "values": {
+      "latest": {
+        "ingress": 2063515.761589404,
+        "egress": 1165940.847682119
+      },
+      "mean": {
+        "ingress": 2089000.1781680544,
+        "egress": 1172037.1049892616
+      },
+      "max": {
+        "ingress": 2170790.530884808,
+        "egress": 1281015.6026490065
+      }
+    }
+  },
+  {
+    "scid": "d1ff1057-25d7-4793-bbe4-85df185237ce",
+    "values": {
+      "latest": {
+        "ingress": 1544895323.9205298,
+        "egress": 3910280474.807947
+      },
+      "mean": {
+        "ingress": 1868067645.1090484,
+        "egress": 3595585430.652066
+      },
+      "max": {
+        "ingress": 15643386234.146667,
+        "egress": 38872761464.76
+      }
+    }
+  },
+  {
+    "scid": "d2017c5e-19b5-4de9-85db-0eba31a02c3f",
+    "values": {
+      "latest": {
+        "ingress": 16270.373333333333,
+        "egress": 24097.706666666665
+      },
+      "mean": {
+        "ingress": 13430.974970379457,
+        "egress": 24150.22563551762
+      },
+      "max": {
+        "ingress": 25849.573333333334,
+        "egress": 46351.066666666666
+      }
+    }
+  },
+  {
+    "scid": "d22515e7-bd25-43b0-8b03-dc2b6460b8b3",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "d2546c58-d676-406d-9923-e3867bbe02d3",
+    "values": {
+      "latest": {
+        "ingress": 32230866.053333335,
+        "egress": 93662462.74666667
+      },
+      "mean": {
+        "ingress": 42368464.13532076,
+        "egress": 263898586.64726448
+      },
+      "max": {
+        "ingress": 297866271.73333335,
+        "egress": 1243988523.0564785
+      }
+    }
+  },
+  {
+    "scid": "d263437d-e8a7-42e7-9a0b-e0f8edf38a5b",
+    "values": {
+      "latest": {
+        "ingress": 18368175783.573334,
+        "egress": 27918646792.64
+      },
+      "mean": {
+        "ingress": 11060242762.158937,
+        "egress": 28363703922.157448
+      },
+      "max": {
+        "ingress": 37499362656.64,
+        "egress": 101633799723.94667
+      }
+    }
+  },
+  {
+    "scid": "d2990a5e-2fb9-4cf0-9bdc-eb01c39f025b",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 8447.046357615895
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 7135.253592812037
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 11074.24
+      }
+    }
+  },
+  {
+    "scid": "d29fbc96-5569-4ae0-9629-6068d62944e3",
+    "values": {
+      "latest": {
+        "ingress": 11069.475083056479,
+        "egress": 9051.348837209302
+      },
+      "mean": {
+        "ingress": 75571.35702440154,
+        "egress": 31761.363088732
+      },
+      "max": {
+        "ingress": 15626816.85049834,
+        "egress": 981069.7674418605
+      }
+    }
+  },
+  {
+    "scid": "d2ef0373-296d-4b75-95ba-412c0846a30a",
+    "values": {
+      "latest": {
+        "ingress": 985.4086378737542,
+        "egress": 985657.7009966777
+      },
+      "mean": {
+        "ingress": 985.7156004751031,
+        "egress": 2472336.653867559
+      },
+      "max": {
+        "ingress": 1001.2266666666667,
+        "egress": 72616819.48172757
+      }
+    }
+  },
+  {
+    "scid": "d2f10c06-1302-481f-9195-e005b76702d7",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 180902945.46179402
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 167890012.69203398
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 301697975.49501663
+      }
+    }
+  },
+  {
+    "scid": "d30fd7e7-9a03-4323-9fd0-14ea39d3b7e1",
+    "values": {
+      "latest": {
+        "ingress": 1734.020066889632,
+        "egress": 1467.8528428093646
+      },
+      "mean": {
+        "ingress": 9293.346381571268,
+        "egress": 13166.446462292806
+      },
+      "max": {
+        "ingress": 57414.608695652176,
+        "egress": 578181.110367893
+      }
+    }
+  },
+  {
+    "scid": "d333c55c-2e16-49a5-85a0-9f4f0502a0e4",
+    "values": {
+      "latest": {
+        "ingress": 3374942.0863787374,
+        "egress": 2160126.1395348837
+      },
+      "mean": {
+        "ingress": 5207818.110386284,
+        "egress": 9544680.561012562
+      },
+      "max": {
+        "ingress": 402476548.8106312,
+        "egress": 429472048.18666667
+      }
+    }
+  },
+  {
+    "scid": "d39aa021-dfe1-4137-9fe1-4eb7787e0571",
+    "values": {
+      "latest": {
+        "ingress": 54798.666666666664,
+        "egress": 12273.146666666667
+      },
+      "mean": {
+        "ingress": 54242.80499476406,
+        "egress": 11061.36071185326
+      },
+      "max": {
+        "ingress": 194975.46666666667,
+        "egress": 14998.228187919463
+      }
+    }
+  },
+  {
+    "scid": "d3bf78da-77c6-4aeb-a54c-cd2a1650186c",
+    "values": {
+      "latest": {
+        "ingress": 12844467607.573334,
+        "egress": 242.66666666666666
+      },
+      "mean": {
+        "ingress": 24692834433.74501,
+        "egress": 245.75367358593928
+      },
+      "max": {
+        "ingress": 54564940381.30666,
+        "egress": 258.67558528428094
+      }
+    }
+  },
+  {
+    "scid": "d3c58db5-4d61-421c-913c-8780c52ebc9f",
+    "values": {
+      "latest": {
+        "ingress": 93080.10666666667,
+        "egress": 1587.9466666666667
+      },
+      "mean": {
+        "ingress": 83021.60957536242,
+        "egress": 15619.784078894596
+      },
+      "max": {
+        "ingress": 602105.5681063123,
+        "egress": 695546.0232945092
+      }
+    }
+  },
+  {
+    "scid": "d3ee13ff-c8f8-4dc4-85ef-b40070067ba4",
+    "values": {
+      "latest": {
+        "ingress": 402.88,
+        "egress": 925.1466666666666
+      },
+      "mean": {
+        "ingress": 397.38556009786794,
+        "egress": 861.4283039682298
+      },
+      "max": {
+        "ingress": 418.578073089701,
+        "egress": 1035.906976744186
+      }
+    }
+  },
+  {
+    "scid": "d40499de-3611-4368-b3db-1a785aaf7bf9",
+    "values": {
+      "latest": {
+        "ingress": 2533369031.8933334,
+        "egress": 1181528352.08
+      },
+      "mean": {
+        "ingress": 1941960193.090467,
+        "egress": 1561162155.971136
+      },
+      "max": {
+        "ingress": 3533492597.6722407,
+        "egress": 2920461409.12
+      }
+    }
+  },
+  {
+    "scid": "d4fe7850-41a9-4f6a-a53b-7724bdcd82a2",
+    "values": {
+      "latest": {
+        "ingress": 20951788184.72,
+        "egress": 6181297774.24
+      },
+      "mean": {
+        "ingress": 14953666469.142118,
+        "egress": 3754030968.125207
+      },
+      "max": {
+        "ingress": 44188702642.60465,
+        "egress": 9588964276.24
+      }
+    }
+  },
+  {
+    "scid": "d541a43c-6cbf-4e35-b9d2-fcb69ef1fb2e",
+    "values": {
+      "latest": {
+        "ingress": 20.980132450331126,
+        "egress": 1248.450331125828
+      },
+      "mean": {
+        "ingress": 27.020907595821605,
+        "egress": 1250.869022072039
+      },
+      "max": {
+        "ingress": 102.98666666666666,
+        "egress": 1676.1866666666667
+      }
+    }
+  },
+  {
+    "scid": "d5ad5c25-b1fb-4ccf-8ebd-c7960705334e",
+    "values": {
+      "latest": {
+        "ingress": 120215993.89333333,
+        "egress": 3279379534.346667
+      },
+      "mean": {
+        "ingress": 122019912.42194326,
+        "egress": 2850108949.3684554
+      },
+      "max": {
+        "ingress": 229546778.16,
+        "egress": 5101858752.906667
+      }
+    }
+  },
+  {
+    "scid": "d5c68aa6-3af9-4eb5-857f-40580d9ab83c",
+    "values": {
+      "latest": {
+        "ingress": 14990.384105960266,
+        "egress": 334.56953642384104
+      },
+      "mean": {
+        "ingress": 9670.577355071522,
+        "egress": 257.7166349656229
+      },
+      "max": {
+        "ingress": 17065.99335548173,
+        "egress": 341.06666666666666
+      }
+    }
+  },
+  {
+    "scid": "d5cc49df-3ef8-47fa-a409-3470a5a8171d",
+    "values": {
+      "latest": {
+        "ingress": 71502.52842809365,
+        "egress": 62116.28093645485
+      },
+      "mean": {
+        "ingress": 69370.52491354929,
+        "egress": 66129.12780903978
+      },
+      "max": {
+        "ingress": 91179.62416107382,
+        "egress": 99510.92976588629
+      }
+    }
+  },
+  {
+    "scid": "d6652088-b6e7-4635-9648-58dc87109db7",
+    "values": {
+      "latest": {
+        "ingress": 92.14715719063545,
+        "egress": 1972.6020066889632
+      },
+      "mean": {
+        "ingress": 92.69015940776717,
+        "egress": 2081.5429974103745
+      },
+      "max": {
+        "ingress": 261.421926910299,
+        "egress": 2549.714285714286
+      }
+    }
+  },
+  {
+    "scid": "d66ba55e-f3d1-4878-83cf-f06173877e5d",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 51.2
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 38.89264540053603
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 61.12
+      }
+    }
+  },
+  {
+    "scid": "d6bc6414-d7c0-4730-9bda-2ff5459b326d",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "d6d4edc5-a3e1-4b98-a801-d11a739aeace",
+    "values": {
+      "latest": {
+        "ingress": 486.4266666666667,
+        "egress": 603.7333333333333
+      },
+      "mean": {
+        "ingress": 378.41581839403597,
+        "egress": 489.13358175595596
+      },
+      "max": {
+        "ingress": 496.93023255813955,
+        "egress": 853.92
+      }
+    }
+  },
+  {
+    "scid": "d7102178-55d0-465b-b36a-2a2af6f9edd6",
+    "values": {
+      "latest": {
+        "ingress": 35783029.110367894,
+        "egress": 1174398743.4113712
+      },
+      "mean": {
+        "ingress": 29288098.502338424,
+        "egress": 471567040.52261466
+      },
+      "max": {
+        "ingress": 252672069.47368422,
+        "egress": 3894825809.6321073
+      }
+    }
+  },
+  {
+    "scid": "d7135296-211f-47f8-a2a7-6674b35abf6d",
+    "values": {
+      "latest": {
+        "ingress": 2974023618.9333334,
+        "egress": 993968184.8266667
+      },
+      "mean": {
+        "ingress": 1347155867.9390006,
+        "egress": 873442256.9697676
+      },
+      "max": {
+        "ingress": 3710361252.332226,
+        "egress": 1760528871.8666666
+      }
+    }
+  },
+  {
+    "scid": "d71d0993-39c7-44af-b8fc-a8765cf66da3",
+    "values": {
+      "latest": {
+        "ingress": 1641387639.2,
+        "egress": 42237963.653333336
+      },
+      "mean": {
+        "ingress": 1071480375.9534197,
+        "egress": 37514377.38748744
+      },
+      "max": {
+        "ingress": 2171598969.8278146,
+        "egress": 98871301.78666666
+      }
+    }
+  },
+  {
+    "scid": "d72de364-befd-4233-b51a-a7d8259e8aa3",
+    "values": {
+      "latest": {
+        "ingress": 280320159.1705686,
+        "egress": 9805151776.481606
+      },
+      "mean": {
+        "ingress": 467375125.00525767,
+        "egress": 12725286282.315977
+      },
+      "max": {
+        "ingress": 2030818860.5033112,
+        "egress": 38665512952.29236
+      }
+    }
+  },
+  {
+    "scid": "d745479b-8dd4-404d-9e83-6327bce78e26",
+    "values": {
+      "latest": {
+        "ingress": 280.85333333333335,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 271.20317368454306,
+        "egress": 0.1654570220425397
+      },
+      "max": {
+        "ingress": 288.1063122923588,
+        "egress": 1.979933110367893
+      }
+    }
+  },
+  {
+    "scid": "d801120f-af92-4510-b98b-206795094433",
+    "values": {
+      "latest": {
+        "ingress": 4827674.693333333,
+        "egress": 10367866.373333333
+      },
+      "mean": {
+        "ingress": 16219659.1909711,
+        "egress": 88429387.39224727
+      },
+      "max": {
+        "ingress": 69605058.8704319,
+        "egress": 263321912.10666665
+      }
+    }
+  },
+  {
+    "scid": "d8710f34-b964-4d97-8abd-67457602f202",
+    "values": {
+      "latest": {
+        "ingress": 681.12,
+        "egress": 1330.5866666666666
+      },
+      "mean": {
+        "ingress": 727.8424245457118,
+        "egress": 1334.7813397568727
+      },
+      "max": {
+        "ingress": 890.9235880398671,
+        "egress": 1382.728476821192
+      }
+    }
+  },
+  {
+    "scid": "d8d90097-d8c8-4d6c-9934-a949bc8b0a0b",
+    "values": {
+      "latest": {
+        "ingress": 82.18666666666667,
+        "egress": 100.96
+      },
+      "mean": {
+        "ingress": 80.76498230519023,
+        "egress": 100.23993100814336
+      },
+      "max": {
+        "ingress": 102.80199667221298,
+        "egress": 116.59234608985025
+      }
+    }
+  },
+  {
+    "scid": "d9958028-de14-44ba-a5b9-845cd311d2bc",
+    "values": {
+      "latest": {
+        "ingress": 161887.81333333332,
+        "egress": 253741.28
+      },
+      "mean": {
+        "ingress": 143532.52208811283,
+        "egress": 235228.48315704442
+      },
+      "max": {
+        "ingress": 174716.6322795341,
+        "egress": 259936.70549084857
+      }
+    }
+  },
+  {
+    "scid": "da21a8e8-0b33-41f4-8986-5d480d46fc57",
+    "values": {
+      "latest": {
+        "ingress": 2995109592.8533335,
+        "egress": 3351984011.1466665
+      },
+      "mean": {
+        "ingress": 6928179189.961495,
+        "egress": 2656331370.001029
+      },
+      "max": {
+        "ingress": 38814158632.481606,
+        "egress": 15177633619.390728
+      }
+    }
+  },
+  {
+    "scid": "da55cc4d-fa1b-4fe7-a72d-70b0c0127074",
+    "values": {
+      "latest": {
+        "ingress": 587184.64,
+        "egress": 2751776684.693333
+      },
+      "mean": {
+        "ingress": 985830.6827269334,
+        "egress": 1333914892.2236345
+      },
+      "max": {
+        "ingress": 13320338.346666666,
+        "egress": 3155192243.3333335
+      }
+    }
+  },
+  {
+    "scid": "da6670a5-2f66-43a6-9145-44c41ce96423",
+    "values": {
+      "latest": {
+        "ingress": 17232679.43812709,
+        "egress": 160.10702341137124
+      },
+      "mean": {
+        "ingress": 36489227.306338914,
+        "egress": 165.06774116122727
+      },
+      "max": {
+        "ingress": 526766303.11705685,
+        "egress": 264.0
+      }
+    }
+  },
+  {
+    "scid": "da69aace-b82a-42c0-bc68-826a089a9497",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 4486.9102990033225
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 3146.2104589525134
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 4728.8
+      }
+    }
+  },
+  {
+    "scid": "da89213d-6bcc-4ebe-874f-c3a15ebb761c",
+    "values": {
+      "latest": {
+        "ingress": 15386572.026666667,
+        "egress": 5680886.72
+      },
+      "mean": {
+        "ingress": 7265913.473088508,
+        "egress": 9967263.300694859
+      },
+      "max": {
+        "ingress": 25646543.226666667,
+        "egress": 111674564.77870217
+      }
+    }
+  },
+  {
+    "scid": "dab9fa01-1bfd-4d5f-82e7-ed2111687afb",
+    "values": {
+      "latest": {
+        "ingress": 2953509711.28,
+        "egress": 443111620.72
+      },
+      "mean": {
+        "ingress": 3202454210.9659524,
+        "egress": 402735252.8225681
+      },
+      "max": {
+        "ingress": 6273364700.916944,
+        "egress": 775863753.2842809
+      }
+    }
+  },
+  {
+    "scid": "dade9050-d57b-448f-8de0-3eca131d7581",
+    "values": {
+      "latest": {
+        "ingress": 9452296991.626667,
+        "egress": 17586681361.493332
+      },
+      "mean": {
+        "ingress": 12843072169.131851,
+        "egress": 13545989517.031609
+      },
+      "max": {
+        "ingress": 49476850462.20736,
+        "egress": 29118899791.122925
+      }
+    }
+  },
+  {
+    "scid": "db0a61cb-1cca-43d3-93a8-2826192e701f",
+    "values": {
+      "latest": {
+        "ingress": 1247696711.0933332,
+        "egress": 7248183881.04
+      },
+      "mean": {
+        "ingress": 977721886.2620293,
+        "egress": 5390868660.882459
+      },
+      "max": {
+        "ingress": 1836381180.2666667,
+        "egress": 10910369782.826666
+      }
+    }
+  },
+  {
+    "scid": "db0bdb55-6fde-4935-866f-e139472eeeba",
+    "values": {
+      "latest": {
+        "ingress": 10981341206.48,
+        "egress": 17151929847.013334
+      },
+      "mean": {
+        "ingress": 18436933553.66233,
+        "egress": 12515839223.36923
+      },
+      "max": {
+        "ingress": 70719816256.37209,
+        "egress": 47007579070.933334
+      }
+    }
+  },
+  {
+    "scid": "db2fb636-4805-497c-8345-9aee1533aa70",
+    "values": {
+      "latest": {
+        "ingress": 677.8933333333333,
+        "egress": 6737.6
+      },
+      "mean": {
+        "ingress": 12530.623039742643,
+        "egress": 6967.254381068301
+      },
+      "max": {
+        "ingress": 410677.20930232556,
+        "egress": 32689.251247920132
+      }
+    }
+  },
+  {
+    "scid": "db6bdecb-2a64-400b-9624-1bf6e0d7a25d",
+    "values": {
+      "latest": {
+        "ingress": 29605886771.97351,
+        "egress": 22655944484.450333
+      },
+      "mean": {
+        "ingress": 8103001510.379653,
+        "egress": 17040571495.48528
+      },
+      "max": {
+        "ingress": 53139419244.066444,
+        "egress": 52570748011.61204
+      }
+    }
+  },
+  {
+    "scid": "db889949-d2e1-4c36-a2d6-a7f3c99237ba",
+    "values": {
+      "latest": {
+        "ingress": 146.8628762541806,
+        "egress": 366.2341137123746
+      },
+      "mean": {
+        "ingress": 144.06653065518037,
+        "egress": 364.55918388332987
+      },
+      "max": {
+        "ingress": 159.68,
+        "egress": 373.0498338870432
+      }
+    }
+  },
+  {
+    "scid": "db95aa46-1fb6-4b71-8ef6-5eb7f4e8b84b",
+    "values": {
+      "latest": {
+        "ingress": 8669791418.586666,
+        "egress": 9288911331.253334
+      },
+      "mean": {
+        "ingress": 11736065726.567404,
+        "egress": 11368032277.499783
+      },
+      "max": {
+        "ingress": 22503327145.866665,
+        "egress": 51761125064.053154
+      }
+    }
+  },
+  {
+    "scid": "dbb7d237-aa90-42c2-9ef5-274bafad1937",
+    "values": {
+      "latest": {
+        "ingress": 23.2,
+        "egress": 121.73333333333333
+      },
+      "mean": {
+        "ingress": 23.276164577062442,
+        "egress": 119.59070465870401
+      },
+      "max": {
+        "ingress": 25.52,
+        "egress": 132.8
+      }
+    }
+  },
+  {
+    "scid": "dbe21175-3203-4536-aec4-e5dc458ae83e",
+    "values": {
+      "latest": {
+        "ingress": 5500174732.053333,
+        "egress": 1093229652.48
+      },
+      "mean": {
+        "ingress": 4164280588.381986,
+        "egress": 829359638.2175735
+      },
+      "max": {
+        "ingress": 9398978698.870432,
+        "egress": 1557538533.501661
+      }
+    }
+  },
+  {
+    "scid": "dc1670ff-80af-4519-9ba8-8cc53063af19",
+    "values": {
+      "latest": {
+        "ingress": 5626380790.08,
+        "egress": 1320574094.0533333
+      },
+      "mean": {
+        "ingress": 4412385443.812195,
+        "egress": 2212007150.2774067
+      },
+      "max": {
+        "ingress": 13183881737.887043,
+        "egress": 4291006450.930693
+      }
+    }
+  },
+  {
+    "scid": "dc243c32-8a94-4b02-9713-5898ed9c9781",
+    "values": {
+      "latest": {
+        "ingress": 271643657.52,
+        "egress": 594644880.2133334
+      },
+      "mean": {
+        "ingress": 1144275971.684465,
+        "egress": 1777342795.8709211
+      },
+      "max": {
+        "ingress": 16526835927.573334,
+        "egress": 10986883758.272425
+      }
+    }
+  },
+  {
+    "scid": "dc297262-1c02-464c-b38e-d0f5de232e08",
+    "values": {
+      "latest": {
+        "ingress": 12441008122.684385,
+        "egress": 30840144567.70764
+      },
+      "mean": {
+        "ingress": 15302526465.085327,
+        "egress": 27389235867.3517
+      },
+      "max": {
+        "ingress": 41905105978.24,
+        "egress": 107061794321.06667
+      }
+    }
+  },
+  {
+    "scid": "dc37c9e0-3026-4861-9628-201ee271413a",
+    "values": {
+      "latest": {
+        "ingress": 1761610493.4666667,
+        "egress": 2551500125.3333335
+      },
+      "mean": {
+        "ingress": 1153002200.530113,
+        "egress": 2447950546.3703322
+      },
+      "max": {
+        "ingress": 3151992819.0933332,
+        "egress": 6055871611.800665
+      }
+    }
+  },
+  {
+    "scid": "dc3d5bf7-b93f-48e7-9a09-07bc5142c232",
+    "values": {
+      "latest": {
+        "ingress": 766879720.96,
+        "egress": 8082773408.026667
+      },
+      "mean": {
+        "ingress": 515120600.86107105,
+        "egress": 6000645561.063324
+      },
+      "max": {
+        "ingress": 893830446.8533334,
+        "egress": 9827082953.466667
+      }
+    }
+  },
+  {
+    "scid": "dc767ba4-1cfd-4a5a-b757-e72897aec5c3",
+    "values": {
+      "latest": {
+        "ingress": 182998937.7807309,
+        "egress": 1711278973.1029902
+      },
+      "mean": {
+        "ingress": 143248642.37530047,
+        "egress": 1209606763.7373266
+      },
+      "max": {
+        "ingress": 1187794392.1063123,
+        "egress": 2160082989.847176
+      }
+    }
+  },
+  {
+    "scid": "dcae8940-de26-4555-a36b-c1914f74de52",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 399.6279069767442
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 412.6823935073968
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 429.6
+      }
+    }
+  },
+  {
+    "scid": "dcb38399-ffaa-4391-a6ac-4256a81317db",
+    "values": {
+      "latest": {
+        "ingress": 202.24,
+        "egress": 452.37333333333333
+      },
+      "mean": {
+        "ingress": 209.824530220961,
+        "egress": 457.51951241958153
+      },
+      "max": {
+        "ingress": 250.12624584717608,
+        "egress": 496.39867109634554
+      }
+    }
+  },
+  {
+    "scid": "dcb7c9c2-2147-458d-9f45-6b6342d8295a",
+    "values": {
+      "latest": {
+        "ingress": 4407.946488294315,
+        "egress": 70453.08361204014
+      },
+      "mean": {
+        "ingress": 4144.592754706357,
+        "egress": 77215.10716737478
+      },
+      "max": {
+        "ingress": 4713.52,
+        "egress": 106795.18936877076
+      }
+    }
+  },
+  {
+    "scid": "dcee4bb7-0bef-4055-9608-0a22f018fc29",
+    "values": {
+      "latest": {
+        "ingress": 3.6266666666666665,
+        "egress": 1596.5333333333333
+      },
+      "mean": {
+        "ingress": 2.28699092168255,
+        "egress": 1271.9919390861835
+      },
+      "max": {
+        "ingress": 8.853333333333333,
+        "egress": 1643.4076539101497
+      }
+    }
+  },
+  {
+    "scid": "dd0225f2-726c-4c49-b4ed-87d39596f571",
+    "values": {
+      "latest": {
+        "ingress": 3358655.8666666667,
+        "egress": 5102907.386666667
+      },
+      "mean": {
+        "ingress": 3334486.9660930997,
+        "egress": 4973932.801259919
+      },
+      "max": {
+        "ingress": 3887115.6266666665,
+        "egress": 8625096.613333333
+      }
+    }
+  },
+  {
+    "scid": "dd5f21c3-82df-42df-9df9-4d09a6bf7186",
+    "values": {
+      "latest": {
+        "ingress": 401142753.12,
+        "egress": 1473206.8533333333
+      },
+      "mean": {
+        "ingress": 352621272.3848701,
+        "egress": 763039.5912916204
+      },
+      "max": {
+        "ingress": 884659906.7109635,
+        "egress": 7358970.746666667
+      }
+    }
+  },
+  {
+    "scid": "dd614802-09a4-46f8-9ebd-e63ae3403bd0",
+    "values": {
+      "latest": {
+        "ingress": 47681191.626666665,
+        "egress": 68434745.41333333
+      },
+      "mean": {
+        "ingress": 23935736.26065614,
+        "egress": 42761864.95054636
+      },
+      "max": {
+        "ingress": 69719453.70666666,
+        "egress": 199700843.00332227
+      }
+    }
+  },
+  {
+    "scid": "dd9cdfaa-465e-4acf-ba91-c2d4b4d211a0",
+    "values": {
+      "latest": {
+        "ingress": 1549.0133333333333,
+        "egress": 1342.56
+      },
+      "mean": {
+        "ingress": 1531.9517082306909,
+        "egress": 1613.497260740097
+      },
+      "max": {
+        "ingress": 1573.7408637873755,
+        "egress": 4236.373333333333
+      }
+    }
+  },
+  {
+    "scid": "dde4f7df-9477-438a-a506-58faf19b19f8",
+    "values": {
+      "latest": {
+        "ingress": 4486223.468438538,
+        "egress": 5803017.754152824
+      },
+      "mean": {
+        "ingress": 4589512.07044569,
+        "egress": 9975575.488616936
+      },
+      "max": {
+        "ingress": 21140225.986754965,
+        "egress": 113755814.94039735
+      }
+    }
+  },
+  {
+    "scid": "ddf11fab-28ec-470f-a367-323aa6229b37",
+    "values": {
+      "latest": {
+        "ingress": 72444.65551839465,
+        "egress": 401711.143812709
+      },
+      "mean": {
+        "ingress": 134519.09141925047,
+        "egress": 5663256.8291970985
+      },
+      "max": {
+        "ingress": 2711783.8415841586,
+        "egress": 244101221.01333332
+      }
+    }
+  },
+  {
+    "scid": "de693f48-6715-4372-b3b1-b4dd9bbc87ab",
+    "values": {
+      "latest": {
+        "ingress": 21798115829.44,
+        "egress": 75716880044.58667
+      },
+      "mean": {
+        "ingress": 19366802116.79884,
+        "egress": 63047419747.73577
+      },
+      "max": {
+        "ingress": 41379387627.80067,
+        "egress": 114083288640.85333
+      }
+    }
+  },
+  {
+    "scid": "de7ef2ec-4db9-4ac8-8c31-5164a2d7a686",
+    "values": {
+      "latest": {
+        "ingress": 704.0533333333333,
+        "egress": 527.6266666666667
+      },
+      "mean": {
+        "ingress": 2201.204219149246,
+        "egress": 650.1564946320922
+      },
+      "max": {
+        "ingress": 10342.887417218542,
+        "egress": 1728.0533333333333
+      }
+    }
+  },
+  {
+    "scid": "dee5ebab-3027-4954-9f56-ab3bb6fe8e3c",
+    "values": {
+      "latest": {
+        "ingress": 9226078321.430464,
+        "egress": 4413487547.549669
+      },
+      "mean": {
+        "ingress": 5009512954.387839,
+        "egress": 2960396752.006051
+      },
+      "max": {
+        "ingress": 16606724028.741722,
+        "egress": 4577996880.613334
+      }
+    }
+  },
+  {
+    "scid": "df06578f-e3c9-4e60-8cc7-65cfb6106f46",
+    "values": {
+      "latest": {
+        "ingress": 397296.58666666667,
+        "egress": 9822291.893333333
+      },
+      "mean": {
+        "ingress": 1538502.2654000828,
+        "egress": 13538438.482046565
+      },
+      "max": {
+        "ingress": 39741198.11295681,
+        "egress": 151494003.77257526
+      }
+    }
+  },
+  {
+    "scid": "df171bca-dae0-4d4d-9266-89c75a64f326",
+    "values": {
+      "latest": {
+        "ingress": 756.0,
+        "egress": 110.53333333333333
+      },
+      "mean": {
+        "ingress": 751.7604852200651,
+        "egress": 108.1185367959658
+      },
+      "max": {
+        "ingress": 762.3654485049834,
+        "egress": 120.0265780730897
+      }
+    }
+  },
+  {
+    "scid": "df802000-65cc-4229-bcad-03e61d9bd3e8",
+    "values": {
+      "latest": {
+        "ingress": 12685441705.192053,
+        "egress": 5768471469.483443
+      },
+      "mean": {
+        "ingress": 10398467376.803694,
+        "egress": 5345202241.860916
+      },
+      "max": {
+        "ingress": 35709070955.86667,
+        "egress": 27389255691.234608
+      }
+    }
+  },
+  {
+    "scid": "dfcabdfe-a047-4027-bddb-5c0000a0a341",
+    "values": {
+      "latest": {
+        "ingress": 2195.84,
+        "egress": 1810.2933333333333
+      },
+      "mean": {
+        "ingress": 2222.9998857087166,
+        "egress": 1651.400451531573
+      },
+      "max": {
+        "ingress": 2287.043189368771,
+        "egress": 2397.1295681063125
+      }
+    }
+  },
+  {
+    "scid": "e0033954-ca83-4760-b909-67c4f71d4cea",
+    "values": {
+      "latest": {
+        "ingress": 27.973333333333333,
+        "egress": 423.3066666666667
+      },
+      "mean": {
+        "ingress": 28.412729252163167,
+        "egress": 350.81917126645607
+      },
+      "max": {
+        "ingress": 32.21262458471761,
+        "egress": 577.8502495840266
+      }
+    }
+  },
+  {
+    "scid": "e022f42d-3e1d-4a5c-89cb-3fbf0a719564",
+    "values": {
+      "latest": {
+        "ingress": 1839161335.3621264,
+        "egress": 432399244.8372093
+      },
+      "mean": {
+        "ingress": 1864055650.739604,
+        "egress": 425912502.56218815
+      },
+      "max": {
+        "ingress": 2593198599.733333,
+        "egress": 557827916.3466667
+      }
+    }
+  },
+  {
+    "scid": "e02385ac-5381-4727-bbc3-1d395cb97268",
+    "values": {
+      "latest": {
+        "ingress": 42795.86666666667,
+        "egress": 4385.306666666666
+      },
+      "mean": {
+        "ingress": 42142.280037195706,
+        "egress": 4554.801511299623
+      },
+      "max": {
+        "ingress": 53268.62458471761,
+        "egress": 10165.298013245034
+      }
+    }
+  },
+  {
+    "scid": "e0eb1af3-5183-442b-a660-16d26d09ae6b",
+    "values": {
+      "latest": {
+        "ingress": 35.84,
+        "egress": 34705.066666666666
+      },
+      "mean": {
+        "ingress": 18497909.399367053,
+        "egress": 2571246.13945575
+      },
+      "max": {
+        "ingress": 386501282.3466667,
+        "egress": 477014690.36544853
+      }
+    }
+  },
+  {
+    "scid": "e0f36f7f-1d4e-43d6-a21d-cf9ab001f377",
+    "values": {
+      "latest": {
+        "ingress": 8690497038.08,
+        "egress": 4119032574.0266666
+      },
+      "mean": {
+        "ingress": 4224509116.9284616,
+        "egress": 9504488755.772415
+      },
+      "max": {
+        "ingress": 19741386693.993313,
+        "egress": 38572467758.24585
+      }
+    }
+  },
+  {
+    "scid": "e12a14a3-2dd3-4b0e-8db3-01a914a33bc7",
+    "values": {
+      "latest": {
+        "ingress": 10000289797.226667,
+        "egress": 16806953594.666666
+      },
+      "mean": {
+        "ingress": 6214155035.164136,
+        "egress": 13999998219.226984
+      },
+      "max": {
+        "ingress": 37591642238.51163,
+        "egress": 82383040418.23256
+      }
+    }
+  },
+  {
+    "scid": "e12c60cb-7a3b-4a8a-8637-a27124227ed0",
+    "values": {
+      "latest": {
+        "ingress": 4289880.426666667,
+        "egress": 864675.2266666667
+      },
+      "mean": {
+        "ingress": 6226058.14990083,
+        "egress": 16228025.08418376
+      },
+      "max": {
+        "ingress": 47782968.693333335,
+        "egress": 182357439.14381272
+      }
+    }
+  },
+  {
+    "scid": "e141a58f-f0c0-4323-8e6a-e6e42ba22163",
+    "values": {
+      "latest": {
+        "ingress": 982.1129568106312,
+        "egress": 5603497.913621263
+      },
+      "mean": {
+        "ingress": 985.5274253487876,
+        "egress": 7256002.584230613
+      },
+      "max": {
+        "ingress": 995.295681063123,
+        "egress": 66748643.81456953
+      }
+    }
+  },
+  {
+    "scid": "e17a4c25-03fc-42e7-931a-9b6e22e5290a",
+    "values": {
+      "latest": {
+        "ingress": 1145.12,
+        "egress": 1003247.2266666667
+      },
+      "mean": {
+        "ingress": 1153.93666116237,
+        "egress": 4768080.577078076
+      },
+      "max": {
+        "ingress": 1173.44,
+        "egress": 69188443.78666666
+      }
+    }
+  },
+  {
+    "scid": "e18ee5c4-dc5b-4b94-b293-42a3de4700db",
+    "values": {
+      "latest": {
+        "ingress": 35315.23178807947,
+        "egress": 49765.50993377483
+      },
+      "mean": {
+        "ingress": 35439.75722792943,
+        "egress": 50161.3017599677
+      },
+      "max": {
+        "ingress": 36053.10299003322,
+        "egress": 51160.02657807309
+      }
+    }
+  },
+  {
+    "scid": "e1b6fb34-222a-4198-ad8a-3e0b191c8252",
+    "values": {
+      "latest": {
+        "ingress": 38653.92,
+        "egress": 9151587.333333334
+      },
+      "mean": {
+        "ingress": 42890.97332891456,
+        "egress": 13057338.42695872
+      },
+      "max": {
+        "ingress": 67491.40199335548,
+        "egress": 175110128.15946844
+      }
+    }
+  },
+  {
+    "scid": "e2239a60-dd3e-457c-8fb8-d0373c1575fb",
+    "values": {
+      "latest": {
+        "ingress": 31489121.765886288,
+        "egress": 1391367.2775919733
+      },
+      "mean": {
+        "ingress": 12491035.864057183,
+        "egress": 7613218.517057377
+      },
+      "max": {
+        "ingress": 120330958.87625419,
+        "egress": 140703419.5348837
+      }
+    }
+  },
+  {
+    "scid": "e23295a1-1ca7-40e6-a7c1-0a52c19b7495",
+    "values": {
+      "latest": {
+        "ingress": 1592169.6744186047,
+        "egress": 71729.64784053156
+      },
+      "mean": {
+        "ingress": 1335026.8569788805,
+        "egress": 103784.12213990939
+      },
+      "max": {
+        "ingress": 7133534.059800665,
+        "egress": 936792.6133333333
+      }
+    }
+  },
+  {
+    "scid": "e234c7ba-60bf-4682-8ee1-92d138913f38",
+    "values": {
+      "latest": {
+        "ingress": 179.82608695652175,
+        "egress": 950.2608695652174
+      },
+      "mean": {
+        "ingress": 324.4300863143564,
+        "egress": 913.7410698906032
+      },
+      "max": {
+        "ingress": 41148.03986710963,
+        "egress": 4182.166112956811
+      }
+    }
+  },
+  {
+    "scid": "e23e021c-6aa6-4266-8829-b210401838e4",
+    "values": {
+      "latest": {
+        "ingress": 349376015.25333333,
+        "egress": 38339039.333333336
+      },
+      "mean": {
+        "ingress": 129159487.15380396,
+        "egress": 14247093.390961692
+      },
+      "max": {
+        "ingress": 569522567.3846154,
+        "egress": 70958433.52
+      }
+    }
+  },
+  {
+    "scid": "e266a1a4-5beb-4a9b-b3c0-4be736eeecab",
+    "values": {
+      "latest": {
+        "ingress": 2922.64,
+        "egress": 1016.5333333333333
+      },
+      "mean": {
+        "ingress": 2804.584612094248,
+        "egress": 982.5202711845191
+      },
+      "max": {
+        "ingress": 3481.6744186046512,
+        "egress": 1047.8139534883721
+      }
+    }
+  },
+  {
+    "scid": "e2d7cc89-a2f4-459f-9bc8-e2333ecca4b4",
+    "values": {
+      "latest": {
+        "ingress": 1942816372.1333334,
+        "egress": 5693754147.92
+      },
+      "mean": {
+        "ingress": 4245351455.714092,
+        "egress": 3815713052.7033787
+      },
+      "max": {
+        "ingress": 12255069105.408638,
+        "egress": 10380627631.28
+      }
+    }
+  },
+  {
+    "scid": "e3017c47-c0ad-47ab-857c-516e4d7c4f3c",
+    "values": {
+      "latest": {
+        "ingress": 119451585.68,
+        "egress": 1658522240.1066666
+      },
+      "mean": {
+        "ingress": 192788566.34276286,
+        "egress": 1017717648.5777481
+      },
+      "max": {
+        "ingress": 2761716587.428571,
+        "egress": 2222085702.90301
+      }
+    }
+  },
+  {
+    "scid": "e3183991-3bde-465f-ab0e-035c0b6f60fa",
+    "values": {
+      "latest": {
+        "ingress": 91.85382059800665,
+        "egress": 463.4152823920266
+      },
+      "mean": {
+        "ingress": 91.4165018178429,
+        "egress": 413.254208193689
+      },
+      "max": {
+        "ingress": 99.97315436241611,
+        "egress": 570.1866666666666
+      }
+    }
+  },
+  {
+    "scid": "e3203527-2489-4618-90ce-e8f0634beb4f",
+    "values": {
+      "latest": {
+        "ingress": 97.06666666666666,
+        "egress": 492.4266666666667
+      },
+      "mean": {
+        "ingress": 104.73855924459646,
+        "egress": 455.10066010104856
+      },
+      "max": {
+        "ingress": 120.74666666666667,
+        "egress": 670.56
+      }
+    }
+  },
+  {
+    "scid": "e32d2136-3aad-432a-bab3-891e2dba54e4",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "e3641428-7c89-4e2d-b05c-0c816e5fd21e",
+    "values": {
+      "latest": {
+        "ingress": 201690.25165562914,
+        "egress": 25828.344370860927
+      },
+      "mean": {
+        "ingress": 147102.93187061496,
+        "egress": 19733.29506165878
+      },
+      "max": {
+        "ingress": 209699.26910299005,
+        "egress": 50813.22666666667
+      }
+    }
+  },
+  {
+    "scid": "e3afa18d-5021-4b9c-bb64-e5a892e7c749",
+    "values": {
+      "latest": {
+        "ingress": 210950033.49333334,
+        "egress": 3124998.3466666667
+      },
+      "mean": {
+        "ingress": 437793817.40252304,
+        "egress": 3435543.371214625
+      },
+      "max": {
+        "ingress": 988102013.8471761,
+        "egress": 122251491.46666667
+      }
+    }
+  },
+  {
+    "scid": "e3c78429-10e8-4683-a22f-f01039d75e9a",
+    "values": {
+      "latest": {
+        "ingress": 6227890.373333333,
+        "egress": 50010856.72
+      },
+      "mean": {
+        "ingress": 8736561.989244178,
+        "egress": 129928332.31679589
+      },
+      "max": {
+        "ingress": 48235302.849498324,
+        "egress": 943742397.7674419
+      }
+    }
+  },
+  {
+    "scid": "e3c97737-950f-4637-8800-f0a224eff712",
+    "values": {
+      "latest": {
+        "ingress": 1921906322.16,
+        "egress": 653809306.3733333
+      },
+      "mean": {
+        "ingress": 1982193457.4493096,
+        "egress": 695644834.5985167
+      },
+      "max": {
+        "ingress": 6410199943.654485,
+        "egress": 4430247074.817276
+      }
+    }
+  },
+  {
+    "scid": "e47134f7-e166-4aeb-9a49-023c40c46969",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "e4774582-95b2-4806-af6b-21d7616ac13f",
+    "values": {
+      "latest": {
+        "ingress": 211227.30666666667,
+        "egress": 59871.6
+      },
+      "mean": {
+        "ingress": 309511.4866754124,
+        "egress": 30429.757987760568
+      },
+      "max": {
+        "ingress": 35593195.71906354,
+        "egress": 303775.97324414714
+      }
+    }
+  },
+  {
+    "scid": "e4926619-f72f-45da-9c67-4d43f15e9b1f",
+    "values": {
+      "latest": {
+        "ingress": 23030.39464882943,
+        "egress": 16412858.006688964
+      },
+      "mean": {
+        "ingress": 26543.97264327666,
+        "egress": 35300808.57796406
+      },
+      "max": {
+        "ingress": 46198.346666666665,
+        "egress": 355068880.93645483
+      }
+    }
+  },
+  {
+    "scid": "e4c66a81-ed98-49fa-b9b8-8f9de868171b",
+    "values": {
+      "latest": {
+        "ingress": 272815530.9866667,
+        "egress": 592384137.44
+      },
+      "mean": {
+        "ingress": 1144228739.1088543,
+        "egress": 1777493963.2433236
+      },
+      "max": {
+        "ingress": 16271730811.813334,
+        "egress": 10962359208.903654
+      }
+    }
+  },
+  {
+    "scid": "e4edd0c1-7b0b-4868-9517-13cde2e351e1",
+    "values": {
+      "latest": {
+        "ingress": 388038571.8933333,
+        "egress": 1627262160.8533332
+      },
+      "mean": {
+        "ingress": 293229177.62183595,
+        "egress": 1233210151.6967235
+      },
+      "max": {
+        "ingress": 1739313441.1162791,
+        "egress": 4262783413.5919733
+      }
+    }
+  },
+  {
+    "scid": "e5026e53-b04b-4668-b66b-0f07e6914968",
+    "values": {
+      "latest": {
+        "ingress": 782842706.2133334,
+        "egress": 1127816346.9333334
+      },
+      "mean": {
+        "ingress": 1095038025.9050374,
+        "egress": 1878627950.0321543
+      },
+      "max": {
+        "ingress": 4806714231.546667,
+        "egress": 7005933350.826667
+      }
+    }
+  },
+  {
+    "scid": "e52d0a4b-ba6d-45d9-a4ea-d33fd940563b",
+    "values": {
+      "latest": {
+        "ingress": 3203122025.0666666,
+        "egress": 3764869814.6666665
+      },
+      "mean": {
+        "ingress": 4939989317.660828,
+        "egress": 6280481098.315626
+      },
+      "max": {
+        "ingress": 16984852648.64,
+        "egress": 46404456077.60797
+      }
+    }
+  },
+  {
+    "scid": "e55b7515-c8b3-4530-88e4-4aac5f6f4f4e",
+    "values": {
+      "latest": {
+        "ingress": 90985.92642140469,
+        "egress": 336154.56856187293
+      },
+      "mean": {
+        "ingress": 98639.03720110636,
+        "egress": 323402.55753744795
+      },
+      "max": {
+        "ingress": 265761.9531772575,
+        "egress": 646484.2119205298
+      }
+    }
+  },
+  {
+    "scid": "e55d42c0-d940-4f25-875d-c7f4b48d768e",
+    "values": {
+      "latest": {
+        "ingress": 27666.22073578595,
+        "egress": 135610852.22742474
+      },
+      "mean": {
+        "ingress": 338786.8082266075,
+        "egress": 223493707.179363
+      },
+      "max": {
+        "ingress": 5891445.76,
+        "egress": 606247161.8933333
+      }
+    }
+  },
+  {
+    "scid": "e5de065e-9e3d-40a8-b12e-4deb0b214419",
+    "values": {
+      "latest": {
+        "ingress": 57122.613333333335,
+        "egress": 49347.04
+      },
+      "mean": {
+        "ingress": 192984.54755248642,
+        "egress": 96647.09225098285
+      },
+      "max": {
+        "ingress": 2525821.7866666666,
+        "egress": 3705966.48
+      }
+    }
+  },
+  {
+    "scid": "e5e1b2dc-18a6-4e39-bca3-2c9837bed95d",
+    "values": {
+      "latest": {
+        "ingress": 2516234.3388704318,
+        "egress": 1396295.5747508307
+      },
+      "mean": {
+        "ingress": 9959021.234780526,
+        "egress": 1391994.7642246701
+      },
+      "max": {
+        "ingress": 967386388.08,
+        "egress": 6366645.92
+      }
+    }
+  },
+  {
+    "scid": "e61e7c7a-f832-44de-a175-db1516f16953",
+    "values": {
+      "latest": {
+        "ingress": 39158534.39464883,
+        "egress": 3082817244.1204014
+      },
+      "mean": {
+        "ingress": 23793096.25244052,
+        "egress": 2121662732.7735574
+      },
+      "max": {
+        "ingress": 71556894.4,
+        "egress": 3312369646.3521595
+      }
+    }
+  },
+  {
+    "scid": "e6a69eba-1173-4eb8-9d81-bfbae639cf25",
+    "values": {
+      "latest": {
+        "ingress": 518484708.50666666,
+        "egress": 2436418009.653333
+      },
+      "mean": {
+        "ingress": 103572170.21230258,
+        "egress": 3133187661.7343802
+      },
+      "max": {
+        "ingress": 2549257512.5581393,
+        "egress": 14133699012.252491
+      }
+    }
+  },
+  {
+    "scid": "e6ad9809-93c7-4030-8aad-34607c14d3bc",
+    "values": {
+      "latest": {
+        "ingress": 1269010550.2666667,
+        "egress": 1298127406.48
+      },
+      "mean": {
+        "ingress": 1893525789.66905,
+        "egress": 1545537228.8800998
+      },
+      "max": {
+        "ingress": 6317091707.226666,
+        "egress": 4867484072.026578
+      }
+    }
+  },
+  {
+    "scid": "e6aec653-17f1-4ce2-ad23-4149f73e1a88",
+    "values": {
+      "latest": {
+        "ingress": 40.82666666666667,
+        "egress": 625.3066666666666
+      },
+      "mean": {
+        "ingress": 40.51660075795737,
+        "egress": 500.7413807530306
+      },
+      "max": {
+        "ingress": 44.693333333333335,
+        "egress": 1123.3866666666668
+      }
+    }
+  },
+  {
+    "scid": "e6e7d903-96b7-48e1-ba72-4905d99db1d8",
+    "values": {
+      "latest": {
+        "ingress": 1556027149.9733334,
+        "egress": 1033216.1333333333
+      },
+      "mean": {
+        "ingress": 3750647650.2196784,
+        "egress": 850658.575368313
+      },
+      "max": {
+        "ingress": 9420407154.830564,
+        "egress": 2962222.4318936877
+      }
+    }
+  },
+  {
+    "scid": "e716f601-8562-46e4-a043-4b4bbb2bbd10",
+    "values": {
+      "latest": {
+        "ingress": 537459.3333333334,
+        "egress": 328679370.37333333
+      },
+      "mean": {
+        "ingress": 296899.98983667616,
+        "egress": 310900281.06645817
+      },
+      "max": {
+        "ingress": 842930.8187919463,
+        "egress": 943709115.4966887
+      }
+    }
+  },
+  {
+    "scid": "e739296c-d5fa-4b32-9867-03beab096b5f",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 46.88741721854305
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 50.752471155806454
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 59.78666666666667
+      }
+    }
+  },
+  {
+    "scid": "e794124d-d77d-4bcb-b408-53c1c841b89a",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "e7b236f7-8057-4b13-aac8-f3df7a94c5f9",
+    "values": {
+      "latest": {
+        "ingress": 602857015.178808,
+        "egress": 1195055087.7880795
+      },
+      "mean": {
+        "ingress": 1496485158.1513307,
+        "egress": 2160076191.1526775
+      },
+      "max": {
+        "ingress": 23555893922.133335,
+        "egress": 22979435428.36606
+      }
+    }
+  },
+  {
+    "scid": "e7b8ad81-4627-43bf-9d8d-2d54d03d86bf",
+    "values": {
+      "latest": {
+        "ingress": 89022689.089701,
+        "egress": 14449077.395348838
+      },
+      "mean": {
+        "ingress": 82292089.24951749,
+        "egress": 21517157.41550994
+      },
+      "max": {
+        "ingress": 199016788.8,
+        "egress": 77557911.14666666
+      }
+    }
+  },
+  {
+    "scid": "e7de6e36-4cae-449a-aa3a-965132b699b2",
+    "values": {
+      "latest": {
+        "ingress": 26872.42953020134,
+        "egress": 22173954447.033558
+      },
+      "mean": {
+        "ingress": 33936.27016396182,
+        "egress": 19425545606.689095
+      },
+      "max": {
+        "ingress": 86068.13245033112,
+        "egress": 55630653088.74419
+      }
+    }
+  },
+  {
+    "scid": "e7fe8c5f-58ca-4678-9e55-ab142560642f",
+    "values": {
+      "latest": {
+        "ingress": 452600868.48,
+        "egress": 4320734876.026667
+      },
+      "mean": {
+        "ingress": 308667718.1854468,
+        "egress": 2825564077.8778944
+      },
+      "max": {
+        "ingress": 842884098.3624161,
+        "egress": 5005230626.453333
+      }
+    }
+  },
+  {
+    "scid": "e80d7eaf-e342-4dd1-bda4-6dd08c5a2721",
+    "values": {
+      "latest": {
+        "ingress": 79756593454.93333,
+        "egress": 115071538380.4
+      },
+      "mean": {
+        "ingress": 60088181657.74516,
+        "egress": 106193733985.84329
+      },
+      "max": {
+        "ingress": 134573482707.82608,
+        "egress": 179547388650.0927
+      }
+    }
+  },
+  {
+    "scid": "e82da13d-472b-4c27-af77-1ad6ce36106c",
+    "values": {
+      "latest": {
+        "ingress": 640626462.8837209,
+        "egress": 123320029.98006645
+      },
+      "mean": {
+        "ingress": 720391031.5696762,
+        "egress": 92160527.0057205
+      },
+      "max": {
+        "ingress": 1692305841.84,
+        "egress": 210670676.61333334
+      }
+    }
+  },
+  {
+    "scid": "e84ab848-4ff2-422b-9941-3f3fe817c837",
+    "values": {
+      "latest": {
+        "ingress": 12497633565.706667,
+        "egress": 8182774515.946667
+      },
+      "mean": {
+        "ingress": 13389293636.924725,
+        "egress": 7751722194.591758
+      },
+      "max": {
+        "ingress": 47184772489.17333,
+        "egress": 16956364749.959732
+      }
+    }
+  },
+  {
+    "scid": "e84ef210-3dc2-4599-87c7-8a4662dcb768",
+    "values": {
+      "latest": {
+        "ingress": 3376.9866666666667,
+        "egress": 1287.52
+      },
+      "mean": {
+        "ingress": 28230.632691098857,
+        "egress": 1322.076531902556
+      },
+      "max": {
+        "ingress": 248705.2575250836,
+        "egress": 2267.5733333333333
+      }
+    }
+  },
+  {
+    "scid": "e8db8b11-433b-4855-b52b-b214e711d57d",
+    "values": {
+      "latest": {
+        "ingress": 426157.2,
+        "egress": 404915.17333333334
+      },
+      "mean": {
+        "ingress": 410627.0284163781,
+        "egress": 380486.3483921339
+      },
+      "max": {
+        "ingress": 507433.0365448505,
+        "egress": 586594.3388704319
+      }
+    }
+  },
+  {
+    "scid": "e90afa3a-cab8-48fb-9991-5dd1ce9b0c5d",
+    "values": {
+      "latest": {
+        "ingress": 982.1129568106312,
+        "egress": 6426595.242524917
+      },
+      "mean": {
+        "ingress": 985.5279428060293,
+        "egress": 5294703.815068915
+      },
+      "max": {
+        "ingress": 1001.2533333333333,
+        "egress": 65186060.88
+      }
+    }
+  },
+  {
+    "scid": "e921bf8f-7400-41d3-ac31-9dbbd4008d5b",
+    "values": {
+      "latest": {
+        "ingress": 43146109.17333333,
+        "egress": 2432210.053333333
+      },
+      "mean": {
+        "ingress": 47543173.2006295,
+        "egress": 4436361.931056976
+      },
+      "max": {
+        "ingress": 253365380.21333334,
+        "egress": 25394397.30666667
+      }
+    }
+  },
+  {
+    "scid": "e9515340-d66c-41ea-817d-a4ceb85cc66a",
+    "values": {
+      "latest": {
+        "ingress": 1791384423.84,
+        "egress": 3739668295.52
+      },
+      "mean": {
+        "ingress": 5625725331.146863,
+        "egress": 347666695.1611197
+      },
+      "max": {
+        "ingress": 17235670826.213333,
+        "egress": 12789612568.933332
+      }
+    }
+  },
+  {
+    "scid": "e9da92b5-91f2-4f8f-81aa-d561e149ac0f",
+    "values": {
+      "latest": {
+        "ingress": 47423947.86666667,
+        "egress": 68019241.38666667
+      },
+      "mean": {
+        "ingress": 23934408.57111788,
+        "egress": 42759821.36443682
+      },
+      "max": {
+        "ingress": 69719453.70666666,
+        "egress": 199700843.00332227
+      }
+    }
+  },
+  {
+    "scid": "ea0e586f-a78e-4f07-a87f-bf3676e5c6a8",
+    "values": {
+      "latest": {
+        "ingress": 2309.866666666667,
+        "egress": 44962.426666666666
+      },
+      "mean": {
+        "ingress": 2147.481291538409,
+        "egress": 60961.467897284725
+      },
+      "max": {
+        "ingress": 3041.214521452145,
+        "egress": 105393.65333333334
+      }
+    }
+  },
+  {
+    "scid": "ea1950b4-8772-42e0-8a28-7dc7a2b33dc4",
+    "values": {
+      "latest": {
+        "ingress": 491.62666666666667,
+        "egress": 476.61333333333334
+      },
+      "mean": {
+        "ingress": 459.8210059010979,
+        "egress": 454.2017509711539
+      },
+      "max": {
+        "ingress": 838.2933333333333,
+        "egress": 1000.2666666666667
+      }
+    }
+  },
+  {
+    "scid": "ea454b4f-8a70-48f4-a281-4bdac5539225",
+    "values": {
+      "latest": {
+        "ingress": 210980767.94666666,
+        "egress": 4916765.173333333
+      },
+      "mean": {
+        "ingress": 440168962.95241535,
+        "egress": 11588333.02354088
+      },
+      "max": {
+        "ingress": 994276887.4152824,
+        "egress": 124996940.34666666
+      }
+    }
+  },
+  {
+    "scid": "ea71e8ac-3ad3-4ef4-bcd2-bce97b8ffe27",
+    "values": {
+      "latest": {
+        "ingress": 11944.16,
+        "egress": 30680.106666666667
+      },
+      "mean": {
+        "ingress": 8762.755194591478,
+        "egress": 10790.710008129725
+      },
+      "max": {
+        "ingress": 297962.3388704319,
+        "egress": 207996.05333333334
+      }
+    }
+  },
+  {
+    "scid": "eaa71543-1004-479e-85fd-d2c076e5da61",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "eb15061d-27ef-4419-b393-fcdd9ca9c739",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 125.54666666666667
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 123.22255090794191
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 136.96
+      }
+    }
+  },
+  {
+    "scid": "eb5500be-7638-4e64-b18d-42de1b0ba1b3",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "eb975263-1b2c-4d72-b757-632c347b3a6f",
+    "values": {
+      "latest": {
+        "ingress": 12242.543046357616,
+        "egress": 15471.364238410595
+      },
+      "mean": {
+        "ingress": 12445.684673813586,
+        "egress": 15603.03021158177
+      },
+      "max": {
+        "ingress": 13011.886855241264,
+        "egress": 16225.833887043189
+      }
+    }
+  },
+  {
+    "scid": "ebda9ed0-18f9-4c95-be0e-c27dcaf9a8c3",
+    "values": {
+      "latest": {
+        "ingress": 5250831093.546667,
+        "egress": 2374846565.2
+      },
+      "mean": {
+        "ingress": 4118477893.907917,
+        "egress": 2534895830.4464126
+      },
+      "max": {
+        "ingress": 7461969234.96,
+        "egress": 7540287322.059406
+      }
+    }
+  },
+  {
+    "scid": "ec0f4cf4-541e-4dbc-abcc-42bb71b2c9d6",
+    "values": {
+      "latest": {
+        "ingress": 324458.18666666665,
+        "egress": 92006.21333333333
+      },
+      "mean": {
+        "ingress": 305767.2083368408,
+        "egress": 95737.36449497183
+      },
+      "max": {
+        "ingress": 587838.6933333334,
+        "egress": 254262.48
+      }
+    }
+  },
+  {
+    "scid": "ec4a8e1e-32ff-443c-8b28-7f9ad3c8f093",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "ecb83bc5-1689-4323-8318-b2860279feb6",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 216.8294314381271
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 217.1023525585739
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 231.38666666666666
+      }
+    }
+  },
+  {
+    "scid": "ecbab82b-4027-4a3d-84ed-7863d04d1ac4",
+    "values": {
+      "latest": {
+        "ingress": 171.12,
+        "egress": 1642.7466666666667
+      },
+      "mean": {
+        "ingress": 169.60935136542238,
+        "egress": 1507.620740186974
+      },
+      "max": {
+        "ingress": 190.19867549668874,
+        "egress": 1836.76254180602
+      }
+    }
+  },
+  {
+    "scid": "ed902a30-88c5-426a-9633-fb9df364642c",
+    "values": {
+      "latest": {
+        "ingress": 344390.93333333335,
+        "egress": 463938.4533333333
+      },
+      "mean": {
+        "ingress": 3182241.747328694,
+        "egress": 418346.4732551958
+      },
+      "max": {
+        "ingress": 170170369.25333333,
+        "egress": 1284338.5333333334
+      }
+    }
+  },
+  {
+    "scid": "ed92b8d4-144b-41f7-ba07-518978f5aae1",
+    "values": {
+      "latest": {
+        "ingress": 5698845246.293333,
+        "egress": 7367612756.8
+      },
+      "mean": {
+        "ingress": 4574767027.557939,
+        "egress": 5571043648.044454
+      },
+      "max": {
+        "ingress": 6011574266.133333,
+        "egress": 10659999986.950167
+      }
+    }
+  },
+  {
+    "scid": "eda3f04a-627b-4c12-addf-e6f79a4874e8",
+    "values": {
+      "latest": {
+        "ingress": 397401.41333333333,
+        "egress": 29417.173333333332
+      },
+      "mean": {
+        "ingress": 17411779.769249883,
+        "egress": 4666116.894587502
+      },
+      "max": {
+        "ingress": 935966270.3255814,
+        "egress": 341250257.83388704
+      }
+    }
+  },
+  {
+    "scid": "edde8f29-8902-4910-bccf-52d81a89baa7",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 1698.2251655629138
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 1714.6909717234246
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 1742.9297658862877
+      }
+    }
+  },
+  {
+    "scid": "ee2e0498-e64a-4289-9ca6-6e707f54b488",
+    "values": {
+      "latest": {
+        "ingress": 160.90666666666667,
+        "egress": 476.3466666666667
+      },
+      "mean": {
+        "ingress": 163.76368574028862,
+        "egress": 480.042092823835
+      },
+      "max": {
+        "ingress": 225.30232558139534,
+        "egress": 651.7475083056478
+      }
+    }
+  },
+  {
+    "scid": "ee59a434-203c-43af-ab5b-88a4d1c4bb50",
+    "values": {
+      "latest": {
+        "ingress": 74226079.86622074,
+        "egress": 28725828.949832775
+      },
+      "mean": {
+        "ingress": 112043999.97428668,
+        "egress": 34947709.0618327
+      },
+      "max": {
+        "ingress": 1076423165.1125827,
+        "egress": 138283487.25333333
+      }
+    }
+  },
+  {
+    "scid": "ee6136a1-4415-41bd-ae41-74c310d61fdb",
+    "values": {
+      "latest": {
+        "ingress": 991918515.2533333,
+        "egress": 1977617968.08
+      },
+      "mean": {
+        "ingress": 1596741519.282347,
+        "egress": 1899364722.117769
+      },
+      "max": {
+        "ingress": 9845416819.247524,
+        "egress": 4192145924.842809
+      }
+    }
+  },
+  {
+    "scid": "ee8e9d0e-867a-46a1-8d49-901875729caa",
+    "values": {
+      "latest": {
+        "ingress": 34985773470.394646,
+        "egress": 78781632851.05017
+      },
+      "mean": {
+        "ingress": 44658157772.84793,
+        "egress": 58212634104.79167
+      },
+      "max": {
+        "ingress": 101642152522.4883,
+        "egress": 160788307752.2408
+      }
+    }
+  },
+  {
+    "scid": "eefb6b1a-1428-4fe1-ab88-eb12ef559d40",
+    "values": {
+      "latest": {
+        "ingress": 23377.668874172185,
+        "egress": 23424.794701986753
+      },
+      "mean": {
+        "ingress": 23254.720403228705,
+        "egress": 23302.541912341057
+      },
+      "max": {
+        "ingress": 23603.003322259137,
+        "egress": 23654.05980066445
+      }
+    }
+  },
+  {
+    "scid": "ef3258fd-4a9c-4db3-beab-48034d35a97f",
+    "values": {
+      "latest": {
+        "ingress": 3744.8,
+        "egress": 348.61333333333334
+      },
+      "mean": {
+        "ingress": 649.410709701749,
+        "egress": 21056.650292442064
+      },
+      "max": {
+        "ingress": 18185.302325581397,
+        "egress": 934751.0166112956
+      }
+    }
+  },
+  {
+    "scid": "ef6d0b4e-63ab-4246-8bce-77c3e112a557",
+    "values": {
+      "latest": {
+        "ingress": 23.2,
+        "egress": 116.58666666666667
+      },
+      "mean": {
+        "ingress": 23.27643568861428,
+        "egress": 121.45634698316917
+      },
+      "max": {
+        "ingress": 25.52,
+        "egress": 133.76
+      }
+    }
+  },
+  {
+    "scid": "ef9fffda-6c0e-4b59-9086-62bc5c023df8",
+    "values": {
+      "latest": {
+        "ingress": 301958582.72,
+        "egress": 4941366488.773334
+      },
+      "mean": {
+        "ingress": 152468388.22324768,
+        "egress": 3193823047.446422
+      },
+      "max": {
+        "ingress": 321515314.26666665,
+        "egress": 6645576144.478405
+      }
+    }
+  },
+  {
+    "scid": "efd624af-131e-4757-9c38-7690a2df7219",
+    "values": {
+      "latest": {
+        "ingress": 1308.32,
+        "egress": 188.02666666666667
+      },
+      "mean": {
+        "ingress": 690.934884749759,
+        "egress": 191.16961399837683
+      },
+      "max": {
+        "ingress": 1886.4373956594325,
+        "egress": 247.14950166112956
+      }
+    }
+  },
+  {
+    "scid": "f0119914-5aac-454f-9958-22213fb635c5",
+    "values": {
+      "latest": {
+        "ingress": 63816375.68,
+        "egress": 946072463.3333334
+      },
+      "mean": {
+        "ingress": 66302676.88631289,
+        "egress": 472163784.0714472
+      },
+      "max": {
+        "ingress": 192932231.14666668,
+        "egress": 1083570830.0863788
+      }
+    }
+  },
+  {
+    "scid": "f02ffb81-3020-4fa1-a96f-390ea23feb5c",
+    "values": {
+      "latest": {
+        "ingress": 345.4039735099338,
+        "egress": 226.17218543046357
+      },
+      "mean": {
+        "ingress": 286.42392904188137,
+        "egress": 205.5906075781848
+      },
+      "max": {
+        "ingress": 1129.6266666666668,
+        "egress": 5466.253333333333
+      }
+    }
+  },
+  {
+    "scid": "f038ad2a-c095-4cc7-b98d-c6e86822fc87",
+    "values": {
+      "latest": {
+        "ingress": 5195057730.220736,
+        "egress": 840700134.7424749
+      },
+      "mean": {
+        "ingress": 4532412044.541142,
+        "egress": 1390365590.3018787
+      },
+      "max": {
+        "ingress": 7292226786.442953,
+        "egress": 7745055890.666667
+      }
+    }
+  },
+  {
+    "scid": "f0642514-1e8d-4243-927f-115a3f08482b",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 31.893687707641195
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 32.246888742297244
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 35.31772575250836
+      }
+    }
+  },
+  {
+    "scid": "f07ec522-739d-4ddd-a06d-a8f1e205273f",
+    "values": {
+      "latest": {
+        "ingress": 51349933.03010034,
+        "egress": 880150835.4247491
+      },
+      "mean": {
+        "ingress": 57162103.02679885,
+        "egress": 925823461.5646881
+      },
+      "max": {
+        "ingress": 299469556.8372093,
+        "egress": 1150397428.0533333
+      }
+    }
+  },
+  {
+    "scid": "f0af1eae-65d1-4d6e-b8da-c758c0ee84e2",
+    "values": {
+      "latest": {
+        "ingress": 1005.1733333333333,
+        "egress": 83592612.93333334
+      },
+      "mean": {
+        "ingress": 966.4210706710076,
+        "egress": 58727072.87688165
+      },
+      "max": {
+        "ingress": 1019.0033222591362,
+        "egress": 100866660.34666666
+      }
+    }
+  },
+  {
+    "scid": "f0b9d099-3730-4a91-a0be-26173d5300b1",
+    "values": {
+      "latest": {
+        "ingress": 744533904.4768212,
+        "egress": 2000262557.7218542
+      },
+      "mean": {
+        "ingress": 815077616.1304752,
+        "egress": 1964174250.1841533
+      },
+      "max": {
+        "ingress": 1428447190.1986754,
+        "egress": 2985162201.2911816
+      }
+    }
+  },
+  {
+    "scid": "f0c12044-1853-4385-bfb4-d19c274bb1ff",
+    "values": {
+      "latest": {
+        "ingress": 11378.133333333333,
+        "egress": 851656.8533333334
+      },
+      "mean": {
+        "ingress": 10593.041956400259,
+        "egress": 2512847.0257311296
+      },
+      "max": {
+        "ingress": 14143.518394648829,
+        "egress": 93629505.12
+      }
+    }
+  },
+  {
+    "scid": "f0ea36c3-7971-4d61-a6fe-052f7604f4eb",
+    "values": {
+      "latest": {
+        "ingress": 1024209.6533333333,
+        "egress": 42271.066666666666
+      },
+      "mean": {
+        "ingress": 5129274.143546563,
+        "egress": 39228.88762838149
+      },
+      "max": {
+        "ingress": 68945018.81727575,
+        "egress": 52171.879598662206
+      }
+    }
+  },
+  {
+    "scid": "f12ed2bd-deb6-4ecc-8f23-7ecb437daaff",
+    "values": {
+      "latest": {
+        "ingress": 1459676189.8133333,
+        "egress": 90438514.72
+      },
+      "mean": {
+        "ingress": 1103800816.7470286,
+        "egress": 210530955.3673
+      },
+      "max": {
+        "ingress": 3787587713.2757473,
+        "egress": 1397674404.4385383
+      }
+    }
+  },
+  {
+    "scid": "f15da16d-ef35-44a9-897d-0cad24d1001a",
+    "values": {
+      "latest": {
+        "ingress": 117.1371237458194,
+        "egress": 110.39464882943143
+      },
+      "mean": {
+        "ingress": 120.16773434336686,
+        "egress": 114.70416909698828
+      },
+      "max": {
+        "ingress": 130.34666666666666,
+        "egress": 137.57333333333332
+      }
+    }
+  },
+  {
+    "scid": "f16a928a-98d9-48e4-81e3-9187fd4f77ff",
+    "values": {
+      "latest": {
+        "ingress": 1102.24,
+        "egress": 124.82666666666667
+      },
+      "mean": {
+        "ingress": 1111.9409888892164,
+        "egress": 129.50026048486137
+      },
+      "max": {
+        "ingress": 1122.0730897009967,
+        "egress": 132.86378737541528
+      }
+    }
+  },
+  {
+    "scid": "f1afd29a-e811-40a2-a7aa-fcf5b9b42d22",
+    "values": {
+      "latest": {
+        "ingress": 46.857142857142854,
+        "egress": 341.3687707641196
+      },
+      "mean": {
+        "ingress": 49.941536623461076,
+        "egress": 344.96008821992257
+      },
+      "max": {
+        "ingress": 59.55555555555556,
+        "egress": 356.1196013289036
+      }
+    }
+  },
+  {
+    "scid": "f1c4b902-9034-4227-80a7-e84efefb5ed4",
+    "values": {
+      "latest": {
+        "ingress": 15036994607.386667,
+        "egress": 14267018758.08
+      },
+      "mean": {
+        "ingress": 7749069119.982683,
+        "egress": 17112043977.12083
+      },
+      "max": {
+        "ingress": 31513930086.0,
+        "egress": 68955488562.33887
+      }
+    }
+  },
+  {
+    "scid": "f209045e-927f-41f9-a227-dca0c6a70dfc",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "f2251c9b-6c06-4730-a366-580194782d92",
+    "values": {
+      "latest": {
+        "ingress": 118.37333333333333,
+        "egress": 528.88
+      },
+      "mean": {
+        "ingress": 347.5487585673429,
+        "egress": 451.5623752866218
+      },
+      "max": {
+        "ingress": 20473.99667221298,
+        "egress": 584.2133333333334
+      }
+    }
+  },
+  {
+    "scid": "f228fab6-5e86-498b-bb6f-423a99012c00",
+    "values": {
+      "latest": {
+        "ingress": 3654.405315614618,
+        "egress": 2565.953488372093
+      },
+      "mean": {
+        "ingress": 13820.78814467489,
+        "egress": 2708.8238691593156
+      },
+      "max": {
+        "ingress": 132802.73754152824,
+        "egress": 3736.691029900332
+      }
+    }
+  },
+  {
+    "scid": "f22c031d-b72d-4a1b-8efc-b8a8c5447d32",
+    "values": {
+      "latest": {
+        "ingress": 90404.49169435215,
+        "egress": 329102.9368770764
+      },
+      "mean": {
+        "ingress": 99275.87295779005,
+        "egress": 315992.2406639649
+      },
+      "max": {
+        "ingress": 258595.62666666668,
+        "egress": 581414.7424749164
+      }
+    }
+  },
+  {
+    "scid": "f2351756-f873-418b-87dc-b00617db56c4",
+    "values": {
+      "latest": {
+        "ingress": 5349615.8133333335,
+        "egress": 2146261.546666667
+      },
+      "mean": {
+        "ingress": 4806924.569495166,
+        "egress": 22236760.417897876
+      },
+      "max": {
+        "ingress": 9346140.544850498,
+        "egress": 452029783.33554816
+      }
+    }
+  },
+  {
+    "scid": "f24ed56e-40d7-4e52-950c-e87997f38af7",
+    "values": {
+      "latest": {
+        "ingress": 303079.4666666667,
+        "egress": 71459.57333333333
+      },
+      "mean": {
+        "ingress": 35779368.561490476,
+        "egress": 10232950.261118783
+      },
+      "max": {
+        "ingress": 430051096.3986711,
+        "egress": 935601940.1727575
+      }
+    }
+  },
+  {
+    "scid": "f262053e-6b35-4a7d-a601-4f74b453f8f7",
+    "values": {
+      "latest": {
+        "ingress": 109.35099337748345,
+        "egress": 1184.609271523179
+      },
+      "mean": {
+        "ingress": 110446337.41006887,
+        "egress": 337869288.7952452
+      },
+      "max": {
+        "ingress": 889540863.3333334,
+        "egress": 3095243849.52
+      }
+    }
+  },
+  {
+    "scid": "f2c69e20-8d1a-4f06-a8a7-fb5c532f91d2",
+    "values": {
+      "latest": {
+        "ingress": 86055.94666666667,
+        "egress": 12997961.973333333
+      },
+      "mean": {
+        "ingress": 1624872.6652270046,
+        "egress": 13472904.902551707
+      },
+      "max": {
+        "ingress": 137023178.50666666,
+        "egress": 32961212.093023255
+      }
+    }
+  },
+  {
+    "scid": "f30044b6-7d96-45e1-a3c8-ed91badcf8a6",
+    "values": {
+      "latest": {
+        "ingress": 3822920666.7733335,
+        "egress": 10612809793.466667
+      },
+      "mean": {
+        "ingress": 7420044849.527107,
+        "egress": 2734886395.963206
+      },
+      "max": {
+        "ingress": 45434496135.14667,
+        "egress": 10769419791.335548
+      }
+    }
+  },
+  {
+    "scid": "f34249c0-f1d0-44dc-9a1c-39ff73a9de14",
+    "values": {
+      "latest": {
+        "ingress": 13428204.426666666,
+        "egress": 10481823.306666667
+      },
+      "mean": {
+        "ingress": 14414140.567691607,
+        "egress": 87661435.58918948
+      },
+      "max": {
+        "ingress": 26502843.109634552,
+        "egress": 898424458.88
+      }
+    }
+  },
+  {
+    "scid": "f35011c1-e830-4a04-9146-734c49f1167b",
+    "values": {
+      "latest": {
+        "ingress": 302547.81333333335,
+        "egress": 73720.4
+      },
+      "mean": {
+        "ingress": 297624.5067178684,
+        "egress": 83663.31691944225
+      },
+      "max": {
+        "ingress": 564436.5714285715,
+        "egress": 237938.61333333334
+      }
+    }
+  },
+  {
+    "scid": "f3adaf16-f049-40aa-9bd0-26c54b3c7334",
+    "values": {
+      "latest": {
+        "ingress": 11469116758.006645,
+        "egress": 23794597945.142857
+      },
+      "mean": {
+        "ingress": 9913065896.077583,
+        "egress": 18902684031.09116
+      },
+      "max": {
+        "ingress": 14491972763.76159,
+        "egress": 29846819442.34667
+      }
+    }
+  },
+  {
+    "scid": "f3cb4467-e5e6-4dc8-aa4d-04f6535900c6",
+    "values": {
+      "latest": {
+        "ingress": 43830.29900332226,
+        "egress": 35539.16279069767
+      },
+      "mean": {
+        "ingress": 10019.009552586058,
+        "egress": 2510.0239021114303
+      },
+      "max": {
+        "ingress": 59369.403973509936,
+        "egress": 50910.649006622516
+      }
+    }
+  },
+  {
+    "scid": "f425bf68-5c6f-453c-9566-767b640d8b95",
+    "values": {
+      "latest": {
+        "ingress": 2953509711.28,
+        "egress": 443111620.72
+      },
+      "mean": {
+        "ingress": 3202454912.3860617,
+        "egress": 402735380.08854395
+      },
+      "max": {
+        "ingress": 6273364700.916944,
+        "egress": 775863753.2842809
+      }
+    }
+  },
+  {
+    "scid": "f46b8482-e0b5-4471-a75f-6e673d0358a8",
+    "values": {
+      "latest": {
+        "ingress": 41684656013.056854,
+        "egress": 87636883190.79599
+      },
+      "mean": {
+        "ingress": 40354283675.029076,
+        "egress": 79824091118.23808
+      },
+      "max": {
+        "ingress": 93623784179.75839,
+        "egress": 129916408510.08638
+      }
+    }
+  },
+  {
+    "scid": "f4f539f7-2b9d-4c15-acb0-b7d24a39b815",
+    "values": {
+      "latest": {
+        "ingress": 129.70666666666668,
+        "egress": 564.2933333333333
+      },
+      "mean": {
+        "ingress": 132.68622876741236,
+        "egress": 488.6400047784931
+      },
+      "max": {
+        "ingress": 155.94666666666666,
+        "egress": 863.72
+      }
+    }
+  },
+  {
+    "scid": "f54aa0dc-def2-48a6-b0cc-8a9c4d9cebac",
+    "values": {
+      "latest": {
+        "ingress": 262596165.66112956,
+        "egress": 717525213.10299
+      },
+      "mean": {
+        "ingress": 286315186.24617726,
+        "egress": 618834101.4963818
+      },
+      "max": {
+        "ingress": 746676460.2790698,
+        "egress": 1796607992.7733333
+      }
+    }
+  },
+  {
+    "scid": "f56b5af4-866d-478e-a73f-178314524ae6",
+    "values": {
+      "latest": {
+        "ingress": 5015093731.52,
+        "egress": 8068029360.4
+      },
+      "mean": {
+        "ingress": 6423941900.289633,
+        "egress": 10871143906.799822
+      },
+      "max": {
+        "ingress": 20138837812.506668,
+        "egress": 21578584048.373333
+      }
+    }
+  },
+  {
+    "scid": "f573c67a-ee66-43cc-b7f5-60c3ae4a4658",
+    "values": {
+      "latest": {
+        "ingress": 168.95681063122925,
+        "egress": 487730.8704318937
+      },
+      "mean": {
+        "ingress": 171.07607513568607,
+        "egress": 45135279.91006362
+      },
+      "max": {
+        "ingress": 184.69333333333333,
+        "egress": 382313460.1993356
+      }
+    }
+  },
+  {
+    "scid": "f5ab9f38-4e28-4211-b171-8273576fd4e7",
+    "values": {
+      "latest": {
+        "ingress": 28296.423841059604,
+        "egress": 30266.46357615894
+      },
+      "mean": {
+        "ingress": 9688.641004439534,
+        "egress": 10197.638479669014
+      },
+      "max": {
+        "ingress": 31094.91029900332,
+        "egress": 33231.64
+      }
+    }
+  },
+  {
+    "scid": "f5bba7dc-072b-46df-ace7-1b04840dd749",
+    "values": {
+      "latest": {
+        "ingress": 3066.0730897009967,
+        "egress": 8980.51827242525
+      },
+      "mean": {
+        "ingress": 3209.0975071358894,
+        "egress": 9083.30335521872
+      },
+      "max": {
+        "ingress": 3407.3621262458473,
+        "egress": 9675.056478405315
+      }
+    }
+  },
+  {
+    "scid": "f5ef2dd1-3afb-47a4-bd3a-44d84298df21",
+    "values": {
+      "latest": {
+        "ingress": 2384.8,
+        "egress": 1676.0
+      },
+      "mean": {
+        "ingress": 2362.920089403772,
+        "egress": 1645.4623199905038
+      },
+      "max": {
+        "ingress": 3002.046511627907,
+        "egress": 1838.8039867109635
+      }
+    }
+  },
+  {
+    "scid": "f5fdfd1e-565f-459a-a594-1984940278d0",
+    "values": {
+      "latest": {
+        "ingress": 683.7458193979933,
+        "egress": 4981.511705685619
+      },
+      "mean": {
+        "ingress": 792.6292646140857,
+        "egress": 6321.078281960928
+      },
+      "max": {
+        "ingress": 9164.172757475084,
+        "egress": 16548.17391304348
+      }
+    }
+  },
+  {
+    "scid": "f6173209-5041-4a7a-9a7e-2b40155b5aa5",
+    "values": {
+      "latest": {
+        "ingress": 2369.306666666667,
+        "egress": 236171.70666666667
+      },
+      "mean": {
+        "ingress": 2365.780101060318,
+        "egress": 242671.75528030552
+      },
+      "max": {
+        "ingress": 2573.6611295681064,
+        "egress": 376718.4533333333
+      }
+    }
+  },
+  {
+    "scid": "f658994d-83be-4666-90c2-3e3eb2b75bc5",
+    "values": {
+      "latest": {
+        "ingress": 13227109.36,
+        "egress": 430801006.93333334
+      },
+      "mean": {
+        "ingress": 13319478.174685247,
+        "egress": 433262094.98002905
+      },
+      "max": {
+        "ingress": 69017612.97009967,
+        "egress": 1767632417.7009966
+      }
+    }
+  },
+  {
+    "scid": "f66c70fe-969b-4c98-b9b7-6f065b169c05",
+    "values": {
+      "latest": {
+        "ingress": 1527.3887043189368,
+        "egress": 5627.481727574751
+      },
+      "mean": {
+        "ingress": 1738.901720603983,
+        "egress": 5701.522283354509
+      },
+      "max": {
+        "ingress": 34184.4238410596,
+        "egress": 13632.346666666666
+      }
+    }
+  },
+  {
+    "scid": "f672dea8-743e-47c9-a43c-92be651d92d4",
+    "values": {
+      "latest": {
+        "ingress": 35995004797.57333,
+        "egress": 12639767808.48
+      },
+      "mean": {
+        "ingress": 21367670397.95677,
+        "egress": 17819703521.24748
+      },
+      "max": {
+        "ingress": 49283414792.293335,
+        "egress": 74661060070.64452
+      }
+    }
+  },
+  {
+    "scid": "f6a996f9-d35a-460e-8903-a27a8378f015",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "f6bcb143-6e53-4a71-bd87-e3e73ad062cd",
+    "values": {
+      "latest": {
+        "ingress": 406649055.06666666,
+        "egress": 4336085470.693334
+      },
+      "mean": {
+        "ingress": 902625917.137876,
+        "egress": 4055634846.7479053
+      },
+      "max": {
+        "ingress": 4533128326.48505,
+        "egress": 14722515432.963211
+      }
+    }
+  },
+  {
+    "scid": "f6cf441f-e381-4b14-a29e-fedc8bb4c241",
+    "values": {
+      "latest": {
+        "ingress": 103596.13333333333,
+        "egress": 344978.32
+      },
+      "mean": {
+        "ingress": 106532.72653053023,
+        "egress": 323974.8116666539
+      },
+      "max": {
+        "ingress": 271348.58666666667,
+        "egress": 630543.0198675497
+      }
+    }
+  },
+  {
+    "scid": "f6df960c-f512-48ca-a4e1-bf5834c3f821",
+    "values": {
+      "latest": {
+        "ingress": 6675150.0,
+        "egress": 23999.226666666666
+      },
+      "mean": {
+        "ingress": 9806091.014988922,
+        "egress": 23733.229803105343
+      },
+      "max": {
+        "ingress": 124185792.47840531,
+        "egress": 32325.04
+      }
+    }
+  },
+  {
+    "scid": "f7548313-efaf-4a72-96f5-9c6db0e697be",
+    "values": {
+      "latest": {
+        "ingress": 120236745.65333334,
+        "egress": 1650899123.04
+      },
+      "mean": {
+        "ingress": 192801378.1481654,
+        "egress": 1017814928.4566902
+      },
+      "max": {
+        "ingress": 2728794996.013289,
+        "egress": 2230958274.3277593
+      }
+    }
+  },
+  {
+    "scid": "f78c3575-5951-4190-bdf2-53d35c1542de",
+    "values": {
+      "latest": {
+        "ingress": 29470.906666666666,
+        "egress": 10066579265.76
+      },
+      "mean": {
+        "ingress": 12268.005234161677,
+        "egress": 13983574902.836826
+      },
+      "max": {
+        "ingress": 560529.6666666666,
+        "egress": 39935971062.02995
+      }
+    }
+  },
+  {
+    "scid": "f7adf2fc-4f30-4f4e-a4d2-9fcf609bdb4d",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "f8167375-b1b3-4abe-ac48-c53a833ad881",
+    "values": {
+      "latest": {
+        "ingress": 937.7333333333333,
+        "egress": 1874.48
+      },
+      "mean": {
+        "ingress": 561.046954984826,
+        "egress": 1982.7213586572097
+      },
+      "max": {
+        "ingress": 18674.179401993355,
+        "egress": 6791.6
+      }
+    }
+  },
+  {
+    "scid": "f8277d8d-67be-4ce4-bc17-66f4696beb57",
+    "values": {
+      "latest": {
+        "ingress": 13861161.626666667,
+        "egress": 316527411.49333334
+      },
+      "mean": {
+        "ingress": 19402977.422817804,
+        "egress": 262478243.3323057
+      },
+      "max": {
+        "ingress": 103123487.31125827,
+        "egress": 1021727739.4133333
+      }
+    }
+  },
+  {
+    "scid": "f83d6d92-aad8-4eb9-85e2-f9aaddf96225",
+    "values": {
+      "latest": {
+        "ingress": 72.0265780730897,
+        "egress": 171315.29568106311
+      },
+      "mean": {
+        "ingress": 73.50803225447714,
+        "egress": 167188.1108154267
+      },
+      "max": {
+        "ingress": 79.49333333333334,
+        "egress": 202785.71812080537
+      }
+    }
+  },
+  {
+    "scid": "f846cb8e-2491-481e-9ed9-c556e0cc97c6",
+    "values": {
+      "latest": {
+        "ingress": 31.68,
+        "egress": 49375.253333333334
+      },
+      "mean": {
+        "ingress": 22055087.62592339,
+        "egress": 5891926.5338175995
+      },
+      "max": {
+        "ingress": 329909411.8933333,
+        "egress": 383061186.28571427
+      }
+    }
+  },
+  {
+    "scid": "f8930a4b-cca7-48f7-8274-0370f769561c",
+    "values": {
+      "latest": {
+        "ingress": 428.58666666666664,
+        "egress": 28.213333333333335
+      },
+      "mean": {
+        "ingress": 415.74065291257017,
+        "egress": 23.90354293066387
+      },
+      "max": {
+        "ingress": 441.3645484949833,
+        "egress": 34.46153846153846
+      }
+    }
+  },
+  {
+    "scid": "f8fc738e-c033-4a4a-b9c1-7c186e444416",
+    "values": {
+      "latest": {
+        "ingress": 289730.5514950166,
+        "egress": 2638133.289036545
+      },
+      "mean": {
+        "ingress": 454934.6201756327,
+        "egress": 3880527.9831743008
+      },
+      "max": {
+        "ingress": 15217583.493333334,
+        "egress": 104539176.64
+      }
+    }
+  },
+  {
+    "scid": "f955b83c-c563-406a-9688-f5f230fa05b4",
+    "values": {
+      "latest": {
+        "ingress": 74.77333333333333,
+        "egress": 89.22666666666667
+      },
+      "mean": {
+        "ingress": 78.98133857465209,
+        "egress": 95.60136462449186
+      },
+      "max": {
+        "ingress": 98.39202657807309,
+        "egress": 115.98671096345515
+      }
+    }
+  },
+  {
+    "scid": "f956be7a-8206-49f9-ae4b-12e7a56f41db",
+    "values": {
+      "latest": {
+        "ingress": 25270.56,
+        "egress": 26270.293333333335
+      },
+      "mean": {
+        "ingress": 25521.750544025577,
+        "egress": 26522.405328377525
+      },
+      "max": {
+        "ingress": 26672.79734219269,
+        "egress": 26971.04
+      }
+    }
+  },
+  {
+    "scid": "f95b2228-2df8-42c4-927f-3d022cc5b428",
+    "values": {
+      "latest": {
+        "ingress": 515141.14666666667,
+        "egress": 36390.21333333333
+      },
+      "mean": {
+        "ingress": 76561.2199645125,
+        "egress": 1791082.9858840895
+      },
+      "max": {
+        "ingress": 944788.7043189369,
+        "egress": 20786824.692179702
+      }
+    }
+  },
+  {
+    "scid": "f961e496-923b-41cf-9f65-a42f2164aab6",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "f9fd088a-f1ee-4336-a3bf-f5247eb05541",
+    "values": {
+      "latest": {
+        "ingress": 12468404.32,
+        "egress": 48764.18666666667
+      },
+      "mean": {
+        "ingress": 41305595.82487191,
+        "egress": 137358.48553558183
+      },
+      "max": {
+        "ingress": 184769350.18666667,
+        "egress": 1277074.1262458472
+      }
+    }
+  },
+  {
+    "scid": "fa298bd7-e2ae-42b2-82ad-866166619478",
+    "values": {
+      "latest": {
+        "ingress": 4172375625.3333335,
+        "egress": 8171300321.146667
+      },
+      "mean": {
+        "ingress": 3872980448.1212096,
+        "egress": 3740790408.5083222
+      },
+      "max": {
+        "ingress": 25577106232.053158,
+        "egress": 29577036739.52
+      }
+    }
+  },
+  {
+    "scid": "fa73a1c1-2042-4185-8cc2-0388a1244603",
+    "values": {
+      "latest": {
+        "ingress": 12332.186666666666,
+        "egress": 494664.58666666667
+      },
+      "mean": {
+        "ingress": 9573.443675709812,
+        "egress": 3129386.486793042
+      },
+      "max": {
+        "ingress": 17258.4,
+        "egress": 111757548.16
+      }
+    }
+  },
+  {
+    "scid": "fae175fc-efdf-48cc-876f-c89628447334",
+    "values": {
+      "latest": {
+        "ingress": 1160.9866666666667,
+        "egress": 5704718.133333334
+      },
+      "mean": {
+        "ingress": 1154.0444842626625,
+        "egress": 4727331.51588636
+      },
+      "max": {
+        "ingress": 1169.0596026490066,
+        "egress": 77993856.53333333
+      }
+    }
+  },
+  {
+    "scid": "fb0adcdb-e6df-4798-a1f1-ab10afa6f4ee",
+    "values": {
+      "latest": {
+        "ingress": 5229.163879598662,
+        "egress": 4029.484949832776
+      },
+      "mean": {
+        "ingress": 11259.04649555051,
+        "egress": 5935.958710423832
+      },
+      "max": {
+        "ingress": 771988.4503311259,
+        "egress": 63119.22666666667
+      }
+    }
+  },
+  {
+    "scid": "fb1e4e6a-4d1e-4be3-b49c-91ab6dc05d9d",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "fb84c1c2-2f52-4339-ae9e-6f59f303d44a",
+    "values": {
+      "latest": {
+        "ingress": 50.86092715231788,
+        "egress": 104.63576158940397
+      },
+      "mean": {
+        "ingress": 51.352067703431715,
+        "egress": 113.7669724812098
+      },
+      "max": {
+        "ingress": 56.508361204013376,
+        "egress": 126.82274247491638
+      }
+    }
+  },
+  {
+    "scid": "fb90570a-c35c-40e7-bf39-d45377bd9a6d",
+    "values": {
+      "latest": {
+        "ingress": 65340.49169435216,
+        "egress": 14676.51827242525
+      },
+      "mean": {
+        "ingress": 120699413.31984799,
+        "egress": 15294910.086330988
+      },
+      "max": {
+        "ingress": 1096198508.1589403,
+        "egress": 283837022.5913621
+      }
+    }
+  },
+  {
+    "scid": "fba33f59-fd72-4fad-8734-797026a568d0",
+    "values": {
+      "latest": {
+        "ingress": 1591.5451505016722,
+        "egress": 809.7123745819398
+      },
+      "mean": {
+        "ingress": 1605.4628721199872,
+        "egress": 691.8409453344515
+      },
+      "max": {
+        "ingress": 1656.2933333333333,
+        "egress": 1691.8260869565217
+      }
+    }
+  },
+  {
+    "scid": "fba9ffd7-382b-4ac3-9e3c-c44e59b18805",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "fbe0e8a2-4c98-4fd3-b812-b16d82d5edc1",
+    "values": {
+      "latest": {
+        "ingress": 974.6133333333333,
+        "egress": 582.6133333333333
+      },
+      "mean": {
+        "ingress": 919.1247663148962,
+        "egress": 590.4763596047331
+      },
+      "max": {
+        "ingress": 1168.2666666666667,
+        "egress": 717.018302828619
+      }
+    }
+  },
+  {
+    "scid": "fbf3cb93-ffa0-4e71-8ac2-d5a16b1637a5",
+    "values": {
+      "latest": {
+        "ingress": 37356053359.84106,
+        "egress": 50752138497.08609
+      },
+      "mean": {
+        "ingress": 30650168536.957375,
+        "egress": 30607351639.97797
+      },
+      "max": {
+        "ingress": 85104436979.32779,
+        "egress": 71354909991.26788
+      }
+    }
+  },
+  {
+    "scid": "fc0eb57c-f68e-4db2-9e65-1450e5ac6861",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 125.54666666666667
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 123.52065973466149
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 126.81481481481481
+      }
+    }
+  },
+  {
+    "scid": "fc785c6a-395a-4474-800f-ee4436d29406",
+    "values": {
+      "latest": {
+        "ingress": 2015.5747508305649,
+        "egress": 2013.4485049833886
+      },
+      "mean": {
+        "ingress": 2021.163329929235,
+        "egress": 2021.694156418296
+      },
+      "max": {
+        "ingress": 2043.23745819398,
+        "egress": 2045.4581939799332
+      }
+    }
+  },
+  {
+    "scid": "fcad7d0f-ff49-4edb-a851-e2073420df99",
+    "values": {
+      "latest": {
+        "ingress": 982.1129568106312,
+        "egress": 159487.30897009966
+      },
+      "mean": {
+        "ingress": 985.7596239041292,
+        "egress": 4434029.101443519
+      },
+      "max": {
+        "ingress": 995.3066666666666,
+        "egress": 72150984.9833887
+      }
+    }
+  },
+  {
+    "scid": "fcb0f98c-efec-48e7-9239-a2197356b4a1",
+    "values": {
+      "latest": {
+        "ingress": 1277407497.6533334,
+        "egress": 843592592.48
+      },
+      "mean": {
+        "ingress": 1038900097.6033086,
+        "egress": 1413992551.0996308
+      },
+      "max": {
+        "ingress": 3820573764.9169436,
+        "egress": 5720606947.8133335
+      }
+    }
+  },
+  {
+    "scid": "fccd843e-0eb5-4282-aebb-7db32f4392be",
+    "values": {
+      "latest": {
+        "ingress": 3034.4,
+        "egress": 1596.1066666666666
+      },
+      "mean": {
+        "ingress": 96322.96180378117,
+        "egress": 66389528.21320167
+      },
+      "max": {
+        "ingress": 696434.6266666667,
+        "egress": 623498376.8533334
+      }
+    }
+  },
+  {
+    "scid": "fd008ee8-98b3-452e-867d-843e2bc7c987",
+    "values": {
+      "latest": {
+        "ingress": 1769524260.8428094,
+        "egress": 16059323583.625418
+      },
+      "mean": {
+        "ingress": 1925096434.5574448,
+        "egress": 14551830799.119669
+      },
+      "max": {
+        "ingress": 9374288990.24,
+        "egress": 19511291511.033558
+      }
+    }
+  },
+  {
+    "scid": "fd261bd8-bb9c-40b8-85e1-e8678821917e",
+    "values": {
+      "latest": {
+        "ingress": 24930356.506666668,
+        "egress": 491974224.88
+      },
+      "mean": {
+        "ingress": 45565076.523753636,
+        "egress": 203428263.2360984
+      },
+      "max": {
+        "ingress": 852533851.9335548,
+        "egress": 3271846742.16
+      }
+    }
+  },
+  {
+    "scid": "fe064cbb-2076-46d2-a7fa-d0a333af6d99",
+    "values": {
+      "latest": {
+        "ingress": 334853.44,
+        "egress": 79044.42666666667
+      },
+      "mean": {
+        "ingress": 306529.3051007863,
+        "egress": 86556.78455576049
+      },
+      "max": {
+        "ingress": 603733.5099337748,
+        "egress": 249405.21739130435
+      }
+    }
+  },
+  {
+    "scid": "fe0abcb1-3bcf-4d4d-9ef5-ecff0d4a9c05",
+    "values": {
+      "latest": {
+        "ingress": 1437.9130434782608,
+        "egress": 3933.0033444816054
+      },
+      "mean": {
+        "ingress": 2351.121628712194,
+        "egress": 5514.726738957395
+      },
+      "max": {
+        "ingress": 89623.25333333333,
+        "egress": 236975.17607973423
+      }
+    }
+  },
+  {
+    "scid": "fe65d966-d66e-4072-b3d0-ca80df00255a",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 0.0
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 0.0
+      }
+    }
+  },
+  {
+    "scid": "fe9c7dfc-1ca4-4331-a87c-b56bf15ba48a",
+    "values": {
+      "latest": {
+        "ingress": 59862305496.61539,
+        "egress": 30748612654.234116
+      },
+      "mean": {
+        "ingress": 31426541659.462727,
+        "egress": 31220288906.911514
+      },
+      "max": {
+        "ingress": 76401188567.17609,
+        "egress": 95807567222.55034
+      }
+    }
+  },
+  {
+    "scid": "fec1613c-bb68-47b5-8e44-740ebeeadc45",
+    "values": {
+      "latest": {
+        "ingress": 1650070.7424749164,
+        "egress": 388342.34113712376
+      },
+      "mean": {
+        "ingress": 411478.1450869022,
+        "egress": 2959722.1966481586
+      },
+      "max": {
+        "ingress": 2390886.073578595,
+        "egress": 54378679.333333336
+      }
+    }
+  },
+  {
+    "scid": "fede0008-fb31-44e9-9121-180924c67589",
+    "values": {
+      "latest": {
+        "ingress": 806848031.5466666,
+        "egress": 1465332689.3066666
+      },
+      "mean": {
+        "ingress": 637334026.8636186,
+        "egress": 1507223288.001132
+      },
+      "max": {
+        "ingress": 1443730847.4152825,
+        "egress": 6361492928.106313
+      }
+    }
+  },
+  {
+    "scid": "fefa7cc7-f886-4721-a2aa-18500bffb51a",
+    "values": {
+      "latest": {
+        "ingress": 1135347939.2,
+        "egress": 112.8
+      },
+      "mean": {
+        "ingress": 799844298.8859733,
+        "egress": 291158.4019626755
+      },
+      "max": {
+        "ingress": 3374669099.733333,
+        "egress": 63488263.17333333
+      }
+    }
+  },
+  {
+    "scid": "fefcc04b-862e-4552-9024-2aa6a13d4925",
+    "values": {
+      "latest": {
+        "ingress": 756.0,
+        "egress": 1.7066666666666668
+      },
+      "mean": {
+        "ingress": 751.7604852200651,
+        "egress": 1.2674307966536467
+      },
+      "max": {
+        "ingress": 762.3654485049834,
+        "egress": 3.4247491638795986
+      }
+    }
+  },
+  {
+    "scid": "ff161312-c6a3-462d-a201-b242cdca6b18",
+    "values": {
+      "latest": {
+        "ingress": 22650486400.853333,
+        "egress": 29290894173.013332
+      },
+      "mean": {
+        "ingress": 31091100153.190575,
+        "egress": 42181400803.573746
+      },
+      "max": {
+        "ingress": 81098192587.09334,
+        "egress": 94266116854.61333
+      }
+    }
+  },
+  {
+    "scid": "ff4d0787-984f-4e1a-ae63-9a2cac28adb3",
+    "values": {
+      "latest": {
+        "ingress": 0.0,
+        "egress": 32.10702341137124
+      },
+      "mean": {
+        "ingress": 0.0,
+        "egress": 32.27267379463734
+      },
+      "max": {
+        "ingress": 0.0,
+        "egress": 35.43624161073826
+      }
+    }
+  },
+  {
+    "scid": "ff9cd230-7657-4885-bf23-174e0e8bb4d7",
+    "values": {
+      "latest": {
+        "ingress": 2025.7866666666666,
+        "egress": 2017.8666666666666
+      },
+      "mean": {
+        "ingress": 2023.5372908185666,
+        "egress": 2018.7191394144975
+      },
+      "max": {
+        "ingress": 2040.2666666666667,
+        "egress": 2036.1333333333334
+      }
+    }
+  },
+  {
+    "scid": "ffc82d25-4f04-4434-86b8-6bd9f73adafa",
+    "values": {
+      "latest": {
+        "ingress": 84560.05333333333,
+        "egress": 323187.44
+      },
+      "mean": {
+        "ingress": 93357.12172003978,
+        "egress": 307000.1813926849
+      },
+      "max": {
+        "ingress": 254757.60797342192,
+        "egress": 587883.4817275747
+      }
+    }
+  },
+  {
+    "scid": "ffeaacca-e6dc-448c-8fdb-056a4a49085e",
+    "values": {
+      "latest": {
+        "ingress": 1476001367.2533333,
+        "egress": 32863428.426666666
+      },
+      "mean": {
+        "ingress": 1059343075.8365268,
+        "egress": 37106128.93955081
+      },
+      "max": {
+        "ingress": 2073230511.12,
+        "egress": 75347606.81879194
+      }
+    }
+  }
+]
diff --git a/test/data/correlator-state.json b/test/data/correlator-state.json
new file mode 100644
index 0000000000000000000000000000000000000000..f5739f59f5011b8130b61f659ffcbca25626ca00
--- /dev/null
+++ b/test/data/correlator-state.json
@@ -0,0 +1,7541 @@
+{
+  "endpoints": [
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "ae4eb0b5-1a92-4f11-8051-eaae40157617",
+      "name": "lo0.rt1.chi.md.geant.net::2001:0798:00aa:0001:0000:0000:0000:0022",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342646.8197498,
+      "services": [],
+      "init_time": 1748342559.691198,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "54a72f25-63c5-4bdf-ab29-4ab92cd91f82",
+        "6d9776b1-4492-40ec-a490-bde273b46ae1",
+        "fffc1675-c6d2-47a2-a413-1f3ebfe466e6",
+        "2cf38edb-a308-4036-a650-a1da121dee65"
+      ],
+      "up": false,
+      "peer": "2001:0798:00aa:0001:0000:0000:0000:0022",
+      "router": "rt1.chi.md.geant.net",
+      "interfaces": [
+        {
+          "name": "2001:0798:00aa:0001:0000:0000:0000:0022",
+          "interface address": "2001:798:aa:1::22/128",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt1.chi.md.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.37.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.34"
+      },
+      "asn": {},
+      "device_name": "rt1.chi.md.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "6ccd14f1-aafd-466b-ad2d-e123180f7d06",
+      "name": "rt1.por.pt.geant.net::ae3",
+      "projects": [
+        "GEANT"
+      ],
+      "alarm": "da16bd59-329b-4837-a5c0-452e72856fe6",
+      "last_activity_ts": 1748332753.397595,
+      "services": [
+        {
+          "name": "LIS-POR-IPTRUNK",
+          "circuit_type": "service",
+          "service_type": "IP TRUNK",
+          "status": "operational",
+          "project": "GEANT",
+          "sid": "GS-00050"
+        }
+      ],
+      "init_time": 1748332753.257223,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [
+        "GEANTINCIDENTS@LISTS.GEANT.ORG",
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "178c06b5-053e-4276-a34b-fa03da3ffaf8"
+      ],
+      "up": false,
+      "router": "rt1.por.pt.geant.net",
+      "interface": "ae3",
+      "circuits": [
+        "LIS-POR-IPTRUNK"
+      ],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [
+        "et-0/0/5",
+        "et-0/1/2"
+      ],
+      "snmp": {
+        "hostname": "rt1.por.pt.geant.net",
+        "community": "0pBiFbD",
+        "index": 578,
+        "oids": [
+          "1.3.6.1.2.1.2.2.1.7.578",
+          "1.3.6.1.2.1.2.2.1.8.578"
+        ]
+      },
+      "device_name": "rt1.por.pt.geant.net"
+    },
+    {
+      "type": "CoriantEndpoint",
+      "uuid": "8dab23a8-44b7-4a68-a75c-52e0eedd0309",
+      "name": "POR01-GRV-2::1-1.3-Optical-100GbE-TTP",
+      "projects": [
+        "GEANT"
+      ],
+      "alarm": "2435cdbe-e269-4008-aec9-04061ccfc154",
+      "last_activity_ts": 1748340941.0887625,
+      "services": [
+        {
+          "name": "BIL-POR-IPTRUNK",
+          "circuit_type": "service",
+          "service_type": "IP TRUNK",
+          "status": "operational",
+          "project": "GEANT",
+          "sid": "GS-00017"
+        }
+      ],
+      "init_time": 1748339712.008906,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "POR01-GRV-2"
+        }
+      ],
+      "contacts": [
+        "GEANTINCIDENTS@LISTS.GEANT.ORG",
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "db6eec71-2913-4c6a-b93b-4eb032ee24a4",
+        "5228e1b6-20f6-4f16-8017-70db7fb990a5"
+      ],
+      "up": true,
+      "ne_name": "POR01-GRV-2",
+      "entity": "1-1.3-Optical-100GbE-TTP",
+      "pops": {
+        "PORTO": {
+          "abbreviation": "POR",
+          "city": "PORTO"
+        }
+      },
+      "endpoints": {
+        "POR01-GRV-2": {
+          "equipment name": "POR01-GRV-2",
+          "card id": "1/1",
+          "port number": "3"
+        }
+      },
+      "trap_counter": "814983",
+      "severity": "critical",
+      "probable_cause": "los",
+      "probable_cause_string": "Loss of Signal (LOS)",
+      "ne_location": "RACK-SE02.BF7-RU15",
+      "ne_id_name": "POR01-GRV-2",
+      "traffic_direction": "2",
+      "additional_information": "Loss Of Signal",
+      "service_affecting": "true",
+      "device_name": "tnms-fra-prod.geant.org"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "3680ca3f-6142-4f7d-ac03-f755950ba292",
+      "name": "amt1.ams.nl.re0.geant.net::ud-0/0/0.1198270",
+      "projects": [],
+      "alarm": "59abbc11-b8ec-4b77-8205-ec0430d81898",
+      "last_activity_ts": 1748368207.4136808,
+      "services": [],
+      "init_time": 1748368207.128133,
+      "locations": [],
+      "contacts": [],
+      "event_history": [
+        "86fc261f-250f-4a94-87b8-f50f2edbf1ed"
+      ],
+      "up": false,
+      "router": "amt1.ams.nl.re0.geant.net",
+      "interface": "ud-0/0/0.1198270",
+      "circuits": [],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": null,
+      "device_name": "amt1.ams.nl.re0.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "bf9bc474-005e-4ee1-b3f9-4ab624074da9",
+      "name": "rt1.por.pt.geant.net::et-0/0/5",
+      "projects": [
+        "GEANT"
+      ],
+      "alarm": "da16bd59-329b-4837-a5c0-452e72856fe6",
+      "last_activity_ts": 1748332753.755717,
+      "services": [
+        {
+          "name": "LIS-POR-IPTRUNK",
+          "circuit_type": "service",
+          "service_type": "IP TRUNK",
+          "status": "operational",
+          "project": "GEANT",
+          "sid": "GS-00050"
+        }
+      ],
+      "init_time": 1748332753.382233,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [
+        "GEANTINCIDENTS@LISTS.GEANT.ORG",
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "709971a5-c2ca-48e7-a039-1989b7b4794d"
+      ],
+      "up": false,
+      "router": "rt1.por.pt.geant.net",
+      "interface": "et-0/0/5",
+      "circuits": [
+        "LIS-POR-IPTRUNK"
+      ],
+      "direct_circuits": [],
+      "bundle": [
+        "ae3"
+      ],
+      "bundle_members": [],
+      "snmp": {
+        "hostname": "rt1.por.pt.geant.net",
+        "community": "0pBiFbD",
+        "index": 553,
+        "oids": [
+          "1.3.6.1.2.1.2.2.1.7.553",
+          "1.3.6.1.2.1.2.2.1.8.553"
+        ]
+      },
+      "device_name": "rt1.por.pt.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "6633949a-f511-4816-9812-dab53c9e37c9",
+      "name": "lo0.rt1.mar.fr.geant.net::2001:0798:00aa:0001:0000:0000:0000:0022",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342651.4736893,
+      "services": [],
+      "init_time": 1748342546.471266,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "0da745ff-1c4e-4174-a969-1df11f1ee3b3",
+        "8c9daab1-8776-4bc0-836e-04f71991cc92",
+        "9367cc02-d1be-4c2f-81e8-74c69acc3687",
+        "81b710f3-0228-41ad-ab88-e8483af41c04"
+      ],
+      "up": false,
+      "peer": "2001:0798:00aa:0001:0000:0000:0000:0022",
+      "router": "rt1.mar.fr.geant.net",
+      "interfaces": [
+        {
+          "name": "2001:0798:00aa:0001:0000:0000:0000:0022",
+          "interface address": "2001:798:aa:1::22/128",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt1.mar.fr.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.39.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.34"
+      },
+      "asn": {},
+      "device_name": "rt1.mar.fr.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "2788c9fb-55d1-43c0-b616-0c7b2475cec3",
+      "name": "amt1.fra.de.re0.geant.net::ud-0/0/0.1540095",
+      "projects": [],
+      "alarm": "d1827a61-5945-41be-9f14-03685f658f18",
+      "last_activity_ts": 1748361263.8255198,
+      "services": [],
+      "init_time": 1748361263.70364,
+      "locations": [],
+      "contacts": [],
+      "event_history": [
+        "573af4eb-24f1-41c8-a584-561a5f625c5f"
+      ],
+      "up": false,
+      "router": "amt1.fra.de.re0.geant.net",
+      "interface": "ud-0/0/0.1540095",
+      "circuits": [],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": null,
+      "device_name": "amt1.fra.de.re0.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "e7a14e52-b8d9-4e8b-8554-56f1e048c5fb",
+      "name": "amt1.ams.nl.re0.geant.net::xe-0/1/0",
+      "projects": [],
+      "alarm": "bd7a0623-a121-4609-b2c3-bd1d280586fd",
+      "last_activity_ts": 1748360817.0941505,
+      "services": [],
+      "init_time": 1748360816.334926,
+      "locations": [],
+      "contacts": [],
+      "event_history": [
+        "40a0b1aa-6987-4027-af62-98a1990cfeff"
+      ],
+      "up": false,
+      "router": "amt1.ams.nl.re0.geant.net",
+      "interface": "xe-0/1/0",
+      "circuits": [],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": null,
+      "device_name": "amt1.ams.nl.re0.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "e6af99dd-aa71-4897-ba2c-1d87072660a1",
+      "name": "amt1.fra.de.re0.geant.net::ud-0/0/0.1540093",
+      "projects": [],
+      "alarm": "ec1f5e86-961a-4ef5-9f75-a7cc30dbeb3b",
+      "last_activity_ts": 1748378213.2327418,
+      "services": [],
+      "init_time": 1748378213.116841,
+      "locations": [],
+      "contacts": [],
+      "event_history": [
+        "ed4aa1bf-a253-40aa-a929-195e1df67986"
+      ],
+      "up": false,
+      "router": "amt1.fra.de.re0.geant.net",
+      "interface": "ud-0/0/0.1540093",
+      "circuits": [],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": null,
+      "device_name": "amt1.fra.de.re0.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "e7aa87da-2590-4b9c-8241-299d00826212",
+      "name": "rt1.bil.es.geant.net::2001:0798:00aa:0001:0000:0000:0000:0022",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342650.4005504,
+      "services": [],
+      "init_time": 1748342546.395267,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "98e1b78f-a47b-4dc0-9fb4-9bfc878d8a7a",
+        "adffe718-ff7b-4c0d-b0ee-d11f73bdb317",
+        "5ea90941-8212-4784-8431-6acf97d67434",
+        "568c00b0-e0de-4f90-9d5a-0472a5877616"
+      ],
+      "up": false,
+      "peer": "2001:0798:00aa:0001:0000:0000:0000:0022",
+      "router": "rt1.bil.es.geant.net",
+      "interfaces": [
+        {
+          "name": "2001:0798:00aa:0001:0000:0000:0000:0022",
+          "interface address": "2001:798:aa:1::22/128",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt1.bil.es.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.13.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.34"
+      },
+      "asn": {},
+      "device_name": "rt1.bil.es.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "b8d993b5-30af-4a44-bd88-2c648bfb5588",
+      "name": "rt2.ams.nl.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342645.3707974,
+      "services": [],
+      "init_time": 1748342556.471214,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "2e0c2692-febf-4053-ad45-f64d4f1e486b",
+        "16232019-4b3c-4b91-90d7-af5c36f00f39",
+        "a97a6474-d120-4527-8f00-b100231509ae",
+        "1b95b7b3-f216-4ada-bdcd-509b495a40ef"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt2.ams.nl.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt2.ams.nl.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.62.40.96.62.1.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt2.ams.nl.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "7cca9ae7-379f-487d-b625-8acc2a059f37",
+      "name": "lo0.rt1.mil2.it.geant.net::2001:0798:00aa:0001:0000:0000:0000:0022",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342651.840837,
+      "services": [],
+      "init_time": 1748342565.879166,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "5662fc11-4508-4bc5-a554-513b84038ee9",
+        "76bae68f-5276-4ab6-acaf-e485bcc17a79",
+        "461f1825-0b82-408b-a7a2-d2b28e47aa0f",
+        "0f0c29b6-1fcc-4088-8e6c-09855287e071"
+      ],
+      "up": false,
+      "peer": "2001:0798:00aa:0001:0000:0000:0000:0022",
+      "router": "rt1.mil2.it.geant.net",
+      "interfaces": [
+        {
+          "name": "2001:0798:00aa:0001:0000:0000:0000:0022",
+          "interface address": "2001:798:aa:1::22/128",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt1.mil2.it.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.14.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.34"
+      },
+      "asn": {},
+      "device_name": "rt1.mil2.it.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "e883bab7-73fc-4941-9186-29601016e1a2",
+      "name": "lo0.rt0.bud.hu.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342668.643134,
+      "services": [],
+      "init_time": 1748342560.407194,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "44cbf1ac-b7bc-4b86-a586-d3fcb442ae3a",
+        "79a69a71-d0b9-4f7d-8af9-a617c20e0c09"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt0.bud.hu.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt0.bud.hu.geant.net",
+        "community": "uat-dashboard",
+        "oid": ".1.3.6.1.4.1.6527.3.1.2.14.4.8.1.11.1.1.4.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt0.bud.hu.geant.net"
+    },
+    {
+      "type": "CoriantEndpoint",
+      "uuid": "14c05a81-c177-4931-8ec7-f6a434d4ce44",
+      "name": "POR01-GRV-2::1-1.4-Optical-100GbE-TTP",
+      "projects": [
+        "GEANT"
+      ],
+      "alarm": "2435cdbe-e269-4008-aec9-04061ccfc154",
+      "last_activity_ts": 1748340621.0722485,
+      "services": [
+        {
+          "name": "BIL-POR-IPTRUNK",
+          "circuit_type": "service",
+          "service_type": "IP TRUNK",
+          "status": "operational",
+          "project": "GEANT",
+          "sid": "GS-00017"
+        }
+      ],
+      "init_time": 1748339711.988906,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "POR01-GRV-2"
+        }
+      ],
+      "contacts": [
+        "GEANTINCIDENTS@LISTS.GEANT.ORG",
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "e92f63f6-b099-40dd-8f19-0b2321931503",
+        "91732e8d-8534-495e-8213-610aa75ad24f",
+        "32712f5c-38e0-432f-b65a-062d7fa92378",
+        "fa311fcd-af31-4632-8cb6-d6fdda916e7d"
+      ],
+      "up": true,
+      "ne_name": "POR01-GRV-2",
+      "entity": "1-1.4-Optical-100GbE-TTP",
+      "pops": {
+        "PORTO": {
+          "abbreviation": "POR",
+          "city": "PORTO"
+        }
+      },
+      "endpoints": {
+        "POR01-GRV-2": {
+          "equipment name": "POR01-GRV-2",
+          "card id": "1/1",
+          "port number": "4"
+        }
+      },
+      "trap_counter": "814982",
+      "severity": "critical",
+      "probable_cause": "los",
+      "probable_cause_string": "Loss of Signal (LOS)",
+      "ne_location": "RACK-SE02.BF7-RU15",
+      "ne_id_name": "POR01-GRV-2",
+      "traffic_direction": "2",
+      "additional_information": "Loss Of Signal",
+      "service_affecting": "true",
+      "device_name": "tnms-fra-prod.geant.org"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "c928d79a-4671-4796-83de-27b419e491a1",
+      "name": "lo0.rt0.zag.hr.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342670.2204359,
+      "services": [],
+      "init_time": 1748342547.75526,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "30fc6e04-647c-48fb-8e7e-3b42ad5862e3",
+        "b5be2110-85a8-4481-8095-2b124adfbb85",
+        "e8f74b29-9867-4c1b-85c7-0f6549482634"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt0.zag.hr.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt0.zag.hr.geant.net",
+        "community": "uat-dashboard",
+        "oid": ".1.3.6.1.4.1.6527.3.1.2.14.4.8.1.11.1.1.4.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt0.zag.hr.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "f10df8f9-7253-4ec4-aded-66b403cee686",
+      "name": "rt1.bil.es.geant.net::et-0/0/5",
+      "projects": [
+        "GEANT"
+      ],
+      "alarm": "2435cdbe-e269-4008-aec9-04061ccfc154",
+      "last_activity_ts": 1748340922.0542085,
+      "services": [
+        {
+          "name": "BIL-POR-IPTRUNK",
+          "circuit_type": "service",
+          "service_type": "IP TRUNK",
+          "status": "operational",
+          "project": "GEANT",
+          "sid": "GS-00017"
+        }
+      ],
+      "init_time": 1748339708.736923,
+      "locations": [
+        {
+          "site": "BILBAO",
+          "equipment": "RT1.BIL.ES"
+        }
+      ],
+      "contacts": [
+        "GEANTINCIDENTS@LISTS.GEANT.ORG",
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "5dc21928-9bb2-4c56-83e4-4020d8360285",
+        "323fabb9-f190-4a24-ab86-0808e1784209"
+      ],
+      "up": true,
+      "router": "rt1.bil.es.geant.net",
+      "interface": "et-0/0/5",
+      "circuits": [
+        "BIL-POR-IPTRUNK"
+      ],
+      "direct_circuits": [],
+      "bundle": [
+        "ae2"
+      ],
+      "bundle_members": [],
+      "snmp": {
+        "hostname": "rt1.bil.es.geant.net",
+        "community": "0pBiFbD",
+        "index": 671,
+        "oids": [
+          "1.3.6.1.2.1.2.2.1.7.671",
+          "1.3.6.1.2.1.2.2.1.8.671"
+        ]
+      },
+      "device_name": "rt1.bil.es.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "a366fa13-8338-4fc0-906a-1c0de5e892b1",
+      "name": "lo0.rt0.bru.be.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342669.7045865,
+      "services": [],
+      "init_time": 1748342547.367262,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "51970f27-3b86-4671-ba8e-cb2bb182342d",
+        "c1994837-5488-4cd6-8acd-f43182fd550c",
+        "1a909872-02fb-420b-9b84-acfd1d48e60b"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt0.bru.be.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt0.bru.be.geant.net",
+        "community": "uat-dashboard",
+        "oid": ".1.3.6.1.4.1.6527.3.1.2.14.4.8.1.11.1.1.4.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt0.bru.be.geant.net"
+    },
+    {
+      "type": "BGPIXEndpoint",
+      "uuid": "1a5b1598-f526-4cb4-8622-49592172db29",
+      "name": "ix::lo0.rt1.mil2.it.geant.net::217.29.66.28",
+      "projects": [],
+      "alarm": "76538207-7bc4-4c7b-a9bd-ec397e64dcd7",
+      "last_activity_ts": 1748379897.827952,
+      "services": [],
+      "init_time": 1748379897.572232,
+      "locations": [
+        {
+          "site": "MILAN 2 CALDERA",
+          "equipment": "RT1.MIL2.IT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "ea8a102d-1698-4543-a6aa-6e4ff5d2ebb0"
+      ],
+      "up": false,
+      "group_peers": [
+        "2001:07f8:000b:0100:01d1:a5d6:0798:0028",
+        "217.29.66.28"
+      ],
+      "router_peers": [
+        "2001:07f8:000b:0100:01d1:a519:9524:0055",
+        "2001:07f8:000b:0100:01d1:a539:6986:0160",
+        "2001:07f8:000b:0100:01d1:a5d0:2635:0020",
+        "2001:07f8:000b:0100:01d1:a5d0:2906:0186",
+        "2001:07f8:000b:0100:01d1:a5d0:2906:0187",
+        "2001:07f8:000b:0100:01d1:a5d0:3303:0017",
+        "2001:07f8:000b:0100:01d1:a5d0:5400:0119",
+        "2001:07f8:000b:0100:01d1:a5d0:6939:0125",
+        "2001:07f8:000b:0100:01d1:a5d0:8075:0112",
+        "2001:07f8:000b:0100:01d1:a5d0:8075:0212",
+        "2001:07f8:000b:0100:01d1:a5d0:8220:0068",
+        "2001:07f8:000b:0100:01d1:a5d0:8551:0102",
+        "2001:07f8:000b:0100:01d1:a5d0:8674:0057",
+        "2001:07f8:000b:0100:01d1:a5d0:8674:0357",
+        "2001:07f8:000b:0100:01d1:a5d0:9002:0116",
+        "2001:07f8:000b:0100:01d1:a5d0:9009:0064",
+        "2001:07f8:000b:0100:01d1:a5d1:0310:0028",
+        "2001:07f8:000b:0100:01d1:a5d1:0310:0029",
+        "2001:07f8:000b:0100:01d1:a5d1:2654:0006",
+        "2001:07f8:000b:0100:01d1:a5d1:3030:0056",
+        "2001:07f8:000b:0100:01d1:a5d1:3030:0228",
+        "2001:07f8:000b:0100:01d1:a5d1:3335:0167",
+        "2001:07f8:000b:0100:01d1:a5d1:6004:0001",
+        "2001:07f8:000b:0100:01d1:a5d1:6004:0253",
+        "2001:07f8:000b:0100:01d1:a5d1:6004:0254",
+        "2001:07f8:000b:0100:01d1:a5d1:6276:0067",
+        "2001:07f8:000b:0100:01d1:a5d1:6509:0016",
+        "2001:07f8:000b:0100:01d1:a5d1:6509:0074",
+        "2001:07f8:000b:0100:01d1:a5d1:9551:0201",
+        "2001:07f8:000b:0100:01d1:a5d1:9679:0010",
+        "2001:07f8:000b:0100:01d1:a5d2:0940:0166",
+        "2001:07f8:000b:0100:01d1:a5d2:0940:0214",
+        "2001:07f8:000b:0100:01d1:a5d2:0940:0233",
+        "2001:07f8:000b:0100:01d1:a5d2:4961:0151",
+        "2001:07f8:000b:0100:01d1:a5d2:6415:0020",
+        "2001:07f8:000b:0100:01d1:a5d3:2934:0131",
+        "2001:07f8:000b:0100:01d1:a5d3:2934:0156",
+        "2001:07f8:000b:0100:01d1:a5d3:6351:0047",
+        "2001:07f8:000b:0100:01d1:a5d3:6692:0041",
+        "2001:07f8:000b:0100:01d1:a5d4:6489:0017",
+        "2001:07f8:000b:0100:01d1:a5d4:6489:0018",
+        "2001:07f8:000b:0100:01d1:a5d4:9544:0051",
+        "2001:07f8:000b:0100:01d1:a5d5:4113:0077",
+        "2001:07f8:000b:0100:01d1:a5d5:4113:0078",
+        "2001:07f8:000b:0100:01d1:a5d5:7976:0217",
+        "2001:07f8:000b:0100:01d1:a5d6:0798:0028",
+        "217.29.66.1",
+        "217.29.66.112",
+        "217.29.66.116",
+        "217.29.66.119",
+        "217.29.66.125",
+        "217.29.66.131",
+        "217.29.66.156",
+        "217.29.66.166",
+        "217.29.66.167",
+        "217.29.66.17",
+        "217.29.66.186",
+        "217.29.66.187",
+        "217.29.66.20",
+        "217.29.66.201",
+        "217.29.66.212",
+        "217.29.66.214",
+        "217.29.66.217",
+        "217.29.66.228",
+        "217.29.66.232",
+        "217.29.66.253",
+        "217.29.66.254",
+        "217.29.66.28",
+        "217.29.66.47",
+        "217.29.66.51",
+        "217.29.66.57",
+        "217.29.66.6",
+        "217.29.66.67",
+        "217.29.66.68",
+        "217.29.66.74",
+        "217.29.67.10",
+        "217.29.67.102",
+        "217.29.67.151",
+        "217.29.67.16",
+        "217.29.67.160",
+        "217.29.67.17",
+        "217.29.67.18",
+        "217.29.67.20",
+        "217.29.67.28",
+        "217.29.67.29",
+        "217.29.67.41",
+        "217.29.67.55",
+        "217.29.67.56",
+        "217.29.67.57",
+        "217.29.67.64",
+        "217.29.67.77",
+        "217.29.67.78",
+        "217.29.67.88"
+      ],
+      "peer": "217.29.66.28",
+      "peer_description": "Servereasy AS60798",
+      "peer_router": "rt1.mil2.it.geant.net",
+      "snmp": {
+        "hostname": "rt1.mil2.it.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.9.1.217.29.66.183.1.217.29.66.28"
+      },
+      "device_name": "rt1.mil2.it.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "3fdd5c03-3ec7-4149-9345-5414ff84ab93",
+      "name": "lo0.rt2.bra.sk.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342646.3601444,
+      "services": [],
+      "init_time": 1748342556.639214,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "b7e0cce5-ab7c-4b48-844c-3d4bd2073721",
+        "980c5d71-b632-40e8-8c31-00800939f604",
+        "b03a3f56-ee4d-4c7f-90cf-8e94a790e188",
+        "8e38306f-f65b-4a21-ace7-fce21e2d3295"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt2.bra.sk.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt2.bra.sk.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.62.40.96.55.1.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt2.bra.sk.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "8ddc7682-747a-44ae-860b-cfba15663a3a",
+      "name": "lo0.rt0.rig.lv.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342668.9408135,
+      "services": [],
+      "init_time": 1748342546.074185,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "4937bcc0-2ed4-4083-927d-ccf7acf31ef1",
+        "edbaf1b1-a8f6-48f6-a54e-3db2247f8cbd"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt0.rig.lv.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt0.rig.lv.geant.net",
+        "community": "uat-dashboard",
+        "oid": ".1.3.6.1.4.1.6527.3.1.2.14.4.8.1.11.1.1.4.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt0.rig.lv.geant.net"
+    },
+    {
+      "type": "CoriantEndpoint",
+      "uuid": "df9987bb-48e7-4cea-a5d8-9dfff0839f02",
+      "name": "BIL01-GRV1::1-1.3-Optical-100GbE-TTP",
+      "projects": [
+        "GEANT"
+      ],
+      "alarm": "2435cdbe-e269-4008-aec9-04061ccfc154",
+      "last_activity_ts": 1748340941.7051294,
+      "services": [
+        {
+          "name": "BIL-POR-IPTRUNK",
+          "circuit_type": "service",
+          "service_type": "IP TRUNK",
+          "status": "operational",
+          "project": "GEANT",
+          "sid": "GS-00017"
+        }
+      ],
+      "init_time": 1748339711.478011,
+      "locations": [
+        {
+          "site": "BILBAO",
+          "equipment": "BIL01-GRV1"
+        }
+      ],
+      "contacts": [
+        "GEANTINCIDENTS@LISTS.GEANT.ORG",
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "85ddbf33-2837-47a7-9e29-8c40e5e8cd5d",
+        "360639f8-4f8b-4298-9c73-071e714b6ada"
+      ],
+      "up": true,
+      "ne_name": "BIL01-GRV1",
+      "entity": "1-1.3-Optical-100GbE-TTP",
+      "pops": {
+        "BILBAO": {
+          "abbreviation": "BIL",
+          "city": "BILBAO"
+        }
+      },
+      "endpoints": {
+        "BIL01-GRV1": {
+          "equipment name": "BIL01-GRV1",
+          "card id": "1/1",
+          "port number": "3"
+        }
+      },
+      "trap_counter": "814969",
+      "severity": "critical",
+      "probable_cause": "remoteFault",
+      "probable_cause_string": "Remote Fault (RF)",
+      "ne_location": "RACK RE14 RU15",
+      "ne_id_name": "BIL01-GRV1",
+      "traffic_direction": "2",
+      "additional_information": "Remote Fault",
+      "service_affecting": "true",
+      "device_name": "tnms-fra-prod.geant.org"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "aa06ab29-1edb-4417-88d2-b9cda3b77866",
+      "name": "lo0.mx1.lon.uk.geant.net::2001:0798:00aa:0001:0000:0000:0000:0022",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342659.4918687,
+      "services": [],
+      "init_time": 1748342549.231252,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "bf053409-9915-470c-812f-70abea737930",
+        "1b94faeb-ae49-45b2-a858-380012edf8ae",
+        "307d882a-0ec6-4e01-8146-8bddffcd5525",
+        "7af18321-90b5-4da5-9a30-2b6b70d201ff"
+      ],
+      "up": false,
+      "peer": "2001:0798:00aa:0001:0000:0000:0000:0022",
+      "router": "mx1.lon.uk.geant.net",
+      "interfaces": [
+        {
+          "name": "2001:0798:00aa:0001:0000:0000:0000:0022",
+          "interface address": "2001:798:aa:1::22/128",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "mx1.lon.uk.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.2.32.1.7.152.0.40.32.255.0.0.0.0.0.0.0.1.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.34"
+      },
+      "asn": {},
+      "device_name": "mx1.lon.uk.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "3706feaa-3b69-4f65-aaf2-01cc043b43e7",
+      "name": "lo0.rt1.pra.cz.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342650.6754253,
+      "services": [],
+      "init_time": 1748342541.307293,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "1c88cc7e-5993-4098-b70c-0ece469e3441",
+        "24e10a09-119b-4deb-9652-31d93f43de1a",
+        "297adf99-3e4e-4edf-b96d-06b270cffaef",
+        "11876b7f-d31c-4204-a698-403eb20799d9"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt1.pra.cz.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt1.pra.cz.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.62.40.96.47.1.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt1.pra.cz.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "9a5a5d2b-7fc9-41cb-8de5-b6a2f9761106",
+      "name": "amt1.fra.de.re0.geant.net::ud-0/0/0.1539995",
+      "projects": [],
+      "alarm": "a56ccbcd-f54f-4fa0-aa1e-a6db5064491b",
+      "last_activity_ts": 1748385984.7099874,
+      "services": [],
+      "init_time": 1748385984.217365,
+      "locations": [],
+      "contacts": [],
+      "event_history": [
+        "46bde25d-2e9e-45f2-8ad5-7db6d783c4fe"
+      ],
+      "up": false,
+      "router": "amt1.fra.de.re0.geant.net",
+      "interface": "ud-0/0/0.1539995",
+      "circuits": [],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": null,
+      "device_name": "amt1.fra.de.re0.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "203e35d1-7521-47ca-94c3-bbf933f79d91",
+      "name": "lo0.rt0.the.gr.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342669.6168025,
+      "services": [],
+      "init_time": 1748342562.166101,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "1693e0c8-8b2f-4b98-8b4c-d65f4523915b",
+        "c147000f-11c4-4001-8ffc-e26dcde0356e"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt0.the.gr.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt0.the.gr.geant.net",
+        "community": "uat-dashboard",
+        "oid": ".1.3.6.1.4.1.6527.3.1.2.14.4.8.1.11.1.1.4.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt0.the.gr.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "467ba644-4f39-4f59-ab3d-f156c53a1050",
+      "name": "rt1.ams.nl.geant.net::xe-0/2/7.16386",
+      "projects": [],
+      "alarm": "d2badb63-8f92-4c80-a704-ced003d82f32",
+      "last_activity_ts": 1748359001.5251298,
+      "services": [],
+      "init_time": 1748358997.116105,
+      "locations": [
+        {
+          "site": "AMSTERDAM",
+          "equipment": "RT1.AMS.NL"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "d4479c72-2bf8-4ccd-9af6-75372246c25b"
+      ],
+      "up": false,
+      "router": "rt1.ams.nl.geant.net",
+      "interface": "xe-0/2/7.16386",
+      "circuits": [],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": {
+        "hostname": "rt1.ams.nl.geant.net",
+        "community": "0pBiFbD",
+        "index": 686,
+        "oids": [
+          "1.3.6.1.2.1.2.2.1.7.686",
+          "1.3.6.1.2.1.2.2.1.8.686"
+        ]
+      },
+      "device_name": "rt1.ams.nl.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "31009eb4-9a9d-4122-bdfb-2fa9dfecd33e",
+      "name": "lo0.rt0.mil2.it.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342671.679103,
+      "services": [],
+      "init_time": 1748342559.411199,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "4da6cbed-635f-4322-a01c-1b86082cf128",
+        "93e371e4-25b4-4ba0-9865-8e0d882ce0e7"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt0.mil2.it.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt0.mil2.it.geant.net",
+        "community": "uat-dashboard",
+        "oid": ".1.3.6.1.4.1.6527.3.1.2.14.4.8.1.11.1.1.4.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt0.mil2.it.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "855eeae0-a64b-4252-9f6a-6e7763c73022",
+      "name": "amt1.fra.de.re0.geant.net::ud-0/0/0.1540111",
+      "projects": [],
+      "alarm": "8d0f7c26-ab79-4027-b450-07afb3d60a18",
+      "last_activity_ts": 1748385980.6121042,
+      "services": [],
+      "init_time": 1748385980.513383,
+      "locations": [],
+      "contacts": [],
+      "event_history": [
+        "4138d869-e724-4b27-a3cc-b320087cd3e6"
+      ],
+      "up": false,
+      "router": "amt1.fra.de.re0.geant.net",
+      "interface": "ud-0/0/0.1540111",
+      "circuits": [],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": null,
+      "device_name": "amt1.fra.de.re0.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "20f40343-3a01-4d5f-8e4f-eae7352f5c24",
+      "name": "lo0.mx1.par.fr.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342654.805664,
+      "services": [],
+      "init_time": 1748342565.819166,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "6c4354ad-66e5-4c65-bec5-c31fe8c12b39",
+        "0e58c213-e7e1-4dfa-83b2-be1d148e9bbb",
+        "48f1de6d-4fa7-4a60-b11d-f8f75368bf2c",
+        "741e055f-3737-4be5-a014-1a919f978882"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "mx1.par.fr.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "mx1.par.fr.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.62.40.97.13.1.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "mx1.par.fr.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "5a1d0840-c584-47eb-9529-07a1572b1666",
+      "name": "amt1.fra.de.re0.geant.net::ud-0/0/0.1540108",
+      "projects": [],
+      "alarm": "52aea828-0a94-4aaa-b68c-d792cd6f7b39",
+      "last_activity_ts": 1748385500.8578403,
+      "services": [],
+      "init_time": 1748385500.40642,
+      "locations": [],
+      "contacts": [],
+      "event_history": [
+        "3dba27d2-4d40-40d3-96a6-4fbd0d8d4640"
+      ],
+      "up": false,
+      "router": "amt1.fra.de.re0.geant.net",
+      "interface": "ud-0/0/0.1540108",
+      "circuits": [],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": null,
+      "device_name": "amt1.fra.de.re0.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "de8c5fe2-0e62-4d50-bbe7-545f59817c13",
+      "name": "amt1.fra.de.re0.geant.net::ud-0/0/0.1539958",
+      "projects": [],
+      "alarm": "fe6c2df8-4183-43d9-9aab-2878378fc3b6",
+      "last_activity_ts": 1748385983.6359253,
+      "services": [],
+      "init_time": 1748385983.317369,
+      "locations": [],
+      "contacts": [],
+      "event_history": [
+        "89064652-70c6-4f54-a390-5980593c5cbe"
+      ],
+      "up": false,
+      "router": "amt1.fra.de.re0.geant.net",
+      "interface": "ud-0/0/0.1539958",
+      "circuits": [],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": null,
+      "device_name": "amt1.fra.de.re0.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "bb21df1e-fc88-4760-b868-29b0fbb1bcfc",
+      "name": "lo0.rt0.lon2.uk.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342672.6169577,
+      "services": [],
+      "init_time": 1748342560.166112,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "993f0abc-0dc0-4372-863a-70dc9ac7ae41",
+        "4ba196a2-54b9-42a4-991c-d301b2327eb9",
+        "12ce488d-c329-4678-8f4c-4caf39714300"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt0.lon2.uk.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt0.lon2.uk.geant.net",
+        "community": "uat-dashboard",
+        "oid": ".1.3.6.1.4.1.6527.3.1.2.14.4.8.1.11.1.1.4.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt0.lon2.uk.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "32ea1b5f-a651-4d99-94cf-aa32e9dd6980",
+      "name": "amt1.fra.de.re0.geant.net::ud-0/0/0.1540109",
+      "projects": [],
+      "alarm": "f5713645-a3da-4de4-8be3-a436f8da5f2f",
+      "last_activity_ts": 1748385984.6279755,
+      "services": [],
+      "init_time": 1748385984.117365,
+      "locations": [],
+      "contacts": [],
+      "event_history": [
+        "d61dc32b-a77d-43db-844b-3bad60bf9cb0"
+      ],
+      "up": false,
+      "router": "amt1.fra.de.re0.geant.net",
+      "interface": "ud-0/0/0.1540109",
+      "circuits": [],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": null,
+      "device_name": "amt1.fra.de.re0.geant.net"
+    },
+    {
+      "type": "CoriantEndpoint",
+      "uuid": "5424bdf8-ad17-4a80-9a1f-add7773201c5",
+      "name": "LIS01-GRV-1::1-1.3-Optical-100GbE-TTP",
+      "projects": [
+        "GEANT"
+      ],
+      "alarm": "da16bd59-329b-4837-a5c0-452e72856fe6",
+      "last_activity_ts": 1748333089.940915,
+      "services": [
+        {
+          "name": "LIS-POR-IPTRUNK",
+          "circuit_type": "service",
+          "service_type": "IP TRUNK",
+          "status": "operational",
+          "project": "GEANT",
+          "sid": "GS-00050"
+        }
+      ],
+      "init_time": 1748332756.703885,
+      "locations": [
+        {
+          "site": "LISBON",
+          "equipment": "LIS01-GRV-1"
+        }
+      ],
+      "contacts": [
+        "GEANTINCIDENTS@LISTS.GEANT.ORG",
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "4e0ce560-30ef-4a54-b29b-d22cfd1d6e04",
+        "705ef2d6-8f78-42fe-975d-405a4cda7468"
+      ],
+      "up": true,
+      "ne_name": "LIS01-GRV-1",
+      "entity": "1-1.3-Optical-100GbE-TTP",
+      "pops": {
+        "LISBON": {
+          "abbreviation": "LIS",
+          "city": "LISBON"
+        }
+      },
+      "endpoints": {
+        "LIS01-GRV-1": {
+          "equipment name": "LIS01-GRV-1",
+          "card id": "1/1",
+          "port number": "3"
+        }
+      },
+      "trap_counter": "814604",
+      "severity": "critical",
+      "probable_cause": "remoteFault",
+      "probable_cause_string": "Remote Fault (RF)",
+      "ne_location": "Rack B-3F RU34",
+      "ne_id_name": "LIS01-GRV-1",
+      "traffic_direction": "2",
+      "additional_information": "Remote Fault",
+      "service_affecting": "true",
+      "device_name": "tnms-fra-prod.geant.org"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "8e0bccb2-ac3f-4c9c-942f-21f09a45b5e8",
+      "name": "lo0.rt2.bra.sk.geant.net::2001:0798:00aa:0001:0000:0000:0000:0022",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342646.3947794,
+      "services": [],
+      "init_time": 1748342568.15007,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "a9e77a3b-4ce8-4ac1-81a3-f4ba7cf3ba71",
+        "01795333-c61f-48f5-9138-19e0fc82ba7f",
+        "6f09322e-e7ac-4862-960c-36a157502b5e",
+        "2268becb-f3dc-4b55-8af4-d3fe00aa7bbf"
+      ],
+      "up": false,
+      "peer": "2001:0798:00aa:0001:0000:0000:0000:0022",
+      "router": "rt2.bra.sk.geant.net",
+      "interfaces": [
+        {
+          "name": "2001:0798:00aa:0001:0000:0000:0000:0022",
+          "interface address": "2001:798:aa:1::22/128",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt2.bra.sk.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.27.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.34"
+      },
+      "asn": {},
+      "device_name": "rt2.bra.sk.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "6dc9f0dc-960c-4461-9f52-e160ff092555",
+      "name": "lo0.rt2.chi.md.geant.net::2001:0798:00aa:0001:0000:0000:0000:0022",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342646.49925,
+      "services": [],
+      "init_time": 1748342551.178159,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "7b9b840f-271d-4557-9de2-f9b5b29b6ae0",
+        "da76369a-9464-40e6-acbd-f4891b1e5668",
+        "7a2c8366-ef16-4594-bc02-a484bec9974b",
+        "e6b0773a-6e27-4527-828e-4bb71b3bf476"
+      ],
+      "up": false,
+      "peer": "2001:0798:00aa:0001:0000:0000:0000:0022",
+      "router": "rt2.chi.md.geant.net",
+      "interfaces": [
+        {
+          "name": "2001:0798:00aa:0001:0000:0000:0000:0022",
+          "interface address": "2001:798:aa:1::22/128",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt2.chi.md.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.38.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.34"
+      },
+      "asn": {},
+      "device_name": "rt2.chi.md.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "96bee04f-8766-42b1-bb4e-ad797d76150a",
+      "name": "lo0.rt0.bra.sk.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342668.5822272,
+      "services": [],
+      "init_time": 1748342546.603266,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "2ea7d590-e972-4906-affd-25e1dde4c3be",
+        "29ed8999-30ab-4b79-adb1-22af0a482377"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt0.bra.sk.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt0.bra.sk.geant.net",
+        "community": "uat-dashboard",
+        "oid": ".1.3.6.1.4.1.6527.3.1.2.14.4.8.1.11.1.1.4.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt0.bra.sk.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "53f65c7f-553c-40e7-82ec-e52ca677c15c",
+      "name": "lo0.rt0.kau.lt.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342669.2429192,
+      "services": [],
+      "init_time": 1748342552.050154,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "471efba1-f667-4171-a890-4a1399fdbf54",
+        "34ed05e8-4c14-498f-b896-dda1150c934b"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt0.kau.lt.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt0.kau.lt.geant.net",
+        "community": "uat-dashboard",
+        "oid": ".1.3.6.1.4.1.6527.3.1.2.14.4.8.1.11.1.1.4.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt0.kau.lt.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "7ae795cd-8e1c-4e89-a5da-27c394341e8c",
+      "name": "rt1.por.pt.geant.net::ae1",
+      "projects": [
+        "GEANT"
+      ],
+      "alarm": "f8fc23d2-554f-4be1-a74c-630a05fa4e33",
+      "last_activity_ts": 1748341601.8105285,
+      "services": [
+        {
+          "name": "DCN-MANAGEMENT-POR-PT",
+          "circuit_type": "service",
+          "service_type": "SERVER LINK",
+          "status": "non-monitored",
+          "project": "GEANT",
+          "sid": "GS-00125"
+        },
+        {
+          "name": "EX3400-MANAGEMENT-POR-PT",
+          "circuit_type": "service",
+          "service_type": "SERVER LINK",
+          "status": "non-monitored",
+          "project": "GEANT",
+          "sid": "GS-00158"
+        }
+      ],
+      "init_time": 1748341601.423081,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "4d0b0a8c-8415-4fc6-b563-b7f377e86d5a"
+      ],
+      "up": false,
+      "router": "rt1.por.pt.geant.net",
+      "interface": "ae1",
+      "circuits": [
+        "DCN-MANAGEMENT-POR-PT",
+        "EX3400-MANAGEMENT-POR-PT"
+      ],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [
+        "xe-3/0/0",
+        "xe-3/0/1"
+      ],
+      "snmp": {
+        "hostname": "rt1.por.pt.geant.net",
+        "community": "0pBiFbD",
+        "index": 576,
+        "oids": [
+          "1.3.6.1.2.1.2.2.1.7.576",
+          "1.3.6.1.2.1.2.2.1.8.576"
+        ]
+      },
+      "device_name": "rt1.por.pt.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "73ed19fe-c702-4d4d-b437-c05abd12fada",
+      "name": "rt1.bil.es.geant.net::et-0/1/2",
+      "projects": [
+        "GEANT"
+      ],
+      "alarm": "2435cdbe-e269-4008-aec9-04061ccfc154",
+      "last_activity_ts": 1748340602.6385038,
+      "services": [
+        {
+          "name": "BIL-POR-IPTRUNK",
+          "circuit_type": "service",
+          "service_type": "IP TRUNK",
+          "status": "operational",
+          "project": "GEANT",
+          "sid": "GS-00017"
+        }
+      ],
+      "init_time": 1748339708.716923,
+      "locations": [
+        {
+          "site": "BILBAO",
+          "equipment": "RT1.BIL.ES"
+        }
+      ],
+      "contacts": [
+        "GEANTINCIDENTS@LISTS.GEANT.ORG",
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "ccd42bff-1508-4f86-86da-da64bfe4a1af",
+        "ea99be20-2f6a-4543-9033-f5bb8124515f",
+        "0b4e364f-96a4-44e0-be85-b6be7d7164de",
+        "09b77515-7a3c-4ac3-822a-6249d372ec9d"
+      ],
+      "up": true,
+      "router": "rt1.bil.es.geant.net",
+      "interface": "et-0/1/2",
+      "circuits": [
+        "BIL-POR-IPTRUNK"
+      ],
+      "direct_circuits": [],
+      "bundle": [
+        "ae2"
+      ],
+      "bundle_members": [],
+      "snmp": {
+        "hostname": "rt1.bil.es.geant.net",
+        "community": "0pBiFbD",
+        "index": 673,
+        "oids": [
+          "1.3.6.1.2.1.2.2.1.7.673",
+          "1.3.6.1.2.1.2.2.1.8.673"
+        ]
+      },
+      "device_name": "rt1.bil.es.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "77cbb12e-74c9-4df5-bbc8-a9681faf3f40",
+      "name": "rt1.por.pt.geant.net::et-0/0/2.1931",
+      "projects": [],
+      "alarm": "ca953de3-a696-41ed-8b64-832e08300734",
+      "last_activity_ts": 1748333890.1946003,
+      "services": [],
+      "init_time": 1748333889.871152,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "98494698-3b29-44f7-8c4f-7476cf9c1279"
+      ],
+      "up": false,
+      "router": "rt1.por.pt.geant.net",
+      "interface": "et-0/0/2.1931",
+      "circuits": [],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": {
+        "hostname": "rt1.por.pt.geant.net",
+        "community": "0pBiFbD",
+        "index": 596,
+        "oids": [
+          "1.3.6.1.2.1.2.2.1.7.596",
+          "1.3.6.1.2.1.2.2.1.8.596"
+        ]
+      },
+      "device_name": "rt1.por.pt.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "9c7dcc37-65c5-4daa-b35f-93fd57dbcc78",
+      "name": "amt1.fra.de.re0.geant.net::ud-0/0/0.1540068",
+      "projects": [],
+      "alarm": "b3f04382-400e-4248-ae42-af46b7cf559f",
+      "last_activity_ts": 1748390650.838392,
+      "services": [],
+      "init_time": 1748390650.603365,
+      "locations": [],
+      "contacts": [],
+      "event_history": [
+        "fb8bf3f4-f713-4533-b0ea-637e11d360dc"
+      ],
+      "up": false,
+      "router": "amt1.fra.de.re0.geant.net",
+      "interface": "ud-0/0/0.1540068",
+      "circuits": [],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": null,
+      "device_name": "amt1.fra.de.re0.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "dcddbc8c-9fad-4e22-b15e-e1d08e26ca16",
+      "name": "lo0.mx1.lon2.uk.geant.net::2001:0798:00aa:0001:0000:0000:0000:0022",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342651.1831112,
+      "services": [],
+      "init_time": 1748342541.287293,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "34710e6a-ae8d-464b-832e-b62815107376",
+        "0f054e0d-fa5f-4bb8-9fca-058ed47c8f28",
+        "6946da20-3672-4943-8bc1-48fe1c0354d0",
+        "05977945-a306-46a9-b013-3ad638ed6aa6"
+      ],
+      "up": false,
+      "peer": "2001:0798:00aa:0001:0000:0000:0000:0022",
+      "router": "mx1.lon2.uk.geant.net",
+      "interfaces": [
+        {
+          "name": "2001:0798:00aa:0001:0000:0000:0000:0022",
+          "interface address": "2001:798:aa:1::22/128",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.5.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.34"
+      },
+      "asn": {},
+      "device_name": "mx1.lon2.uk.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "5e96bd33-d14f-4af0-9809-580c9b884b57",
+      "name": "rt1.por.pt.geant.net::62.40.126.61",
+      "projects": [],
+      "alarm": "522ebf96-3638-45e8-9013-c4534d7e8eba",
+      "last_activity_ts": 1748335172.461732,
+      "services": [
+        {
+          "name": "FCCN-AP2-POR-LHCONE",
+          "circuit_type": "service",
+          "service_type": "L3-VPN",
+          "status": "operational",
+          "project": "FCCN",
+          "sid": "GS-02402"
+        }
+      ],
+      "init_time": 1748335171.971027,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "c94fbc0d-a048-42e5-9b3c-b409e4302a34"
+      ],
+      "up": false,
+      "peer": "62.40.126.61",
+      "router": "rt1.por.pt.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.126.60",
+          "interface address": "62.40.126.60/31",
+          "interface name": "ae10.1990",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt1.por.pt.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.14.1.62.40.126.60.1.62.40.126.61"
+      },
+      "asn": {
+        "asn": 1930,
+        "peers": [
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "62.40.124.98",
+            "group": "eGEANT"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "2001:0798:0017:10aa:0000:0000:0000:000e",
+            "group": "eGEANT6"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "83.97.88.210",
+            "group": "IAS-NRENS"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "2001:0798:0001:0000:0000:0000:0000:00f2",
+            "group": "IAS-NRENS-ipv6"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "62.40.126.17",
+            "group": "lhcone-nrens"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "2001:0798:0111:0001:0000:0000:0000:0052",
+            "group": "lhcone6-nrens"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "62.40.127.145",
+            "group": "eGEANT"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "2001:0798:0099:0001:0000:0000:0000:00ea",
+            "group": "eGEANT6"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "83.97.88.45",
+            "group": "IAS-NRENS"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "2001:0798:0001:0000:0000:0000:0000:020a",
+            "group": "IAS-NRENS-ipv6"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "2001:0798:0111:0001:0000:0000:0000:0056",
+            "group": "lhcone6-nrens"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "62.40.126.61",
+            "group": "lhcone-nrens"
+          }
+        ]
+      },
+      "device_name": "rt1.por.pt.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "84490d9f-bf44-4ebb-8930-60d19be6d20a",
+      "name": "rt1.por.pt.geant.net::et-0/1/5",
+      "projects": [
+        "GEANT"
+      ],
+      "alarm": "2435cdbe-e269-4008-aec9-04061ccfc154",
+      "last_activity_ts": 1748339708.8287008,
+      "services": [
+        {
+          "name": "BIL-POR-IPTRUNK",
+          "circuit_type": "service",
+          "service_type": "IP TRUNK",
+          "status": "operational",
+          "project": "GEANT",
+          "sid": "GS-00017"
+        }
+      ],
+      "init_time": 1748339708.546027,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [
+        "GEANTINCIDENTS@LISTS.GEANT.ORG",
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "27716804-e70c-4ab7-832a-ce06a408ef22"
+      ],
+      "up": false,
+      "router": "rt1.por.pt.geant.net",
+      "interface": "et-0/1/5",
+      "circuits": [
+        "BIL-POR-IPTRUNK"
+      ],
+      "direct_circuits": [],
+      "bundle": [
+        "ae2"
+      ],
+      "bundle_members": [],
+      "snmp": {
+        "hostname": "rt1.por.pt.geant.net",
+        "community": "0pBiFbD",
+        "index": 555,
+        "oids": [
+          "1.3.6.1.2.1.2.2.1.7.555",
+          "1.3.6.1.2.1.2.2.1.8.555"
+        ]
+      },
+      "device_name": "rt1.por.pt.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "0915da63-5e20-403d-abe5-9a4065a69186",
+      "name": "lo0.rt0.par.fr.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342670.683712,
+      "services": [],
+      "init_time": 1748342567.214075,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "bad21fe8-fcd1-4840-8323-d83ed1942056",
+        "ba303a49-6a1a-4071-8125-edbb3fd1c526",
+        "a9ae0367-1e68-4a4b-ba8f-efe5a4541544"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt0.par.fr.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt0.par.fr.geant.net",
+        "community": "uat-dashboard",
+        "oid": ".1.3.6.1.4.1.6527.3.1.2.14.4.8.1.11.1.1.4.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt0.par.fr.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "8f7f7351-9a8b-41c8-9b44-6895807b44a9",
+      "name": "lo0.rt1.kie.ua.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342647.4752698,
+      "services": [],
+      "init_time": 1748342565.711166,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "0d8ec93b-653a-4779-8326-f5da40d1a646",
+        "106acaa7-6670-4e0e-826e-212a1725e4ec",
+        "30032f96-f106-4cb7-bd6b-eff45c636f63",
+        "828b19de-3d16-4845-8e0f-f5568050f24c"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt1.kie.ua.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt1.kie.ua.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.62.40.96.1.1.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt1.kie.ua.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "c9a0c856-56dc-4e8d-99a8-121990aad729",
+      "name": "lo0.rt0.cor.ie.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342668.476518,
+      "services": [],
+      "init_time": 1748342559.891197,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "720cba05-ec51-44ed-b310-92ed6084fb6b",
+        "374656e5-5d8f-41f0-9e0d-95feeb1f1d3b",
+        "a01c9954-957e-4c97-a8bf-d3e9545ae1f0"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt0.cor.ie.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt0.cor.ie.geant.net",
+        "community": "uat-dashboard",
+        "oid": ".1.3.6.1.4.1.6527.3.1.2.14.4.8.1.11.1.1.4.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt0.cor.ie.geant.net"
+    },
+    {
+      "type": "RouterEndpoint",
+      "uuid": "c20c24f0-bdf1-4c66-939b-418fdfee0e02",
+      "name": "router-isolation::rt1.por.pt.geant.net",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748346460.9118106,
+      "services": [
+        {
+          "name": "BIL-POR-IPTRUNK",
+          "circuit_type": "",
+          "service_type": "IP TRUNK",
+          "status": "operational",
+          "project": "",
+          "sid": "GS-00017"
+        },
+        {
+          "name": "DCN-MANAGEMENT-POR-PT",
+          "circuit_type": "",
+          "service_type": "SERVER LINK",
+          "status": "non-monitored",
+          "project": "",
+          "sid": "GS-00125"
+        },
+        {
+          "name": "EX3400-MANAGEMENT-POR-PT",
+          "circuit_type": "",
+          "service_type": "SERVER LINK",
+          "status": "non-monitored",
+          "project": "",
+          "sid": "GS-00158"
+        },
+        {
+          "name": "FCCN-AP2",
+          "circuit_type": "",
+          "service_type": "GEANT IP",
+          "status": "operational",
+          "project": "",
+          "sid": "GS-00460"
+        },
+        {
+          "name": "FCCN-AP2-IAS",
+          "circuit_type": "",
+          "service_type": "GWS - INDIRECT",
+          "status": "operational",
+          "project": "",
+          "sid": "GS-00528"
+        },
+        {
+          "name": "FCCN-AP2-POR-LHCONE",
+          "circuit_type": "",
+          "service_type": "L3-VPN",
+          "status": "operational",
+          "project": "",
+          "sid": "GS-02402"
+        },
+        {
+          "name": "FCCN-IPP-EXPRESSROUTE-VLAN1946",
+          "circuit_type": "",
+          "service_type": "EXPRESS ROUTE",
+          "status": "operational",
+          "project": "",
+          "sid": "GS-01143"
+        },
+        {
+          "name": "FCCN-NOVESBE-EXPRESSROUTE-VLAN1944",
+          "circuit_type": "",
+          "service_type": "EXPRESS ROUTE",
+          "status": "operational",
+          "project": "",
+          "sid": "GS-01144"
+        },
+        {
+          "name": "LIS-POR-IPTRUNK",
+          "circuit_type": "",
+          "service_type": "IP TRUNK",
+          "status": "operational",
+          "project": "",
+          "sid": "GS-00050"
+        },
+        {
+          "name": "POR-POR-IPTRUNK",
+          "circuit_type": "",
+          "service_type": "IP TRUNK",
+          "status": "non-monitored",
+          "project": "",
+          "sid": "GS-02587"
+        }
+      ],
+      "init_time": 1748342491.1641262,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [
+        "GEANTINCIDENTS@LISTS.GEANT.ORG",
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [],
+      "up": true,
+      "device_name": "rt1.por.pt.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "0dffc27e-b483-4ef9-a595-5f0bfb6475e1",
+      "name": "lo0.rt0.vie.at.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342671.6318777,
+      "services": [],
+      "init_time": 1748342547.70726,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "d95d13aa-aaa5-4397-8ec1-c660d3a13fe1",
+        "47f12d25-936b-4e9c-90c9-675b0c65906e",
+        "93549666-eee5-49e6-9b2f-683296a8e83b"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt0.vie.at.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt0.vie.at.geant.net",
+        "community": "uat-dashboard",
+        "oid": ".1.3.6.1.4.1.6527.3.1.2.14.4.8.1.11.1.1.4.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt0.vie.at.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "6c0d39b5-9f80-4d92-a6b5-51e875de13c8",
+      "name": "lo0.mx1.bud.hu.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342649.5275989,
+      "services": [],
+      "init_time": 1748342565.583167,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "92335c20-bd31-4808-affd-37263fb122d6",
+        "8c927a0d-5d98-498e-a8f7-2863b9775b00",
+        "328e0a07-d4c0-49ec-bd09-0e9fd2f06750"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "mx1.bud.hu.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "mx1.bud.hu.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.62.40.97.1.1.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "mx1.bud.hu.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "3d2c84cb-fa8d-4c67-990a-d97b65e824ad",
+      "name": "rt1.por.pt.geant.net::et-0/0/2",
+      "projects": [
+        "FCCN"
+      ],
+      "alarm": "522ebf96-3638-45e8-9013-c4534d7e8eba",
+      "last_activity_ts": 1748335172.7410347,
+      "services": [
+        {
+          "name": "FCCN-AP2",
+          "circuit_type": "service",
+          "service_type": "GEANT IP",
+          "status": "operational",
+          "project": "FCCN",
+          "sid": "GS-00460"
+        },
+        {
+          "name": "FCCN-AP2-IAS",
+          "circuit_type": "service",
+          "service_type": "GWS - INDIRECT",
+          "status": "operational",
+          "project": "FCCN",
+          "sid": "GS-00528"
+        },
+        {
+          "name": "FCCN-AP2-POR-LHCONE",
+          "circuit_type": "service",
+          "service_type": "L3-VPN",
+          "status": "operational",
+          "project": "FCCN",
+          "sid": "GS-02402"
+        },
+        {
+          "name": "FCCN-IPP-EXPRESSROUTE-VLAN1946",
+          "circuit_type": "service",
+          "service_type": "EXPRESS ROUTE",
+          "status": "operational",
+          "project": "FCCN",
+          "sid": "GS-01143"
+        },
+        {
+          "name": "FCCN-NOVESBE-EXPRESSROUTE-VLAN1944",
+          "circuit_type": "service",
+          "service_type": "EXPRESS ROUTE",
+          "status": "operational",
+          "project": "FCCN",
+          "sid": "GS-01144"
+        }
+      ],
+      "init_time": 1748335172.131026,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "9556b64d-fd77-42a6-bc32-a5acf082a39c"
+      ],
+      "up": false,
+      "router": "rt1.por.pt.geant.net",
+      "interface": "et-0/0/2",
+      "circuits": [
+        "FCCN-AP2",
+        "FCCN-AP2-IAS",
+        "FCCN-AP2-POR-LHCONE",
+        "FCCN-IPP-EXPRESSROUTE-VLAN1946",
+        "FCCN-NOVESBE-EXPRESSROUTE-VLAN1944"
+      ],
+      "direct_circuits": [],
+      "bundle": [
+        "ae10"
+      ],
+      "bundle_members": [],
+      "snmp": {
+        "hostname": "rt1.por.pt.geant.net",
+        "community": "0pBiFbD",
+        "index": 552,
+        "oids": [
+          "1.3.6.1.2.1.2.2.1.7.552",
+          "1.3.6.1.2.1.2.2.1.8.552"
+        ]
+      },
+      "device_name": "rt1.por.pt.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "5b34817d-7b4a-4642-905b-8e521bd8525c",
+      "name": "rt1.por.pt.geant.net::ae2",
+      "projects": [
+        "GEANT"
+      ],
+      "alarm": "2435cdbe-e269-4008-aec9-04061ccfc154",
+      "last_activity_ts": 1748339708.7335362,
+      "services": [
+        {
+          "name": "BIL-POR-IPTRUNK",
+          "circuit_type": "service",
+          "service_type": "IP TRUNK",
+          "status": "operational",
+          "project": "GEANT",
+          "sid": "GS-00017"
+        }
+      ],
+      "init_time": 1748339708.518027,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [
+        "GEANTINCIDENTS@LISTS.GEANT.ORG",
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "6b73cd81-483b-44f6-a4b5-2eb762f36dd2"
+      ],
+      "up": false,
+      "router": "rt1.por.pt.geant.net",
+      "interface": "ae2",
+      "circuits": [
+        "BIL-POR-IPTRUNK"
+      ],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [
+        "et-0/1/5",
+        "et-1/0/5"
+      ],
+      "snmp": {
+        "hostname": "rt1.por.pt.geant.net",
+        "community": "0pBiFbD",
+        "index": 577,
+        "oids": [
+          "1.3.6.1.2.1.2.2.1.7.577",
+          "1.3.6.1.2.1.2.2.1.8.577"
+        ]
+      },
+      "device_name": "rt1.por.pt.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "cad20a8a-f374-437e-a747-f4c8f9400135",
+      "name": "amt1.fra.de.re0.geant.net::ud-0/0/0.1540106",
+      "projects": [],
+      "alarm": "33626022-054e-4faf-8690-db3955f56a4a",
+      "last_activity_ts": 1748381893.4775503,
+      "services": [],
+      "init_time": 1748381893.308691,
+      "locations": [],
+      "contacts": [],
+      "event_history": [
+        "e80fb043-2553-42b0-b47e-225fe51c5b58"
+      ],
+      "up": false,
+      "router": "amt1.fra.de.re0.geant.net",
+      "interface": "ud-0/0/0.1540106",
+      "circuits": [],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": null,
+      "device_name": "amt1.fra.de.re0.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "a6643a96-9575-4bd6-afa8-9f279bbd9dd3",
+      "name": "lo0.rt0.lon.uk.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342671.0767264,
+      "services": [],
+      "init_time": 1748342562.439183,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "19a6e52b-32be-47f1-9d33-f3259757a6ed",
+        "61a9b8b5-265a-49db-a194-86c4ee7ca79d"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt0.lon.uk.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt0.lon.uk.geant.net",
+        "community": "uat-dashboard",
+        "oid": ".1.3.6.1.4.1.6527.3.1.2.14.4.8.1.11.1.1.4.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt0.lon.uk.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "400368c9-5ea8-4735-a09c-b62401c4415a",
+      "name": "lo0.mx1.poz.pl.geant.net::2001:0798:00aa:0001:0000:0000:0000:0022",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342649.4161394,
+      "services": [],
+      "init_time": 1748342561.831187,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "39e811a8-3e82-42a2-8ff8-53e4857b6018",
+        "0ee7f880-e127-49b1-8938-b26ed9acd38e",
+        "df7b97b4-25cd-4046-a812-099709d91418",
+        "5d896660-1f58-4da5-ab1d-bee36addeb07"
+      ],
+      "up": false,
+      "peer": "2001:0798:00aa:0001:0000:0000:0000:0022",
+      "router": "mx1.poz.pl.geant.net",
+      "interfaces": [
+        {
+          "name": "2001:0798:00aa:0001:0000:0000:0000:0022",
+          "interface address": "2001:798:aa:1::22/128",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "mx1.poz.pl.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.2.32.1.7.152.0.35.32.255.0.0.0.0.0.0.0.1.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.34"
+      },
+      "asn": {},
+      "device_name": "mx1.poz.pl.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "21f7fd6c-7e50-4f63-9b99-bf2e1e7c8ae2",
+      "name": "lo0.mx1.lon.uk.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342659.4384143,
+      "services": [],
+      "init_time": 1748342545.679271,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "824f4310-acbc-4f0a-aa75-f012f0adc347",
+        "13698c4e-8e3d-42d8-8f85-45e33218933b",
+        "0997001f-6d79-4992-b104-c3e5cd644db6",
+        "5a1f11ba-d852-45ef-9a51-f17745b2b38c"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "mx1.lon.uk.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "mx1.lon.uk.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.62.40.97.5.1.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "mx1.lon.uk.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "5f785138-79e8-4b56-b717-3e4615504e51",
+      "name": "lo0.rt2.chi.md.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342646.451928,
+      "services": [],
+      "init_time": 1748342556.747213,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "08e871b0-3545-46b7-ae9a-26cf482f7a68",
+        "3a5fcba1-f92f-4b53-abe2-eef3037c57ab",
+        "8d0a196c-143c-4ca6-bb84-eca07e16d9d1",
+        "dcdb268e-c969-4e1a-be16-01812e32a277"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt2.chi.md.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt2.chi.md.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.62.40.96.4.1.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt2.chi.md.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "380bef04-6aaf-4318-b3db-0c8ee9dc9705",
+      "name": "rt1.por.pt.geant.net::xe-3/0/0",
+      "projects": [
+        "GEANT"
+      ],
+      "alarm": "f8fc23d2-554f-4be1-a74c-630a05fa4e33",
+      "last_activity_ts": 1748341574.6860194,
+      "services": [
+        {
+          "name": "DCN-MANAGEMENT-POR-PT",
+          "circuit_type": "service",
+          "service_type": "SERVER LINK",
+          "status": "non-monitored",
+          "project": "GEANT",
+          "sid": "GS-00125"
+        },
+        {
+          "name": "EX3400-MANAGEMENT-POR-PT",
+          "circuit_type": "service",
+          "service_type": "SERVER LINK",
+          "status": "non-monitored",
+          "project": "GEANT",
+          "sid": "GS-00158"
+        }
+      ],
+      "init_time": 1748341574.327222,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "a733bade-0391-4dc9-9dcd-c25eb83e7db2"
+      ],
+      "up": false,
+      "router": "rt1.por.pt.geant.net",
+      "interface": "xe-3/0/0",
+      "circuits": [
+        "DCN-MANAGEMENT-POR-PT",
+        "EX3400-MANAGEMENT-POR-PT"
+      ],
+      "direct_circuits": [],
+      "bundle": [
+        "ae1"
+      ],
+      "bundle_members": [],
+      "snmp": {
+        "hostname": "rt1.por.pt.geant.net",
+        "community": "0pBiFbD",
+        "index": 531,
+        "oids": [
+          "1.3.6.1.2.1.2.2.1.7.531",
+          "1.3.6.1.2.1.2.2.1.8.531"
+        ]
+      },
+      "device_name": "rt1.por.pt.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "c7ea7c8d-45c3-4f02-81ea-3fd155f83012",
+      "name": "lo0.rt0.sof.bg.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342669.8651447,
+      "services": [],
+      "init_time": 1748342550.659245,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "fe5f4b00-0f00-45fd-ac15-92829f1d3ba2",
+        "e35ce4ee-b2cf-45e9-b78c-80ede7dcdd6f"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt0.sof.bg.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt0.sof.bg.geant.net",
+        "community": "uat-dashboard",
+        "oid": ".1.3.6.1.4.1.6527.3.1.2.14.4.8.1.11.1.1.4.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt0.sof.bg.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "7b401c1e-dc87-4fb4-be8d-d2da562df650",
+      "name": "mx2.lis.pt.geant.net::ae3",
+      "projects": [
+        "GEANT"
+      ],
+      "alarm": "da16bd59-329b-4837-a5c0-452e72856fe6",
+      "last_activity_ts": 1748333497.4945238,
+      "services": [
+        {
+          "name": "LIS-POR-IPTRUNK",
+          "circuit_type": "service",
+          "service_type": "IP TRUNK",
+          "status": "operational",
+          "project": "GEANT",
+          "sid": "GS-00050"
+        }
+      ],
+      "init_time": 1748332753.345222,
+      "locations": [
+        {
+          "site": "LISBON",
+          "equipment": "MX2.LIS.PT"
+        }
+      ],
+      "contacts": [
+        "GEANTINCIDENTS@LISTS.GEANT.ORG",
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "8ee09ce1-b6cd-4787-bb44-14febcfd43c3",
+        "d61067d4-07f8-405d-8d71-6651be74dd8e"
+      ],
+      "up": true,
+      "router": "mx2.lis.pt.geant.net",
+      "interface": "ae3",
+      "circuits": [
+        "LIS-POR-IPTRUNK"
+      ],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [
+        "et-4/0/2",
+        "et-4/0/5"
+      ],
+      "snmp": {
+        "hostname": "mx2.lis.pt.geant.net",
+        "community": "0pBiFbD",
+        "index": 539,
+        "oids": [
+          "1.3.6.1.2.1.2.2.1.7.539",
+          "1.3.6.1.2.1.2.2.1.8.539"
+        ]
+      },
+      "device_name": "mx2.lis.pt.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "63c5bec7-c5f0-4b2c-a956-2c2f3d365772",
+      "name": "rt1.bil.es.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342649.910361,
+      "services": [],
+      "init_time": 1748342546.343267,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "be693686-cd66-4279-8b78-bd194d38df95",
+        "1ffdd3da-adeb-4084-831a-2d8ab32297cb",
+        "9c9a9df2-069c-4aea-8b9f-82234584e3dc",
+        "9d9e21ff-47a0-4b38-8e2a-44dceb69b13e"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt1.bil.es.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt1.bil.es.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.62.40.96.42.1.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt1.bil.es.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "fa75f7aa-a089-49ad-8d54-e879726425ec",
+      "name": "lo0.rt0.ath2.gr.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342671.2705758,
+      "services": [],
+      "init_time": 1748342567.234075,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "eb91b5d5-36ee-4e80-815e-f726c6e57738",
+        "16d1d9a3-4d44-41c8-b860-d1a045039636"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt0.ath2.gr.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "community": "uat-dashboard",
+        "oid": ".1.3.6.1.4.1.6527.3.1.2.14.4.8.1.11.1.1.4.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt0.ath2.gr.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "6feb93fc-2646-4a7b-8552-9a1f87ca29c3",
+      "name": "lo0.rt1.bra.sk.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342646.726527,
+      "services": [],
+      "init_time": 1748342565.491168,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "f2ec369c-84c4-4ad4-b426-8de95ced324e",
+        "35c8f6f6-52f4-43b5-b6ce-afe4356471b7",
+        "d60e0cf0-4543-4e80-8ce0-670bb2ac24e8",
+        "133b3928-6d84-4153-8459-21426a4d2fc5"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt1.bra.sk.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt1.bra.sk.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.62.40.96.54.1.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt1.bra.sk.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "ba4bdbba-2d93-45e6-9411-c497329209a6",
+      "name": "lo0.mx1.par.fr.geant.net::2001:0798:00aa:0001:0000:0000:0000:0022",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342654.8341181,
+      "services": [],
+      "init_time": 1748342555.691218,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "27decbeb-d023-4359-886c-45a91750053d",
+        "f8fa6647-8649-4fd4-9e27-6f47c31aa206",
+        "0fd79d5f-95a5-462e-be2b-7f0772526c4c",
+        "6b279dd4-be84-442f-ba3a-7ab6b978fa9f"
+      ],
+      "up": false,
+      "peer": "2001:0798:00aa:0001:0000:0000:0000:0022",
+      "router": "mx1.par.fr.geant.net",
+      "interfaces": [
+        {
+          "name": "2001:0798:00aa:0001:0000:0000:0000:0022",
+          "interface address": "2001:798:aa:1::22/128",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "mx1.par.fr.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.2.32.1.7.152.0.24.32.255.0.0.0.0.0.0.0.3.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.34"
+      },
+      "asn": {},
+      "device_name": "mx1.par.fr.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "dadf8163-0dd1-446e-888c-6a0deba4df41",
+      "name": "lo0.rt1.bra.sk.geant.net::2001:0798:00aa:0001:0000:0000:0000:0022",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342646.7727556,
+      "services": [],
+      "init_time": 1748342551.110159,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "3317e1c5-e251-44fb-8fca-68d37b7f2b40",
+        "09f3058a-c010-4a8b-aa0a-74ff6933db8d",
+        "c9e14101-018a-48f4-a99c-f93be16c90b7",
+        "ce21ce30-e681-49ab-96b0-7815a7f18d45"
+      ],
+      "up": false,
+      "peer": "2001:0798:00aa:0001:0000:0000:0000:0022",
+      "router": "rt1.bra.sk.geant.net",
+      "interfaces": [
+        {
+          "name": "2001:0798:00aa:0001:0000:0000:0000:0022",
+          "interface address": "2001:798:aa:1::22/128",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt1.bra.sk.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.26.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.34"
+      },
+      "asn": {},
+      "device_name": "rt1.bra.sk.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "f9a25798-1361-415a-a4b9-275a40b59018",
+      "name": "lo0.rt0.gen.ch.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342670.4101179,
+      "services": [],
+      "init_time": 1748342557.38721,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "a2556798-5691-48b7-b48e-1b1840e80a8a",
+        "1ee22209-946a-4dc9-b391-0aa956a43a00",
+        "2ff1ace7-3f6b-48c2-b56c-d8bb885c0432"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt0.gen.ch.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt0.gen.ch.geant.net",
+        "community": "uat-dashboard",
+        "oid": ".1.3.6.1.4.1.6527.3.1.2.14.4.8.1.11.1.1.4.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt0.gen.ch.geant.net"
+    },
+    {
+      "type": "BGPIXEndpoint",
+      "uuid": "afba19fd-82e1-4f13-8b74-0f35b6b483d9",
+      "name": "ix::lo0.rt1.mar.fr.geant.net::2001:07f8:0036:0000:0000:0f10:0000:0001",
+      "projects": [],
+      "alarm": "c73c6a62-da0d-4c4e-a33e-a65c97fd815b",
+      "last_activity_ts": 1748410407.1306663,
+      "services": [],
+      "init_time": 1747749208.172815,
+      "locations": [
+        {
+          "site": "MARSEILLE",
+          "equipment": "RT1.MAR.FR"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "9399e328-1951-42f0-af25-8947bbc79de8",
+        "e5932065-85e3-4b81-8809-c5cd51b21cf1",
+        "ad6fc053-0ca7-4b13-be7b-048a0874da38",
+        "b70dedaa-b54a-4af6-9c88-2a2911fa4c41"
+      ],
+      "up": false,
+      "group_peers": [
+        "185.1.192.15",
+        "185.1.192.87",
+        "185.1.47.21",
+        "185.1.47.42",
+        "185.6.36.60",
+        "185.6.36.61",
+        "193.203.0.126",
+        "193.203.0.33",
+        "195.66.225.238",
+        "195.66.225.239",
+        "2001:07f8:0000:0000:0000:002a:0000:0001",
+        "2001:07f8:0001:0000:0000:a500:0042:0001",
+        "2001:07f8:0001:0000:0000:a500:3856:0001",
+        "2001:07f8:0004:0000:0000:0000:002a:0001",
+        "2001:07f8:0004:0000:0000:0000:0f10:0001",
+        "2001:07f8:0018:0000:0000:0000:0000:0060",
+        "2001:07f8:0018:0000:0000:0000:0000:0061",
+        "2001:07f8:0030:0000:0001:0001:0000:0042",
+        "2001:07f8:0030:0000:0001:0001:0000:3856",
+        "2001:07f8:0036:0000:0000:002a:0000:0001",
+        "2001:07f8:0036:0000:0000:0f10:0000:0001",
+        "2001:07f8:00a0:0000:0000:002a:0000:0001",
+        "2001:07f8:00a0:0000:0000:0f10:0000:0001",
+        "80.249.208.250",
+        "80.249.209.250",
+        "80.81.194.42"
+      ],
+      "router_peers": [
+        "185.1.47.113",
+        "185.1.47.115",
+        "185.1.47.121",
+        "185.1.47.125",
+        "185.1.47.2",
+        "185.1.47.21",
+        "185.1.47.252",
+        "185.1.47.253",
+        "185.1.47.26",
+        "185.1.47.36",
+        "185.1.47.38",
+        "185.1.47.4",
+        "185.1.47.42",
+        "185.1.47.48",
+        "185.1.47.54",
+        "185.1.47.55",
+        "185.1.47.61",
+        "185.1.47.69",
+        "185.1.47.79",
+        "185.1.47.85",
+        "185.1.47.9",
+        "185.1.47.92",
+        "2001:07f8:0036:0000:0000:002a:0000:0001",
+        "2001:07f8:0036:0000:0000:0ce7:0000:0001",
+        "2001:07f8:0036:0000:0000:0f10:0000:0001",
+        "2001:07f8:0036:0000:0000:1b1b:0000:0001",
+        "2001:07f8:0036:0000:0000:2306:0000:0001",
+        "2001:07f8:0036:0000:0000:2846:0000:0001",
+        "2001:07f8:0036:0000:0000:2846:0000:0002",
+        "2001:07f8:0036:0000:0000:32e6:0000:0001",
+        "2001:07f8:0036:0000:0000:3417:0000:0001",
+        "2001:07f8:0036:0000:0000:3a3b:0000:0001",
+        "2001:07f8:0036:0000:0000:407d:0000:0001",
+        "2001:07f8:0036:0000:0000:407d:0000:0002",
+        "2001:07f8:0036:0000:0000:50ed:00fc:0001",
+        "2001:07f8:0036:0000:0000:50ed:00fd:0001",
+        "2001:07f8:0036:0000:0000:787c:0000:0001",
+        "2001:07f8:0036:0000:0000:799d:0000:0001",
+        "2001:07f8:0036:0000:0000:80a6:0000:0001",
+        "2001:07f8:0036:0000:0000:80a6:0000:0002",
+        "2001:07f8:0036:0000:0000:d361:0000:0001",
+        "2001:07f8:0036:0000:0003:0b64:0000:0001",
+        "2001:07f8:0036:0000:0006:0eba:0000:0001",
+        "2001:07f8:0036:0000:0006:0eba:0000:0002"
+      ],
+      "peer": "2001:07f8:0036:0000:0000:0f10:0000:0001",
+      "peer_description": "Packet_Clearing_House AS3856",
+      "peer_router": "rt1.mar.fr.geant.net",
+      "snmp": {
+        "hostname": "rt1.mar.fr.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.9.2.32.1.7.248.0.54.0.0.0.0.81.229.0.0.0.1.2.32.1.7.248.0.54.0.0.0.0.15.16.0.0.0.1"
+      },
+      "device_name": "rt1.mar.fr.geant.net"
+    },
+    {
+      "type": "BGPIXEndpoint",
+      "uuid": "1507ac62-39bb-4217-84d8-3052d08104e7",
+      "name": "ix::lo0.rt1.mar.fr.geant.net::185.1.47.21",
+      "projects": [],
+      "alarm": "c73c6a62-da0d-4c4e-a33e-a65c97fd815b",
+      "last_activity_ts": 1748410461.7274683,
+      "services": [],
+      "init_time": 1747749264.052523,
+      "locations": [
+        {
+          "site": "MARSEILLE",
+          "equipment": "RT1.MAR.FR"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "9a80e1e9-d5b8-4cca-b7bb-0d1a1385aead",
+        "d1b39db3-9fbf-484e-87a5-dd60408fe169",
+        "b82f6a8c-6a91-4350-861a-79796e23e250",
+        "6655ebe2-a470-4bea-8a8b-5b895741e498"
+      ],
+      "up": false,
+      "group_peers": [
+        "185.1.192.15",
+        "185.1.192.87",
+        "185.1.47.21",
+        "185.1.47.42",
+        "185.6.36.60",
+        "185.6.36.61",
+        "193.203.0.126",
+        "193.203.0.33",
+        "195.66.225.238",
+        "195.66.225.239",
+        "2001:07f8:0000:0000:0000:002a:0000:0001",
+        "2001:07f8:0001:0000:0000:a500:0042:0001",
+        "2001:07f8:0001:0000:0000:a500:3856:0001",
+        "2001:07f8:0004:0000:0000:0000:002a:0001",
+        "2001:07f8:0004:0000:0000:0000:0f10:0001",
+        "2001:07f8:0018:0000:0000:0000:0000:0060",
+        "2001:07f8:0018:0000:0000:0000:0000:0061",
+        "2001:07f8:0030:0000:0001:0001:0000:0042",
+        "2001:07f8:0030:0000:0001:0001:0000:3856",
+        "2001:07f8:0036:0000:0000:002a:0000:0001",
+        "2001:07f8:0036:0000:0000:0f10:0000:0001",
+        "2001:07f8:00a0:0000:0000:002a:0000:0001",
+        "2001:07f8:00a0:0000:0000:0f10:0000:0001",
+        "80.249.208.250",
+        "80.249.209.250",
+        "80.81.194.42"
+      ],
+      "router_peers": [
+        "185.1.47.113",
+        "185.1.47.115",
+        "185.1.47.121",
+        "185.1.47.125",
+        "185.1.47.2",
+        "185.1.47.21",
+        "185.1.47.252",
+        "185.1.47.253",
+        "185.1.47.26",
+        "185.1.47.36",
+        "185.1.47.38",
+        "185.1.47.4",
+        "185.1.47.42",
+        "185.1.47.48",
+        "185.1.47.54",
+        "185.1.47.55",
+        "185.1.47.61",
+        "185.1.47.69",
+        "185.1.47.79",
+        "185.1.47.85",
+        "185.1.47.9",
+        "185.1.47.92",
+        "2001:07f8:0036:0000:0000:002a:0000:0001",
+        "2001:07f8:0036:0000:0000:0ce7:0000:0001",
+        "2001:07f8:0036:0000:0000:0f10:0000:0001",
+        "2001:07f8:0036:0000:0000:1b1b:0000:0001",
+        "2001:07f8:0036:0000:0000:2306:0000:0001",
+        "2001:07f8:0036:0000:0000:2846:0000:0001",
+        "2001:07f8:0036:0000:0000:2846:0000:0002",
+        "2001:07f8:0036:0000:0000:32e6:0000:0001",
+        "2001:07f8:0036:0000:0000:3417:0000:0001",
+        "2001:07f8:0036:0000:0000:3a3b:0000:0001",
+        "2001:07f8:0036:0000:0000:407d:0000:0001",
+        "2001:07f8:0036:0000:0000:407d:0000:0002",
+        "2001:07f8:0036:0000:0000:50ed:00fc:0001",
+        "2001:07f8:0036:0000:0000:50ed:00fd:0001",
+        "2001:07f8:0036:0000:0000:787c:0000:0001",
+        "2001:07f8:0036:0000:0000:799d:0000:0001",
+        "2001:07f8:0036:0000:0000:80a6:0000:0001",
+        "2001:07f8:0036:0000:0000:80a6:0000:0002",
+        "2001:07f8:0036:0000:0000:d361:0000:0001",
+        "2001:07f8:0036:0000:0003:0b64:0000:0001",
+        "2001:07f8:0036:0000:0006:0eba:0000:0001",
+        "2001:07f8:0036:0000:0006:0eba:0000:0002"
+      ],
+      "peer": "185.1.47.21",
+      "peer_description": "Packet_Clearing_House AS3856",
+      "peer_router": "rt1.mar.fr.geant.net",
+      "snmp": {
+        "hostname": "rt1.mar.fr.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.9.1.185.1.47.34.1.185.1.47.21"
+      },
+      "device_name": "rt1.mar.fr.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "32b18555-d93e-4b3f-9f4c-7670f894136e",
+      "name": "lo0.rt0.lju.si.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342668.7784,
+      "services": [],
+      "init_time": 1748342552.126153,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "c0c7fcc4-35f8-45bc-adef-dd0e43c25227",
+        "a500d5c6-64a8-4e90-b31d-0711b9d91121"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt0.lju.si.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt0.lju.si.geant.net",
+        "community": "uat-dashboard",
+        "oid": ".1.3.6.1.4.1.6527.3.1.2.14.4.8.1.11.1.1.4.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt0.lju.si.geant.net"
+    },
+    {
+      "type": "CoriantEndpoint",
+      "uuid": "4d4cf4e1-078d-46b3-a90c-d772737d9d2d",
+      "name": "LIS01-GRV-1::1-1.4-Optical-100GbE-TTP",
+      "projects": [
+        "GEANT"
+      ],
+      "alarm": "da16bd59-329b-4837-a5c0-452e72856fe6",
+      "last_activity_ts": 1748333109.9996436,
+      "services": [
+        {
+          "name": "LIS-POR-IPTRUNK",
+          "circuit_type": "service",
+          "service_type": "IP TRUNK",
+          "status": "operational",
+          "project": "GEANT",
+          "sid": "GS-00050"
+        }
+      ],
+      "init_time": 1748332756.761204,
+      "locations": [
+        {
+          "site": "LISBON",
+          "equipment": "LIS01-GRV-1"
+        }
+      ],
+      "contacts": [
+        "GEANTINCIDENTS@LISTS.GEANT.ORG",
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "dd993704-c99c-45bc-9e59-fed549ea9c0d",
+        "666fd93b-ce36-41b4-98b7-c7d7255157ed"
+      ],
+      "up": true,
+      "ne_name": "LIS01-GRV-1",
+      "entity": "1-1.4-Optical-100GbE-TTP",
+      "pops": {
+        "LISBON": {
+          "abbreviation": "LIS",
+          "city": "LISBON"
+        }
+      },
+      "endpoints": {
+        "LIS01-GRV-1": {
+          "equipment name": "LIS01-GRV-1",
+          "card id": "1/1",
+          "port number": "4"
+        }
+      },
+      "trap_counter": "814606",
+      "severity": "critical",
+      "probable_cause": "remoteFault",
+      "probable_cause_string": "Remote Fault (RF)",
+      "ne_location": "Rack B-3F RU34",
+      "ne_id_name": "LIS01-GRV-1",
+      "traffic_direction": "2",
+      "additional_information": "Remote Fault",
+      "service_affecting": "true",
+      "device_name": "tnms-fra-prod.geant.org"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "f20cbea0-4589-4c97-abac-4bbc8e0c02b3",
+      "name": "lo0.rt1.fra.de.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342655.4739132,
+      "services": [],
+      "init_time": 1748342545.175273,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "a0e01728-2e76-401e-9442-433c07999a06",
+        "316a73d1-2326-4f54-83a9-421fdb848f91",
+        "279f512c-cdea-4a1b-8b0e-1e2036fae863",
+        "9c3a24e9-77e6-461d-b8d9-a0d55146afbb"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt1.fra.de.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt1.fra.de.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.62.40.96.22.1.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt1.fra.de.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "575b70b3-113d-4f0c-9105-b6dccbc06076",
+      "name": "lo0.rt0.ham.de.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342674.17303,
+      "services": [],
+      "init_time": 1748342566.443163,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "d96b509c-27a5-4123-acb1-f4fa13a17cfb",
+        "945c9737-0f4f-4523-acab-73bb8376721d"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt0.ham.de.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt0.ham.de.geant.net",
+        "community": "uat-dashboard",
+        "oid": ".1.3.6.1.4.1.6527.3.1.2.14.4.8.1.11.1.1.4.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt0.ham.de.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "8204e052-29ff-4a27-8746-5f8dddf4ad37",
+      "name": "amt1.fra.de.re0.geant.net::ud-0/0/0.1540010",
+      "projects": [],
+      "alarm": "3914f3d7-e9af-4bf8-989f-482108d4131b",
+      "last_activity_ts": 1748385987.6314757,
+      "services": [],
+      "init_time": 1748385987.005351,
+      "locations": [],
+      "contacts": [],
+      "event_history": [
+        "a0c50bdf-5531-46f4-b780-4b9c3d16be28"
+      ],
+      "up": false,
+      "router": "amt1.fra.de.re0.geant.net",
+      "interface": "ud-0/0/0.1540010",
+      "circuits": [],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": null,
+      "device_name": "amt1.fra.de.re0.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "73355b85-b6e2-4a5a-a508-aaeffb510b46",
+      "name": "rt0.por.pt.geant.net::lag-4",
+      "projects": [
+        "GEANT"
+      ],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342478.7779453,
+      "services": [
+        {
+          "name": "POR-POR-IPTRUNK",
+          "circuit_type": "service",
+          "service_type": "IP TRUNK",
+          "status": "non-monitored",
+          "project": "GEANT",
+          "sid": "GS-02587"
+        }
+      ],
+      "init_time": 1748342478.34362,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT0.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "b20c31b3-cc98-4e5e-b0f1-cb243b1df717"
+      ],
+      "up": false,
+      "router": "rt0.por.pt.geant.net",
+      "interface": "lag-4",
+      "circuits": [
+        "POR-POR-IPTRUNK"
+      ],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [
+        "1/x1/1/c9/1"
+      ],
+      "snmp": {
+        "hostname": "rt0.por.pt.geant.net",
+        "community": "uat-dashboard",
+        "index": 1342177284,
+        "oids": [
+          "1.3.6.1.2.1.2.2.1.8.1342177284"
+        ]
+      },
+      "device_name": "rt0.por.pt.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "b4cc69b8-4ce4-448c-9333-5aefd52c2abd",
+      "name": "lo0.mx2.lis.pt.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342649.7907293,
+      "services": [],
+      "init_time": 1748342549.263252,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "be6a33a1-336a-4eb6-a986-68bb33f358cf",
+        "da25448e-4e02-4c3b-89f6-1bf24d626e13",
+        "63630dd4-6eb9-4ddd-b3a1-00eef1685f43",
+        "633fff67-55ea-4e97-9cfb-d5022376bff6"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "mx2.lis.pt.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "mx2.lis.pt.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.62.40.96.17.1.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "mx2.lis.pt.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "9683d584-a91f-4227-864a-b2ee5946ddd0",
+      "name": "rt1.por.pt.geant.net::62.40.127.145",
+      "projects": [],
+      "alarm": "bf1b8396-0990-4be8-a20f-cc5886c5d0fa",
+      "last_activity_ts": 1748333830.9727116,
+      "services": [
+        {
+          "name": "FCCN-AP2",
+          "circuit_type": "service",
+          "service_type": "GEANT IP",
+          "status": "operational",
+          "project": "FCCN",
+          "sid": "GS-00460"
+        }
+      ],
+      "init_time": 1748333829.955464,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "734218e6-2198-4e2b-a7c6-b8b58e3a2c1c"
+      ],
+      "up": false,
+      "peer": "62.40.127.145",
+      "router": "rt1.por.pt.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.127.144",
+          "interface address": "62.40.127.144/31",
+          "interface name": "ae10.1931",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt1.por.pt.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.62.40.127.144.1.62.40.127.145"
+      },
+      "asn": {
+        "asn": 1930,
+        "peers": [
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "62.40.124.98",
+            "group": "eGEANT"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "2001:0798:0017:10aa:0000:0000:0000:000e",
+            "group": "eGEANT6"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "83.97.88.210",
+            "group": "IAS-NRENS"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "2001:0798:0001:0000:0000:0000:0000:00f2",
+            "group": "IAS-NRENS-ipv6"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "62.40.126.17",
+            "group": "lhcone-nrens"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "2001:0798:0111:0001:0000:0000:0000:0052",
+            "group": "lhcone6-nrens"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "62.40.127.145",
+            "group": "eGEANT"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "2001:0798:0099:0001:0000:0000:0000:00ea",
+            "group": "eGEANT6"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "83.97.88.45",
+            "group": "IAS-NRENS"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "2001:0798:0001:0000:0000:0000:0000:020a",
+            "group": "IAS-NRENS-ipv6"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "2001:0798:0111:0001:0000:0000:0000:0056",
+            "group": "lhcone6-nrens"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "62.40.126.61",
+            "group": "lhcone-nrens"
+          }
+        ]
+      },
+      "device_name": "rt1.por.pt.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "b3bf2883-8604-4ba7-9d22-02ba4af29ea8",
+      "name": "lo0.rt1.mil2.it.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342651.8049898,
+      "services": [],
+      "init_time": 1748342551.046159,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "b2724750-364d-4e84-b125-33d79f3c2549",
+        "2a4834d0-742e-4167-a3dc-500bc2083c38",
+        "798f6225-a204-4312-a5f7-3dd323f16ed2",
+        "cd0bcc51-b8bd-4f76-8b49-25a410253b1e"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt1.mil2.it.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt1.mil2.it.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.62.40.96.6.1.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt1.mil2.it.geant.net"
+    },
+    {
+      "type": "CoriantEndpoint",
+      "uuid": "bc31ffde-0ef7-4843-abd5-89d954edfa49",
+      "name": "POR01-GRV-1::1-1.4-Optical-100GbE-TTP",
+      "projects": [
+        "GEANT"
+      ],
+      "alarm": "da16bd59-329b-4837-a5c0-452e72856fe6",
+      "last_activity_ts": 1748333099.2412977,
+      "services": [
+        {
+          "name": "LIS-POR-IPTRUNK",
+          "circuit_type": "service",
+          "service_type": "IP TRUNK",
+          "status": "operational",
+          "project": "GEANT",
+          "sid": "GS-00050"
+        }
+      ],
+      "init_time": 1748332756.741205,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "POR01-GRV-1"
+        }
+      ],
+      "contacts": [
+        "GEANTINCIDENTS@LISTS.GEANT.ORG",
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "71c90ef5-2cfa-4c29-8021-0b7f5bb43c68",
+        "c3d97ac3-affb-4ff7-bbfc-7f480bf2ee51"
+      ],
+      "up": true,
+      "ne_name": "POR01-GRV-1",
+      "entity": "1-1.4-Optical-100GbE-TTP",
+      "pops": {
+        "PORTO": {
+          "abbreviation": "POR",
+          "city": "PORTO"
+        }
+      },
+      "endpoints": {
+        "POR01-GRV-1": {
+          "equipment name": "POR01-GRV-1",
+          "card id": "1/1",
+          "port number": "4"
+        }
+      },
+      "trap_counter": "814605",
+      "severity": "critical",
+      "probable_cause": "los",
+      "probable_cause_string": "Loss of Signal (LOS)",
+      "ne_location": "RACK SE02.BF7 - RU 13",
+      "ne_id_name": "POR01-GRV-1",
+      "traffic_direction": "2",
+      "additional_information": "Loss Of Signal",
+      "service_affecting": "true",
+      "device_name": "tnms-fra-prod.geant.org"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "848d76b5-d3e4-407c-94e7-7a97d0bd4c8e",
+      "name": "rt1.por.pt.geant.net::2001:0798:0001:0000:0000:0000:0000:020a",
+      "projects": [],
+      "alarm": "522ebf96-3638-45e8-9013-c4534d7e8eba",
+      "last_activity_ts": 1748335172.5499797,
+      "services": [
+        {
+          "name": "FCCN-AP2-IAS",
+          "circuit_type": "service",
+          "service_type": "GWS - INDIRECT",
+          "status": "operational",
+          "project": "FCCN",
+          "sid": "GS-00528"
+        }
+      ],
+      "init_time": 1748335172.087026,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "ef9b019a-a0d8-410f-b3c3-c4a2bb93efa5"
+      ],
+      "up": false,
+      "peer": "2001:0798:0001:0000:0000:0000:0000:020a",
+      "router": "rt1.por.pt.geant.net",
+      "interfaces": [
+        {
+          "name": "2001:0798:0001:0000:0000:0000:0000:0209",
+          "interface address": "2001:798:1::209/126",
+          "interface name": "ae10.333",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt1.por.pt.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.9.2.32.1.7.152.0.1.0.0.0.0.0.0.0.0.2.9.2.32.1.7.152.0.1.0.0.0.0.0.0.0.0.2.10"
+      },
+      "asn": {
+        "asn": 1930,
+        "peers": [
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "62.40.124.98",
+            "group": "eGEANT"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "2001:0798:0017:10aa:0000:0000:0000:000e",
+            "group": "eGEANT6"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "83.97.88.210",
+            "group": "IAS-NRENS"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "2001:0798:0001:0000:0000:0000:0000:00f2",
+            "group": "IAS-NRENS-ipv6"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "62.40.126.17",
+            "group": "lhcone-nrens"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "2001:0798:0111:0001:0000:0000:0000:0052",
+            "group": "lhcone6-nrens"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "62.40.127.145",
+            "group": "eGEANT"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "2001:0798:0099:0001:0000:0000:0000:00ea",
+            "group": "eGEANT6"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "83.97.88.45",
+            "group": "IAS-NRENS"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "2001:0798:0001:0000:0000:0000:0000:020a",
+            "group": "IAS-NRENS-ipv6"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "2001:0798:0111:0001:0000:0000:0000:0056",
+            "group": "lhcone6-nrens"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "62.40.126.61",
+            "group": "lhcone-nrens"
+          }
+        ]
+      },
+      "device_name": "rt1.por.pt.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "5bbc15ef-da4f-4cad-ab53-cbd772d5690f",
+      "name": "lo0.mx2.lis.pt.geant.net::2001:0798:00aa:0001:0000:0000:0000:0022",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342649.8584135,
+      "services": [],
+      "init_time": 1748342559.587198,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "4cdf201f-f67b-4e2d-b7b0-0c125fb65448",
+        "a849bbaa-ed84-4558-9830-7fdf8ed98df1",
+        "14481e72-e794-442e-8e2a-ad8406cbc76d",
+        "77636f54-9c61-4e51-9454-238eb85cb7de"
+      ],
+      "up": false,
+      "peer": "2001:0798:00aa:0001:0000:0000:0000:0022",
+      "router": "mx2.lis.pt.geant.net",
+      "interfaces": [
+        {
+          "name": "2001:0798:00aa:0001:0000:0000:0000:0022",
+          "interface address": "2001:798:aa:1::22/128",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "mx2.lis.pt.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.2.32.1.7.152.0.47.32.255.0.0.0.0.0.0.0.2.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.34"
+      },
+      "asn": {},
+      "device_name": "mx2.lis.pt.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "885e49a5-7e33-438c-ad52-63a69017f50d",
+      "name": "lo0.rt0.mar.fr.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342668.692121,
+      "services": [],
+      "init_time": 1748342556.795213,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "6c1bcf13-824a-4525-9405-da6e2979c366",
+        "71d93cd5-e941-4bc1-bfc1-16be3a727bf2"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt0.mar.fr.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt0.mar.fr.geant.net",
+        "community": "uat-dashboard",
+        "oid": ".1.3.6.1.4.1.6527.3.1.2.14.4.8.1.11.1.1.4.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt0.mar.fr.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "d768bc49-32a2-43a0-a590-b22c29ee2ee5",
+      "name": "lo0.rt1.pra.cz.geant.net::2001:0798:00aa:0001:0000:0000:0000:0022",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342650.731532,
+      "services": [],
+      "init_time": 1748342549.65525,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "826dd57c-f1b1-4088-a95b-d3ac58121b1e",
+        "dad3a29a-758d-466f-8b16-796e558ced38",
+        "739f96db-1754-4046-b06d-bb9da50e07cb",
+        "4d065139-4d7d-4ad0-9fc7-910d5d3f1b98"
+      ],
+      "up": false,
+      "peer": "2001:0798:00aa:0001:0000:0000:0000:0022",
+      "router": "rt1.pra.cz.geant.net",
+      "interfaces": [
+        {
+          "name": "2001:0798:00aa:0001:0000:0000:0000:0022",
+          "interface address": "2001:798:aa:1::22/128",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt1.pra.cz.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.21.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.34"
+      },
+      "asn": {},
+      "device_name": "rt1.pra.cz.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "3e501aa7-48b3-47ef-a8ad-b0e78196e18c",
+      "name": "lo0.mx1.gen.ch.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342651.0138142,
+      "services": [],
+      "init_time": 1748342565.431168,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "cf766629-806f-479e-833f-ae83f24e0523",
+        "6a0499c1-8faf-4427-9945-531f74381d96",
+        "123e4e39-7c5b-4d7c-9285-32ddbd564506",
+        "a5758e87-9c5b-48a7-bf79-5c72fb284ce7"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "mx1.gen.ch.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "mx1.gen.ch.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.62.40.97.14.1.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "mx1.gen.ch.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "3e204840-ecb2-4a49-b208-60e482dfcb5d",
+      "name": "lo0.rt1.mar.fr.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342651.447853,
+      "services": [],
+      "init_time": 1748342556.547214,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "038a3705-7a5f-4649-a021-4fb0b8d12b59",
+        "ecde0d36-8705-4e6e-97a1-1331bb4b9777",
+        "21dc41d8-8fb8-42b7-a7f4-a1ee2a25f2a3",
+        "09775b05-1bb7-4563-8f31-aa5863beb9a6"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt1.mar.fr.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt1.mar.fr.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.62.40.96.5.1.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt1.mar.fr.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "647b8991-a95d-4e5c-b205-0c56cc9546a8",
+      "name": "lo0.rt1.fra.de.geant.net::2001:0798:00aa:0001:0000:0000:0000:0022",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342655.5234184,
+      "services": [],
+      "init_time": 1748342549.61925,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "05b24dca-9c7d-4c7c-97d0-12d6d99d7ec7",
+        "33e9f9c4-172f-44a0-bc92-72aac15a02ec",
+        "b5008655-1a08-4473-b324-dbf2c3bd6431",
+        "7f6019b4-ef9b-430c-bf25-c5a51b43208f"
+      ],
+      "up": false,
+      "peer": "2001:0798:00aa:0001:0000:0000:0000:0022",
+      "router": "rt1.fra.de.geant.net",
+      "interfaces": [
+        {
+          "name": "2001:0798:00aa:0001:0000:0000:0000:0022",
+          "interface address": "2001:798:aa:1::22/128",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt1.fra.de.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.40.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.34"
+      },
+      "asn": {},
+      "device_name": "rt1.fra.de.geant.net"
+    },
+    {
+      "type": "BGPIXEndpoint",
+      "uuid": "f381fd4d-5303-44a3-8747-83ce2e783e38",
+      "name": "ix::lo0.rt1.fra.de.geant.net::2001:07f8:0000:0000:0000:1f8b:0000:0001",
+      "projects": [],
+      "alarm": "5e725aa6-735b-4a5e-b145-dc0a1d469ec3",
+      "last_activity_ts": 1748410438.1752746,
+      "services": [],
+      "init_time": 1747749236.769395,
+      "locations": [
+        {
+          "site": "FRANKFURT",
+          "equipment": "RT1.FRA.DE"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "9d99d6f0-c91d-403a-986b-9d6ce4e91c64",
+        "05d58d2f-e1da-4992-af14-ef4ed092b8d3",
+        "6f43b6d5-ae29-4a55-a83f-8f752eaf4b99",
+        "b93fc067-a3b6-404f-b6ae-48a757f568f9"
+      ],
+      "up": false,
+      "group_peers": [
+        "185.6.36.28",
+        "193.188.137.21",
+        "193.188.137.51",
+        "193.203.0.164",
+        "193.203.0.165",
+        "195.66.224.140",
+        "2001:07f8:0000:0000:0000:1f8b:0000:0001",
+        "2001:07f8:0000:0000:0000:1f8b:0000:0002",
+        "2001:07f8:0001:0000:0000:a500:8075:0001",
+        "2001:07f8:0001:0000:0000:a500:8075:0002",
+        "2001:07f8:0004:0000:0000:0000:1f8b:0001",
+        "2001:07f8:000b:0100:01d1:a5d0:8075:0112",
+        "2001:07f8:000b:0100:01d1:a5d0:8075:0212",
+        "2001:07f8:0014:0000:0000:0000:006b:0001",
+        "2001:07f8:0018:0000:0000:0000:0000:0028",
+        "2001:07f8:0030:0000:0002:0001:0000:8075",
+        "2001:07f8:0030:0000:0002:0002:0000:8075",
+        "2001:07f8:0035:0000:0000:0000:8075:0001",
+        "2001:07f8:0035:0000:0000:0000:8075:0002",
+        "217.29.66.112",
+        "217.29.66.212",
+        "80.249.209.20",
+        "80.249.209.21",
+        "80.81.194.52",
+        "80.81.195.11"
+      ],
+      "router_peers": [
+        "2001:07f8:0000:0000:0000:002a:0000:0001",
+        "2001:07f8:0000:0000:0000:02ca:0000:0001",
+        "2001:07f8:0000:0000:0000:02ca:0000:0002",
+        "2001:07f8:0000:0000:0000:02ca:0000:0003",
+        "2001:07f8:0000:0000:0000:02ca:0000:0004",
+        "2001:07f8:0000:0000:0000:0847:0000:0001",
+        "2001:07f8:0000:0000:0000:0a4b:0000:0001",
+        "2001:07f8:0000:0000:0000:0b5a:0000:0001",
+        "2001:07f8:0000:0000:0000:0b5a:0000:0002",
+        "2001:07f8:0000:0000:0000:0c89:0000:0003",
+        "2001:07f8:0000:0000:0000:0c89:0000:0004",
+        "2001:07f8:0000:0000:0000:0c90:0000:0001",
+        "2001:07f8:0000:0000:0000:0c97:0000:0001",
+        "2001:07f8:0000:0000:0000:0ce7:0000:0002",
+        "2001:07f8:0000:0000:0000:1026:0000:0002",
+        "2001:07f8:0000:0000:0000:1518:0000:0001",
+        "2001:07f8:0000:0000:0000:1918:0000:0001",
+        "2001:07f8:0000:0000:0000:193d:0000:0001",
+        "2001:07f8:0000:0000:0000:193d:0000:0002",
+        "2001:07f8:0000:0000:0000:1a05:0000:0001",
+        "2001:07f8:0000:0000:0000:1b1b:0000:0001",
+        "2001:07f8:0000:0000:0000:1cae:0000:0001",
+        "2001:07f8:0000:0000:0000:1f8b:0000:0001",
+        "2001:07f8:0000:0000:0000:1f8b:0000:0002",
+        "2001:07f8:0000:0000:0000:201a:0000:0001",
+        "2001:07f8:0000:0000:0000:201a:0000:0002",
+        "2001:07f8:0000:0000:0000:201c:0000:0001",
+        "2001:07f8:0000:0000:0000:201c:0000:0002",
+        "2001:07f8:0000:0000:0000:206e:0000:0001",
+        "2001:07f8:0000:0000:0000:206e:0000:0002",
+        "2001:07f8:0000:0000:0000:20d0:0000:0001",
+        "2001:07f8:0000:0000:0000:20ea:0000:0001",
+        "2001:07f8:0000:0000:0000:20ea:0000:0002",
+        "2001:07f8:0000:0000:0000:2107:0000:0001",
+        "2001:07f8:0000:0000:0000:2167:0000:0001",
+        "2001:07f8:0000:0000:0000:2167:0000:0002",
+        "2001:07f8:0000:0000:0000:2170:0000:0001",
+        "2001:07f8:0000:0000:0000:2170:0000:0002",
+        "2001:07f8:0000:0000:0000:21d1:0000:0001",
+        "2001:07f8:0000:0000:0000:21e2:0000:0001",
+        "2001:07f8:0000:0000:0000:2204:0000:0001",
+        "2001:07f8:0000:0000:0000:2204:0000:0002",
+        "2001:07f8:0000:0000:0000:2306:0000:0001",
+        "2001:07f8:0000:0000:0000:232a:0000:0001",
+        "2001:07f8:0000:0000:0000:2331:0000:0001",
+        "2001:07f8:0000:0000:0000:2846:0000:0001",
+        "2001:07f8:0000:0000:0000:2846:0000:0002",
+        "2001:07f8:0000:0000:0000:3022:0000:0001",
+        "2001:07f8:0000:0000:0000:3122:0000:0001",
+        "2001:07f8:0000:0000:0000:316e:0000:0001",
+        "2001:07f8:0000:0000:0000:32e6:0000:0001",
+        "2001:07f8:0000:0000:0000:32e6:0000:0002",
+        "2001:07f8:0000:0000:0000:33e5:0000:0001",
+        "2001:07f8:0000:0000:0000:3417:0000:0001",
+        "2001:07f8:0000:0000:0000:3417:0000:0002",
+        "2001:07f8:0000:0000:0000:3466:0000:0001",
+        "2001:07f8:0000:0000:0000:3466:0000:0002",
+        "2001:07f8:0000:0000:0000:36ed:0000:0001",
+        "2001:07f8:0000:0000:0000:36ed:0000:0002",
+        "2001:07f8:0000:0000:0000:3f89:0000:0001",
+        "2001:07f8:0000:0000:0000:3f89:0000:0002",
+        "2001:07f8:0000:0000:0000:3f94:0000:0001",
+        "2001:07f8:0000:0000:0000:3f94:0000:0002",
+        "2001:07f8:0000:0000:0000:407d:0000:0001",
+        "2001:07f8:0000:0000:0000:407d:0000:0002",
+        "2001:07f8:0000:0000:0000:46ba:0000:0001",
+        "2001:07f8:0000:0000:0000:4c5f:0000:0001",
+        "2001:07f8:0000:0000:0000:4cdf:0000:0001",
+        "2001:07f8:0000:0000:0000:4ff9:0000:0001",
+        "2001:07f8:0000:0000:0000:5125:00f1:0001",
+        "2001:07f8:0000:0000:0000:51c4:0000:0001",
+        "2001:07f8:0000:0000:0000:51cc:0000:0028",
+        "2001:07f8:0000:0000:0000:51cc:0000:0168",
+        "2001:07f8:0000:0000:0000:51cc:0001:0168",
+        "2001:07f8:0000:0000:0000:616c:0000:0001",
+        "2001:07f8:0000:0000:0000:616c:0000:0002",
+        "2001:07f8:0000:0000:0000:6181:0000:0001",
+        "2001:07f8:0000:0000:0000:6319:0000:0001",
+        "2001:07f8:0000:0000:0000:7581:0000:0001",
+        "2001:07f8:0000:0000:0000:7597:0000:0001",
+        "2001:07f8:0000:0000:0000:787c:0000:0001",
+        "2001:07f8:0000:0000:0000:799d:0000:0001",
+        "2001:07f8:0000:0000:0000:7b29:0000:0001",
+        "2001:07f8:0000:0000:0000:7c9a:0000:0001",
+        "2001:07f8:0000:0000:0000:7f4e:0000:0001",
+        "2001:07f8:0000:0000:0000:7f4e:0000:0002",
+        "2001:07f8:0000:0000:0000:80a6:0000:0001",
+        "2001:07f8:0000:0000:0000:80a6:0000:0002",
+        "2001:07f8:0000:0000:0000:80a6:0000:0003",
+        "2001:07f8:0000:0000:0000:80a6:0000:0004",
+        "2001:07f8:0000:0000:0000:813a:0000:0001",
+        "2001:07f8:0000:0000:0000:8463:0000:0001",
+        "2001:07f8:0000:0000:0000:8463:0000:0002",
+        "2001:07f8:0000:0000:0000:88a8:0000:0001",
+        "2001:07f8:0000:0000:0000:8dff:0000:0001",
+        "2001:07f8:0000:0000:0000:8dff:0000:0002",
+        "2001:07f8:0000:0000:0000:8e6b:0000:0001",
+        "2001:07f8:0000:0000:0000:8e6b:0000:0002",
+        "2001:07f8:0000:0000:0000:8f54:0000:0001",
+        "2001:07f8:0000:0000:0000:9a94:0000:0001",
+        "2001:07f8:0000:0000:0000:b599:0000:0001",
+        "2001:07f8:0000:0000:0000:b599:0000:0002",
+        "2001:07f8:0000:0000:0000:c188:0000:0001",
+        "2001:07f8:0000:0000:0000:c695:0000:0001",
+        "2001:07f8:0000:0000:0000:d361:0000:0001",
+        "2001:07f8:0000:0000:0000:d361:0000:0002",
+        "2001:07f8:0000:0000:0000:d6d2:0000:0001",
+        "2001:07f8:0000:0000:0000:dd59:0000:0001",
+        "2001:07f8:0000:0000:0000:e278:0000:0001",
+        "2001:07f8:0000:0000:0000:e2c9:0000:0001",
+        "2001:07f8:0000:0000:0000:e3bb:0000:0001",
+        "2001:07f8:0000:0000:0002:16cb:0000:0001",
+        "2001:07f8:0000:0000:0003:0b64:0000:0002",
+        "2001:07f8:0000:0000:0006:0eba:0000:0001",
+        "2001:07f8:0000:0000:0006:0eba:0000:0002",
+        "80.81.192.10",
+        "80.81.192.104",
+        "80.81.192.110",
+        "80.81.192.115",
+        "80.81.192.117",
+        "80.81.192.123",
+        "80.81.192.125",
+        "80.81.192.13",
+        "80.81.192.152",
+        "80.81.192.160",
+        "80.81.192.162",
+        "80.81.192.164",
+        "80.81.192.165",
+        "80.81.192.168",
+        "80.81.192.172",
+        "80.81.192.176",
+        "80.81.192.187",
+        "80.81.192.191",
+        "80.81.192.195",
+        "80.81.192.204",
+        "80.81.192.209",
+        "80.81.192.223",
+        "80.81.192.224",
+        "80.81.192.228",
+        "80.81.192.236",
+        "80.81.192.239",
+        "80.81.192.243",
+        "80.81.192.245",
+        "80.81.192.255",
+        "80.81.192.28",
+        "80.81.192.38",
+        "80.81.192.5",
+        "80.81.192.61",
+        "80.81.192.67",
+        "80.81.192.73",
+        "80.81.192.86",
+        "80.81.192.87",
+        "80.81.193.115",
+        "80.81.193.117",
+        "80.81.193.123",
+        "80.81.193.129",
+        "80.81.193.13",
+        "80.81.193.141",
+        "80.81.193.156",
+        "80.81.193.164",
+        "80.81.193.183",
+        "80.81.193.191",
+        "80.81.193.202",
+        "80.81.193.209",
+        "80.81.193.223",
+        "80.81.193.228",
+        "80.81.193.246",
+        "80.81.193.252",
+        "80.81.193.34",
+        "80.81.193.61",
+        "80.81.193.63",
+        "80.81.193.67",
+        "80.81.193.69",
+        "80.81.193.81",
+        "80.81.193.84",
+        "80.81.193.86",
+        "80.81.193.87",
+        "80.81.194.107",
+        "80.81.194.12",
+        "80.81.194.121",
+        "80.81.194.138",
+        "80.81.194.151",
+        "80.81.194.152",
+        "80.81.194.156",
+        "80.81.194.161",
+        "80.81.194.165",
+        "80.81.194.167",
+        "80.81.194.171",
+        "80.81.194.180",
+        "80.81.194.181",
+        "80.81.194.182",
+        "80.81.194.202",
+        "80.81.194.21",
+        "80.81.194.218",
+        "80.81.194.237",
+        "80.81.194.244",
+        "80.81.194.26",
+        "80.81.194.40",
+        "80.81.194.42",
+        "80.81.194.44",
+        "80.81.194.52",
+        "80.81.194.57",
+        "80.81.194.99",
+        "80.81.195.11",
+        "80.81.195.120",
+        "80.81.195.141",
+        "80.81.195.144",
+        "80.81.195.147",
+        "80.81.195.151",
+        "80.81.195.152",
+        "80.81.195.168",
+        "80.81.195.176",
+        "80.81.195.184",
+        "80.81.195.207",
+        "80.81.195.213",
+        "80.81.195.219",
+        "80.81.195.22",
+        "80.81.195.231",
+        "80.81.195.26",
+        "80.81.195.33",
+        "80.81.195.40",
+        "80.81.195.54",
+        "80.81.195.55",
+        "80.81.195.60",
+        "80.81.196.168",
+        "80.81.196.197",
+        "80.81.196.21",
+        "80.81.196.235",
+        "80.81.196.252",
+        "80.81.196.28",
+        "80.81.196.4",
+        "80.81.196.79",
+        "80.81.196.80",
+        "80.81.197.4"
+      ],
+      "peer": "2001:07f8:0000:0000:0000:1f8b:0000:0001",
+      "peer_description": "Microsoft AS8075",
+      "peer_router": "rt1.fra.de.geant.net",
+      "snmp": {
+        "hostname": "rt1.fra.de.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.10.2.32.1.7.248.0.0.0.0.0.0.81.229.0.0.0.1.2.32.1.7.248.0.0.0.0.0.0.31.139.0.0.0.1"
+      },
+      "device_name": "rt1.fra.de.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "ec2de0c9-542b-4a16-8dae-7493138783f8",
+      "name": "rt1.ams.nl.geant.net::ae21.2",
+      "projects": [
+        "FCCN"
+      ],
+      "alarm": "522ebf96-3638-45e8-9013-c4534d7e8eba",
+      "last_activity_ts": 1748339318.7346861,
+      "services": [
+        {
+          "name": "FCCN-NOVESBE-EXPRESSROUTE-VLAN1944",
+          "circuit_type": "service",
+          "service_type": "EXPRESS ROUTE",
+          "status": "operational",
+          "project": "FCCN",
+          "sid": "GS-01144"
+        }
+      ],
+      "init_time": 1748335172.239025,
+      "locations": [
+        {
+          "site": "AMSTERDAM",
+          "equipment": "RT1.AMS.NL"
+        }
+      ],
+      "contacts": [
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "f57f7ff5-2bd3-46c7-bd60-7646aaa2ac7e",
+        "22062cdb-53b9-4968-a47f-c99a1a26148d",
+        "f21f16cc-89ba-4444-8b86-0cc877f71549",
+        "603ce15b-8f35-420b-a378-ba4e81b69936"
+      ],
+      "up": true,
+      "router": "rt1.ams.nl.geant.net",
+      "interface": "ae21.2",
+      "circuits": [
+        "FCCN-NOVESBE-EXPRESSROUTE-VLAN1944"
+      ],
+      "direct_circuits": [
+        "FCCN-NOVESBE-EXPRESSROUTE-VLAN1944"
+      ],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": {
+        "hostname": "rt1.ams.nl.geant.net",
+        "community": "0pBiFbD",
+        "index": 1386,
+        "oids": [
+          "1.3.6.1.2.1.2.2.1.7.1386",
+          "1.3.6.1.2.1.2.2.1.8.1386"
+        ]
+      },
+      "device_name": "rt1.ams.nl.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "6924904e-4110-4b0c-9f7a-68d19646b7d3",
+      "name": "lo0.rt1.ams.nl.geant.net::2001:0798:00aa:0001:0000:0000:0000:0022",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342659.5915444,
+      "services": [],
+      "init_time": 1748342549.57525,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "067708d5-9cbc-42fd-a5a4-09de3bc22612",
+        "5998780e-1709-4c1b-8765-044bd2174674",
+        "7f4b5889-75ac-4f3a-a55f-02cf8320b645",
+        "55c7d62f-b9c3-4727-ba79-2d199c2f79a8"
+      ],
+      "up": false,
+      "peer": "2001:0798:00aa:0001:0000:0000:0000:0022",
+      "router": "rt1.ams.nl.geant.net",
+      "interfaces": [
+        {
+          "name": "2001:0798:00aa:0001:0000:0000:0000:0022",
+          "interface address": "2001:798:aa:1::22/128",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt1.ams.nl.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.48.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.34"
+      },
+      "asn": {},
+      "device_name": "rt1.ams.nl.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "812bc832-8954-4fd4-a5e4-a7371284da2d",
+      "name": "rt1.por.pt.geant.net::2001:0798:0099:0001:0000:0000:0000:00ea",
+      "projects": [],
+      "alarm": "bf1b8396-0990-4be8-a20f-cc5886c5d0fa",
+      "last_activity_ts": 1748333830.1401408,
+      "services": [
+        {
+          "name": "FCCN-AP2",
+          "circuit_type": "service",
+          "service_type": "GEANT IP",
+          "status": "operational",
+          "project": "FCCN",
+          "sid": "GS-00460"
+        }
+      ],
+      "init_time": 1748333830.019464,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "551354ad-8c87-423c-b05a-62115bff3e15"
+      ],
+      "up": false,
+      "peer": "2001:0798:0099:0001:0000:0000:0000:00ea",
+      "router": "rt1.por.pt.geant.net",
+      "interfaces": [
+        {
+          "name": "2001:0798:0099:0001:0000:0000:0000:00e9",
+          "interface address": "2001:798:99:1::e9/126",
+          "interface name": "ae10.1931",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt1.por.pt.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.2.32.1.7.152.0.153.0.1.0.0.0.0.0.0.0.233.2.32.1.7.152.0.153.0.1.0.0.0.0.0.0.0.234"
+      },
+      "asn": {
+        "asn": 1930,
+        "peers": [
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "62.40.124.98",
+            "group": "eGEANT"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "2001:0798:0017:10aa:0000:0000:0000:000e",
+            "group": "eGEANT6"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "83.97.88.210",
+            "group": "IAS-NRENS"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "2001:0798:0001:0000:0000:0000:0000:00f2",
+            "group": "IAS-NRENS-ipv6"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "62.40.126.17",
+            "group": "lhcone-nrens"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "2001:0798:0111:0001:0000:0000:0000:0052",
+            "group": "lhcone6-nrens"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "62.40.127.145",
+            "group": "eGEANT"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "2001:0798:0099:0001:0000:0000:0000:00ea",
+            "group": "eGEANT6"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "83.97.88.45",
+            "group": "IAS-NRENS"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "2001:0798:0001:0000:0000:0000:0000:020a",
+            "group": "IAS-NRENS-ipv6"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "2001:0798:0111:0001:0000:0000:0000:0056",
+            "group": "lhcone6-nrens"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "62.40.126.61",
+            "group": "lhcone-nrens"
+          }
+        ]
+      },
+      "device_name": "rt1.por.pt.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "cc24279a-eeb1-4bcd-b58b-e8e911fdfd0e",
+      "name": "amt1.fra.de.re0.geant.net::ud-0/0/0.1540107",
+      "projects": [],
+      "alarm": "13b227a5-45b1-4e35-b2e3-08a757d89a29",
+      "last_activity_ts": 1748381834.3857193,
+      "services": [],
+      "init_time": 1748381834.108997,
+      "locations": [],
+      "contacts": [],
+      "event_history": [
+        "b63c6415-f31a-46fe-b671-8aa51c0f37ec"
+      ],
+      "up": false,
+      "router": "amt1.fra.de.re0.geant.net",
+      "interface": "ud-0/0/0.1540107",
+      "circuits": [],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": null,
+      "device_name": "amt1.fra.de.re0.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "598c7976-015f-41b5-82a7-00fc0c2fa2f5",
+      "name": "lo0.rt0.por.pt.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342669.1692274,
+      "services": [],
+      "init_time": 1748342547.263262,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "94cb4e21-8438-473e-946d-b605e7fcea8d",
+        "5f58343d-b45f-4def-8816-55055f99386c"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt0.por.pt.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt0.por.pt.geant.net",
+        "community": "uat-dashboard",
+        "oid": ".1.3.6.1.4.1.6527.3.1.2.14.4.8.1.11.1.1.4.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt0.por.pt.geant.net"
+    },
+    {
+      "type": "CoriantEndpoint",
+      "uuid": "4547c56d-bba3-4ca8-bd2d-5ca8d65e7bad",
+      "name": "BIL01-GRV1::1-1.4-Optical-100GbE-TTP",
+      "projects": [
+        "GEANT"
+      ],
+      "alarm": "2435cdbe-e269-4008-aec9-04061ccfc154",
+      "last_activity_ts": 1748340620.7045133,
+      "services": [
+        {
+          "name": "BIL-POR-IPTRUNK",
+          "circuit_type": "service",
+          "service_type": "IP TRUNK",
+          "status": "operational",
+          "project": "GEANT",
+          "sid": "GS-00017"
+        }
+      ],
+      "init_time": 1748339711.450011,
+      "locations": [
+        {
+          "site": "BILBAO",
+          "equipment": "BIL01-GRV1"
+        }
+      ],
+      "contacts": [
+        "GEANTINCIDENTS@LISTS.GEANT.ORG",
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "1bd00e5f-61cb-4bf9-90c8-a276713074f4",
+        "b42ff1b8-6167-44be-a8bf-3604c0c57495",
+        "a3e5df8b-24f6-4e6e-8936-0fd5f72244c3",
+        "79f7ae66-ccdc-4056-a30b-4b024dd0eb87"
+      ],
+      "up": true,
+      "ne_name": "BIL01-GRV1",
+      "entity": "1-1.4-Optical-100GbE-TTP",
+      "pops": {
+        "BILBAO": {
+          "abbreviation": "BIL",
+          "city": "BILBAO"
+        }
+      },
+      "endpoints": {
+        "BIL01-GRV1": {
+          "equipment name": "BIL01-GRV1",
+          "card id": "1/1",
+          "port number": "4"
+        }
+      },
+      "trap_counter": "814968",
+      "severity": "critical",
+      "probable_cause": "remoteFault",
+      "probable_cause_string": "Remote Fault (RF)",
+      "ne_location": "RACK RE14 RU15",
+      "ne_id_name": "BIL01-GRV1",
+      "traffic_direction": "2",
+      "additional_information": "Remote Fault",
+      "service_affecting": "true",
+      "device_name": "tnms-fra-prod.geant.org"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "dd4b9c94-7228-4c35-adcf-6204c4661f10",
+      "name": "amt1.fra.de.re0.geant.net::ud-0/0/0.1540103",
+      "projects": [],
+      "alarm": "1be18dad-c5f5-4cb0-94f7-55e20d76fe4f",
+      "last_activity_ts": 1748367051.942606,
+      "services": [],
+      "init_time": 1748367051.810082,
+      "locations": [],
+      "contacts": [],
+      "event_history": [
+        "9c45984c-ef39-4e5c-849b-f331d1ae1850"
+      ],
+      "up": false,
+      "router": "amt1.fra.de.re0.geant.net",
+      "interface": "ud-0/0/0.1540103",
+      "circuits": [],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": null,
+      "device_name": "amt1.fra.de.re0.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "b19c691e-d6c5-4837-a860-bf28b6e98514",
+      "name": "amt1.fra.de.re0.geant.net::ud-0/0/0.1540102",
+      "projects": [],
+      "alarm": "d57724d9-3415-422d-9df0-6f9d6a5aac17",
+      "last_activity_ts": 1748365587.5100486,
+      "services": [],
+      "init_time": 1748365587.209631,
+      "locations": [],
+      "contacts": [],
+      "event_history": [
+        "6896c489-eadf-45cc-aa15-f307d8851aea"
+      ],
+      "up": false,
+      "router": "amt1.fra.de.re0.geant.net",
+      "interface": "ud-0/0/0.1540102",
+      "circuits": [],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": null,
+      "device_name": "amt1.fra.de.re0.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "4b5c7cf2-ef27-41a9-a121-313d4f2681c2",
+      "name": "amt1.fra.de.re0.geant.net::ud-0/0/0.1540014",
+      "projects": [],
+      "alarm": "0d8399f3-23e8-43c4-8b02-ce5fe770437e",
+      "last_activity_ts": 1748385981.7453432,
+      "services": [],
+      "init_time": 1748385981.437378,
+      "locations": [],
+      "contacts": [],
+      "event_history": [
+        "d3c5c4d2-470c-4de7-a947-be90e9edebb4"
+      ],
+      "up": false,
+      "router": "amt1.fra.de.re0.geant.net",
+      "interface": "ud-0/0/0.1540014",
+      "circuits": [],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": null,
+      "device_name": "amt1.fra.de.re0.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "d8336df7-4871-4a5b-a388-c11ed2006d10",
+      "name": "rt1.por.pt.geant.net::2001:0798:0111:0001:0000:0000:0000:0056",
+      "projects": [],
+      "alarm": "522ebf96-3638-45e8-9013-c4534d7e8eba",
+      "last_activity_ts": 1748335172.3789365,
+      "services": [
+        {
+          "name": "FCCN-AP2-POR-LHCONE",
+          "circuit_type": "service",
+          "service_type": "L3-VPN",
+          "status": "operational",
+          "project": "FCCN",
+          "sid": "GS-02402"
+        }
+      ],
+      "init_time": 1748335172.019027,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "31f9bc4d-f164-42eb-abc3-9c272c2742d4"
+      ],
+      "up": false,
+      "peer": "2001:0798:0111:0001:0000:0000:0000:0056",
+      "router": "rt1.por.pt.geant.net",
+      "interfaces": [
+        {
+          "name": "2001:0798:0111:0001:0000:0000:0000:0055",
+          "interface address": "2001:798:111:1::55/126",
+          "interface name": "ae10.1990",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt1.por.pt.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.14.2.32.1.7.152.1.17.0.1.0.0.0.0.0.0.0.85.2.32.1.7.152.1.17.0.1.0.0.0.0.0.0.0.86"
+      },
+      "asn": {
+        "asn": 1930,
+        "peers": [
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "62.40.124.98",
+            "group": "eGEANT"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "2001:0798:0017:10aa:0000:0000:0000:000e",
+            "group": "eGEANT6"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "83.97.88.210",
+            "group": "IAS-NRENS"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "2001:0798:0001:0000:0000:0000:0000:00f2",
+            "group": "IAS-NRENS-ipv6"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "62.40.126.17",
+            "group": "lhcone-nrens"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "2001:0798:0111:0001:0000:0000:0000:0052",
+            "group": "lhcone6-nrens"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "62.40.127.145",
+            "group": "eGEANT"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "2001:0798:0099:0001:0000:0000:0000:00ea",
+            "group": "eGEANT6"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "83.97.88.45",
+            "group": "IAS-NRENS"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "2001:0798:0001:0000:0000:0000:0000:020a",
+            "group": "IAS-NRENS-ipv6"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "2001:0798:0111:0001:0000:0000:0000:0056",
+            "group": "lhcone6-nrens"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "62.40.126.61",
+            "group": "lhcone-nrens"
+          }
+        ]
+      },
+      "device_name": "rt1.por.pt.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "e767cab8-c41e-4d8a-b951-70dc1f2844ca",
+      "name": "mx2.lis.pt.geant.net::et-4/0/5",
+      "projects": [
+        "GEANT"
+      ],
+      "alarm": "da16bd59-329b-4837-a5c0-452e72856fe6",
+      "last_activity_ts": 1748333092.236187,
+      "services": [
+        {
+          "name": "LIS-POR-IPTRUNK",
+          "circuit_type": "service",
+          "service_type": "IP TRUNK",
+          "status": "operational",
+          "project": "GEANT",
+          "sid": "GS-00050"
+        }
+      ],
+      "init_time": 1748332753.486232,
+      "locations": [
+        {
+          "site": "LISBON",
+          "equipment": "MX2.LIS.PT"
+        }
+      ],
+      "contacts": [
+        "GEANTINCIDENTS@LISTS.GEANT.ORG",
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "be1f6d4d-1912-479a-a810-1c8df1d57e8f",
+        "0a3acce1-06ab-4522-903e-2d3367cdc488"
+      ],
+      "up": true,
+      "router": "mx2.lis.pt.geant.net",
+      "interface": "et-4/0/5",
+      "circuits": [
+        "LIS-POR-IPTRUNK"
+      ],
+      "direct_circuits": [],
+      "bundle": [
+        "ae3"
+      ],
+      "bundle_members": [],
+      "snmp": {
+        "hostname": "mx2.lis.pt.geant.net",
+        "community": "0pBiFbD",
+        "index": 683,
+        "oids": [
+          "1.3.6.1.2.1.2.2.1.7.683",
+          "1.3.6.1.2.1.2.2.1.8.683"
+        ]
+      },
+      "device_name": "mx2.lis.pt.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "f5bd368a-eff4-4a32-aa2a-cc8b9a221c7d",
+      "name": "amt1.fra.de.re0.geant.net::ud-0/0/0.1540105",
+      "projects": [],
+      "alarm": "f363140a-1e57-4056-9765-ced1a7e97295",
+      "last_activity_ts": 1748381830.9746172,
+      "services": [],
+      "init_time": 1748381830.814633,
+      "locations": [],
+      "contacts": [],
+      "event_history": [
+        "2418541b-d712-48de-840b-3e4e5b06666e"
+      ],
+      "up": false,
+      "router": "amt1.fra.de.re0.geant.net",
+      "interface": "ud-0/0/0.1540105",
+      "circuits": [],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": null,
+      "device_name": "amt1.fra.de.re0.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "586543bc-a1c5-49d1-99c2-84be0b69787a",
+      "name": "rt0.por.pt.geant.net::lag-101.991",
+      "projects": [],
+      "alarm": "72d0382c-ea85-4bb3-92d3-037f457861b2",
+      "last_activity_ts": 1748343085.5539773,
+      "services": [],
+      "init_time": 1748343084.984471,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT0.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "eb3f1e00-44ce-4bd6-b0ec-48a71811cc36"
+      ],
+      "up": false,
+      "router": "rt0.por.pt.geant.net",
+      "interface": "lag-101.991",
+      "circuits": [],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": null,
+      "device_name": "rt0.por.pt.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "d44da07d-4909-4cde-ad7c-0594cfea1b9d",
+      "name": "rt1.por.pt.geant.net::et-0/1/2",
+      "projects": [
+        "GEANT"
+      ],
+      "alarm": "da16bd59-329b-4837-a5c0-452e72856fe6",
+      "last_activity_ts": 1748332753.839818,
+      "services": [
+        {
+          "name": "LIS-POR-IPTRUNK",
+          "circuit_type": "service",
+          "service_type": "IP TRUNK",
+          "status": "operational",
+          "project": "GEANT",
+          "sid": "GS-00050"
+        }
+      ],
+      "init_time": 1748332753.410233,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [
+        "GEANTINCIDENTS@LISTS.GEANT.ORG",
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "6f47ec0f-e101-4e77-b9c7-806ce68f1173"
+      ],
+      "up": false,
+      "router": "rt1.por.pt.geant.net",
+      "interface": "et-0/1/2",
+      "circuits": [
+        "LIS-POR-IPTRUNK"
+      ],
+      "direct_circuits": [],
+      "bundle": [
+        "ae3"
+      ],
+      "bundle_members": [],
+      "snmp": {
+        "hostname": "rt1.por.pt.geant.net",
+        "community": "0pBiFbD",
+        "index": 554,
+        "oids": [
+          "1.3.6.1.2.1.2.2.1.7.554",
+          "1.3.6.1.2.1.2.2.1.8.554"
+        ]
+      },
+      "device_name": "rt1.por.pt.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "e98f03b1-931d-4461-a089-a8ce45f68ca6",
+      "name": "rt1.por.pt.geant.net::ae10.1931",
+      "projects": [
+        "FCCN"
+      ],
+      "alarm": "bf1b8396-0990-4be8-a20f-cc5886c5d0fa",
+      "last_activity_ts": 1748333890.285854,
+      "services": [
+        {
+          "name": "FCCN-AP2",
+          "circuit_type": "service",
+          "service_type": "GEANT IP",
+          "status": "operational",
+          "project": "FCCN",
+          "sid": "GS-00460"
+        }
+      ],
+      "init_time": 1748333889.847152,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "0f23124e-fb72-4539-ba14-b519428ef7d6"
+      ],
+      "up": false,
+      "router": "rt1.por.pt.geant.net",
+      "interface": "ae10.1931",
+      "circuits": [
+        "FCCN-AP2"
+      ],
+      "direct_circuits": [
+        "FCCN-AP2"
+      ],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": {
+        "hostname": "rt1.por.pt.geant.net",
+        "community": "0pBiFbD",
+        "index": 608,
+        "oids": [
+          "1.3.6.1.2.1.2.2.1.7.608",
+          "1.3.6.1.2.1.2.2.1.8.608"
+        ]
+      },
+      "device_name": "rt1.por.pt.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "f3a1c8d5-54a1-4a9f-872d-546d9f6b7828",
+      "name": "lo0.rt0.pra.cz.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342671.5498383,
+      "services": [],
+      "init_time": 1748342547.479261,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "56f503b4-5e6e-4a4d-aeb3-97d5b6569e85",
+        "841b536b-77d7-4049-973f-b403b38a0f10",
+        "4b413486-7b29-4916-ba7f-5786598e09f3"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt0.pra.cz.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt0.pra.cz.geant.net",
+        "community": "uat-dashboard",
+        "oid": ".1.3.6.1.4.1.6527.3.1.2.14.4.8.1.11.1.1.4.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt0.pra.cz.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "1bb3ed80-e574-4560-a4a0-3a338de7d13c",
+      "name": "lo0.rt0.tar.ee.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342669.3048332,
+      "services": [],
+      "init_time": 1748342549.978165,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "19fe5eae-2349-43ce-9394-cde78db2d075",
+        "9a02a6bb-dabc-43ec-98f5-d227c4c689b4",
+        "a36545dd-6ce5-4014-8e41-7809798e720e"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt0.tar.ee.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt0.tar.ee.geant.net",
+        "community": "uat-dashboard",
+        "oid": ".1.3.6.1.4.1.6527.3.1.2.14.4.8.1.11.1.1.4.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt0.tar.ee.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "630df1d1-2a43-4b0a-b067-ebc5795137cb",
+      "name": "lo0.rt1.ams.nl.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342659.5407512,
+      "services": [],
+      "init_time": 1748342565.362349,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "734a33e3-e649-430f-a092-a7a4f87abf86",
+        "b8c62d3e-ce83-4d77-9ff3-5c6d4e673b13",
+        "c7ac509b-e29d-4d25-871f-16c845d04140",
+        "9dd07868-0651-47ad-bcfb-4cd97f392d2a"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt1.ams.nl.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt1.ams.nl.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.62.40.96.71.1.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt1.ams.nl.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "4677b4b3-3243-4c73-b8fa-5dc408b7675d",
+      "name": "mx2.lis.pt.geant.net::et-4/0/2",
+      "projects": [
+        "GEANT"
+      ],
+      "alarm": "da16bd59-329b-4837-a5c0-452e72856fe6",
+      "last_activity_ts": 1748333074.2646127,
+      "services": [
+        {
+          "name": "LIS-POR-IPTRUNK",
+          "circuit_type": "service",
+          "service_type": "IP TRUNK",
+          "status": "operational",
+          "project": "GEANT",
+          "sid": "GS-00050"
+        }
+      ],
+      "init_time": 1748332753.434232,
+      "locations": [
+        {
+          "site": "LISBON",
+          "equipment": "MX2.LIS.PT"
+        }
+      ],
+      "contacts": [
+        "GEANTINCIDENTS@LISTS.GEANT.ORG",
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "40a91954-918f-4c1f-b63b-9d964103c314",
+        "8e22b6e9-1606-4080-bac3-930eb535fa8a"
+      ],
+      "up": true,
+      "router": "mx2.lis.pt.geant.net",
+      "interface": "et-4/0/2",
+      "circuits": [
+        "LIS-POR-IPTRUNK"
+      ],
+      "direct_circuits": [],
+      "bundle": [
+        "ae3"
+      ],
+      "bundle_members": [],
+      "snmp": {
+        "hostname": "mx2.lis.pt.geant.net",
+        "community": "0pBiFbD",
+        "index": 654,
+        "oids": [
+          "1.3.6.1.2.1.2.2.1.7.654",
+          "1.3.6.1.2.1.2.2.1.8.654"
+        ]
+      },
+      "device_name": "mx2.lis.pt.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "b306fd17-9c64-4ce8-b349-ca5d3f41aa2f",
+      "name": "lo0.mx1.bud.hu.geant.net::2001:0798:00aa:0001:0000:0000:0000:0022",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342649.4554656,
+      "services": [],
+      "init_time": 1748342546.583266,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "b00217a7-5b78-4091-afc5-a02f660d5895",
+        "7237c2ad-aac7-4f32-8c60-1ac26e2601fa",
+        "b440f95b-edd2-45f1-863f-01a24aa9a0fd",
+        "5654e7e9-8f6c-4366-bd1d-e38c4cdf8253"
+      ],
+      "up": false,
+      "peer": "2001:0798:00aa:0001:0000:0000:0000:0022",
+      "router": "mx1.bud.hu.geant.net",
+      "interfaces": [
+        {
+          "name": "2001:0798:00aa:0001:0000:0000:0000:0022",
+          "interface address": "2001:798:aa:1::22/128",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "mx1.bud.hu.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.2.32.1.7.152.0.27.32.255.0.0.0.0.0.0.0.1.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.34"
+      },
+      "asn": {},
+      "device_name": "mx1.bud.hu.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "0f030b4a-855b-48f2-9c9b-4e1c28ba3e32",
+      "name": "lo0.mx1.mad.es.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342650.5246112,
+      "services": [],
+      "init_time": 1748342546.423267,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "5b0430ed-234e-4363-add2-bf48724dc7d4",
+        "9acc2167-e422-409d-8d11-89a6efa5d97d",
+        "fb19b2f0-67ee-446c-9c3c-4116d41c3d10",
+        "219e54b2-fb91-462c-ae45-499852d076df"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "mx1.mad.es.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "mx1.mad.es.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.62.40.97.16.1.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "mx1.mad.es.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "8a32401d-77d5-421a-93bb-3c9f17346fc3",
+      "name": "lo0.rt1.buc.ro.geant.net::2001:0798:00aa:0001:0000:0000:0000:0022",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342650.5705028,
+      "services": [],
+      "init_time": 1748342565.635167,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "56a7314b-6501-4232-ac59-f02c96448861",
+        "c140a327-2c8a-4a99-924b-62bf1d1c034a",
+        "d9507afd-d42d-4a2e-ba37-d01b7da83355",
+        "5ef5bcbf-1e0e-4151-a779-c93ed393e04b"
+      ],
+      "up": false,
+      "peer": "2001:0798:00aa:0001:0000:0000:0000:0022",
+      "router": "rt1.buc.ro.geant.net",
+      "interfaces": [
+        {
+          "name": "2001:0798:00aa:0001:0000:0000:0000:0022",
+          "interface address": "2001:798:aa:1::22/128",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt1.buc.ro.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.23.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.34"
+      },
+      "asn": {},
+      "device_name": "rt1.buc.ro.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "399af927-1cda-4625-a88b-2c6f7389fa37",
+      "name": "amt1.fra.de.re0.geant.net::ud-0/0/0.1539952",
+      "projects": [],
+      "alarm": "02b0ea33-d0bf-4f0c-a72b-fc093d94b2c7",
+      "last_activity_ts": 1748385979.6305373,
+      "services": [],
+      "init_time": 1748385979.305389,
+      "locations": [],
+      "contacts": [],
+      "event_history": [
+        "ffd440d1-13ae-4ecf-aa0c-3ccc5a428885"
+      ],
+      "up": false,
+      "router": "amt1.fra.de.re0.geant.net",
+      "interface": "ud-0/0/0.1539952",
+      "circuits": [],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": null,
+      "device_name": "amt1.fra.de.re0.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "5b971d9e-83bd-4662-be59-56bf984506b8",
+      "name": "amt1.fra.de.re0.geant.net::ud-0/0/0.1539996",
+      "projects": [],
+      "alarm": "8a29eb25-c3b1-48f7-8c0a-4c247a4842f2",
+      "last_activity_ts": 1748385981.6243,
+      "services": [],
+      "init_time": 1748385981.409379,
+      "locations": [],
+      "contacts": [],
+      "event_history": [
+        "0c6d2686-920e-468c-b9d5-abba0b5bfeed"
+      ],
+      "up": false,
+      "router": "amt1.fra.de.re0.geant.net",
+      "interface": "ud-0/0/0.1539996",
+      "circuits": [],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": null,
+      "device_name": "amt1.fra.de.re0.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "5ce5ed2a-0879-465f-8d75-aa091b10f588",
+      "name": "lo0.mx1.vie.at.geant.net::2001:0798:00aa:0001:0000:0000:0000:0022",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342650.8076475,
+      "services": [],
+      "init_time": 1748342556.607214,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "f0ee4018-4c5e-40d9-b029-0d4aec677fa5",
+        "966dcd91-7ec4-49eb-9616-91d3cae480da",
+        "c499b396-3048-4df4-b1f8-fa7c63e0059f",
+        "2df29596-ca94-4fa9-97d3-e10d92465635"
+      ],
+      "up": false,
+      "peer": "2001:0798:00aa:0001:0000:0000:0000:0022",
+      "router": "mx1.vie.at.geant.net",
+      "interfaces": [
+        {
+          "name": "2001:0798:00aa:0001:0000:0000:0000:0022",
+          "interface address": "2001:798:aa:1::22/128",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "mx1.vie.at.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.2.32.1.7.152.0.16.32.255.0.0.0.0.0.0.0.1.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.34"
+      },
+      "asn": {},
+      "device_name": "mx1.vie.at.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "87ed15a2-bc2f-4d99-a131-cb7b6bdb33c6",
+      "name": "lo0.mx1.mad.es.geant.net::2001:0798:00aa:0001:0000:0000:0000:0022",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342650.6086836,
+      "services": [],
+      "init_time": 1748342551.026159,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "6d30b5bb-6f78-4927-a4fd-86bd23c65c1e",
+        "2cf38151-3202-4ece-8ea1-1694a1705898",
+        "cb686f3c-ca69-4f4d-9976-609a3c850dbb",
+        "95b490b2-4af5-45a5-a9b7-9c0b003c805c"
+      ],
+      "up": false,
+      "peer": "2001:0798:00aa:0001:0000:0000:0000:0022",
+      "router": "mx1.mad.es.geant.net",
+      "interfaces": [
+        {
+          "name": "2001:0798:00aa:0001:0000:0000:0000:0022",
+          "interface address": "2001:798:aa:1::22/128",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "mx1.mad.es.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.2.32.1.7.152.0.23.32.255.0.0.0.0.0.0.0.1.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.34"
+      },
+      "asn": {},
+      "device_name": "mx1.mad.es.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "aa351fab-4921-47e6-aaf1-1fcc07647ee3",
+      "name": "amt1.fra.de.re0.geant.net::ud-0/0/0.1540090",
+      "projects": [],
+      "alarm": "546b122a-464d-4a3a-acad-5b4e676b4f3f",
+      "last_activity_ts": 1748378224.8225834,
+      "services": [],
+      "init_time": 1748378224.301831,
+      "locations": [],
+      "contacts": [],
+      "event_history": [
+        "9db26a39-9f9e-447e-9647-dcb3322b3e60"
+      ],
+      "up": false,
+      "router": "amt1.fra.de.re0.geant.net",
+      "interface": "ud-0/0/0.1540090",
+      "circuits": [],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": null,
+      "device_name": "amt1.fra.de.re0.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "ba09b91b-aee9-4fca-a35e-a644942001b3",
+      "name": "rt2.ams.nl.geant.net::2001:0798:00aa:0001:0000:0000:0000:0022",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342645.4026592,
+      "services": [],
+      "init_time": 1748342559.555198,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "04d15bb4-b60b-42cc-9845-f9f647ffa66c",
+        "d32d97e4-e355-4734-935f-a3823ba8703b",
+        "84cb97aa-4b02-4adf-9ec4-aab672bd6970",
+        "9d3aadaf-5f64-4e90-88dc-62405e43344f"
+      ],
+      "up": false,
+      "peer": "2001:0798:00aa:0001:0000:0000:0000:0022",
+      "router": "rt2.ams.nl.geant.net",
+      "interfaces": [
+        {
+          "name": "2001:0798:00aa:0001:0000:0000:0000:0022",
+          "interface address": "2001:798:aa:1::22/128",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt2.ams.nl.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.12.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.34"
+      },
+      "asn": {},
+      "device_name": "rt2.ams.nl.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "d232aa38-f090-4ed9-bcc2-0e0f26a14259",
+      "name": "lo0.rt2.kie.ua.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342647.4134262,
+      "services": [],
+      "init_time": 1748342565.655167,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "e9118fa4-91ee-498b-a2d2-dcc15976cd1f",
+        "87202105-1913-4395-991e-3f00eb653285",
+        "7256cc23-8d41-404f-9049-63d4adf14a2b",
+        "3ba6f393-b4d1-4be5-9acf-b92b23b27f98"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt2.kie.ua.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt2.kie.ua.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.62.40.96.68.1.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt2.kie.ua.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "d6c133c6-9a3e-4c2e-be6c-ca2fe5cd1ba7",
+      "name": "lo0.rt0.mad.es.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342668.8339627,
+      "services": [],
+      "init_time": 1748342551.339241,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "b38e9b17-7deb-44de-92d8-ea9c7795c5ca",
+        "a0ec7127-f242-49e5-aceb-ca19a392e49d"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt0.mad.es.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt0.mad.es.geant.net",
+        "community": "uat-dashboard",
+        "oid": ".1.3.6.1.4.1.6527.3.1.2.14.4.8.1.11.1.1.4.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt0.mad.es.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "ae90af07-7182-4af0-89b2-5bcd9439cc44",
+      "name": "rt1.ams.nl.geant.net::ae21.10",
+      "projects": [
+        "FCCN"
+      ],
+      "alarm": "522ebf96-3638-45e8-9013-c4534d7e8eba",
+      "last_activity_ts": 1748339605.115655,
+      "services": [
+        {
+          "name": "FCCN-IPP-EXPRESSROUTE-VLAN1946",
+          "circuit_type": "service",
+          "service_type": "EXPRESS ROUTE",
+          "status": "operational",
+          "project": "FCCN",
+          "sid": "GS-01143"
+        }
+      ],
+      "init_time": 1748335172.219025,
+      "locations": [
+        {
+          "site": "AMSTERDAM",
+          "equipment": "RT1.AMS.NL"
+        }
+      ],
+      "contacts": [
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "57006f93-f6bd-4386-8c43-fcab469b81a9",
+        "2564d9b0-76a0-47cd-8d54-a52b0e39f9fd",
+        "a4beaa4d-6c3e-42fc-b7d1-288d26296e7c",
+        "ab2ddf29-8abd-4fa7-a5ee-006004b6c03e"
+      ],
+      "up": true,
+      "router": "rt1.ams.nl.geant.net",
+      "interface": "ae21.10",
+      "circuits": [
+        "FCCN-IPP-EXPRESSROUTE-VLAN1946"
+      ],
+      "direct_circuits": [
+        "FCCN-IPP-EXPRESSROUTE-VLAN1946"
+      ],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": {
+        "hostname": "rt1.ams.nl.geant.net",
+        "community": "0pBiFbD",
+        "index": 1394,
+        "oids": [
+          "1.3.6.1.2.1.2.2.1.7.1394",
+          "1.3.6.1.2.1.2.2.1.8.1394"
+        ]
+      },
+      "device_name": "rt1.ams.nl.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "c661a8c0-f41b-465a-86c3-ad222dcc3bb8",
+      "name": "rt1.por.pt.geant.net::83.97.88.45",
+      "projects": [],
+      "alarm": "522ebf96-3638-45e8-9013-c4534d7e8eba",
+      "last_activity_ts": 1748335172.800195,
+      "services": [
+        {
+          "name": "FCCN-AP2-IAS",
+          "circuit_type": "service",
+          "service_type": "GWS - INDIRECT",
+          "status": "operational",
+          "project": "FCCN",
+          "sid": "GS-00528"
+        }
+      ],
+      "init_time": 1748335172.039027,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "76915468-0c05-4f64-bef4-675f66266756"
+      ],
+      "up": false,
+      "peer": "83.97.88.45",
+      "router": "rt1.por.pt.geant.net",
+      "interfaces": [
+        {
+          "name": "83.97.88.44",
+          "interface address": "83.97.88.44/31",
+          "interface name": "ae10.333",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt1.por.pt.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.9.1.83.97.88.44.1.83.97.88.45"
+      },
+      "asn": {
+        "asn": 1930,
+        "peers": [
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "62.40.124.98",
+            "group": "eGEANT"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "2001:0798:0017:10aa:0000:0000:0000:000e",
+            "group": "eGEANT6"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "83.97.88.210",
+            "group": "IAS-NRENS"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "2001:0798:0001:0000:0000:0000:0000:00f2",
+            "group": "IAS-NRENS-ipv6"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "62.40.126.17",
+            "group": "lhcone-nrens"
+          },
+          {
+            "router": "mx2.lis.pt.geant.net",
+            "address": "2001:0798:0111:0001:0000:0000:0000:0052",
+            "group": "lhcone6-nrens"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "62.40.127.145",
+            "group": "eGEANT"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "2001:0798:0099:0001:0000:0000:0000:00ea",
+            "group": "eGEANT6"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "83.97.88.45",
+            "group": "IAS-NRENS"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "2001:0798:0001:0000:0000:0000:0000:020a",
+            "group": "IAS-NRENS-ipv6"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "2001:0798:0111:0001:0000:0000:0000:0056",
+            "group": "lhcone6-nrens"
+          },
+          {
+            "router": "rt1.por.pt.geant.net",
+            "address": "62.40.126.61",
+            "group": "lhcone-nrens"
+          }
+        ]
+      },
+      "device_name": "rt1.por.pt.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "81808ed8-7fca-48c4-af7b-a26eab3bf71d",
+      "name": "rt1.por.pt.geant.net::xe-3/0/1",
+      "projects": [
+        "GEANT"
+      ],
+      "alarm": "f8fc23d2-554f-4be1-a74c-630a05fa4e33",
+      "last_activity_ts": 1748341601.727994,
+      "services": [
+        {
+          "name": "DCN-MANAGEMENT-POR-PT",
+          "circuit_type": "service",
+          "service_type": "SERVER LINK",
+          "status": "non-monitored",
+          "project": "GEANT",
+          "sid": "GS-00125"
+        },
+        {
+          "name": "EX3400-MANAGEMENT-POR-PT",
+          "circuit_type": "service",
+          "service_type": "SERVER LINK",
+          "status": "non-monitored",
+          "project": "GEANT",
+          "sid": "GS-00158"
+        }
+      ],
+      "init_time": 1748341601.451081,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "601edd3d-de3b-46c1-b5d1-fd5fe87e1c3b"
+      ],
+      "up": false,
+      "router": "rt1.por.pt.geant.net",
+      "interface": "xe-3/0/1",
+      "circuits": [
+        "DCN-MANAGEMENT-POR-PT",
+        "EX3400-MANAGEMENT-POR-PT"
+      ],
+      "direct_circuits": [],
+      "bundle": [
+        "ae1"
+      ],
+      "bundle_members": [],
+      "snmp": {
+        "hostname": "rt1.por.pt.geant.net",
+        "community": "0pBiFbD",
+        "index": 540,
+        "oids": [
+          "1.3.6.1.2.1.2.2.1.7.540",
+          "1.3.6.1.2.1.2.2.1.8.540"
+        ]
+      },
+      "device_name": "rt1.por.pt.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "f930218f-e653-4002-85b5-c7a86d6aa4da",
+      "name": "lo0.rt2.kie.ua.geant.net::2001:0798:00aa:0001:0000:0000:0000:0022",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342647.3808029,
+      "services": [],
+      "init_time": 1748342559.751197,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "0399ce1f-115c-4846-8dee-ff1a451786e4",
+        "66ca0947-e07d-4682-a671-c732e40ed0b9",
+        "87d44f17-74c1-41f8-ad95-c2f0c11a5af6",
+        "31e8975d-1685-47d5-96b7-80e316bd7285"
+      ],
+      "up": false,
+      "peer": "2001:0798:00aa:0001:0000:0000:0000:0022",
+      "router": "rt2.kie.ua.geant.net",
+      "interfaces": [
+        {
+          "name": "2001:0798:00aa:0001:0000:0000:0000:0022",
+          "interface address": "2001:798:aa:1::22/128",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt2.kie.ua.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.36.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.34"
+      },
+      "asn": {},
+      "device_name": "rt2.kie.ua.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "8e55e260-c9b5-42c4-bd80-29372a3dcf89",
+      "name": "rt0.por.pt.geant.net::1/x1/1/c9/1",
+      "projects": [
+        "GEANT"
+      ],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342478.6991806,
+      "services": [
+        {
+          "name": "POR-POR-IPTRUNK",
+          "circuit_type": "service",
+          "service_type": "IP TRUNK",
+          "status": "non-monitored",
+          "project": "GEANT",
+          "sid": "GS-02587"
+        }
+      ],
+      "init_time": 1748342478.29962,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT0.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "8604b55d-1828-413a-af2c-c330b0d58b3c"
+      ],
+      "up": false,
+      "router": "rt0.por.pt.geant.net",
+      "interface": "1/x1/1/c9/1",
+      "circuits": [
+        "POR-POR-IPTRUNK"
+      ],
+      "direct_circuits": [],
+      "bundle": [
+        "lag-4"
+      ],
+      "bundle_members": [],
+      "snmp": {
+        "hostname": "rt0.por.pt.geant.net",
+        "community": "uat-dashboard",
+        "index": 1610916417,
+        "oids": [
+          "1.3.6.1.2.1.2.2.1.8.1610916417"
+        ]
+      },
+      "device_name": "rt0.por.pt.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "34ac3221-5c7e-468a-8ac3-623cfc164561",
+      "name": "amt1.lon2.uk.re0.geant.net::ud-0/0/0.1821239",
+      "projects": [],
+      "alarm": "ea4cc14f-3c75-4634-8629-e763591609d2",
+      "last_activity_ts": 1748367258.2039165,
+      "services": [],
+      "init_time": 1748367258.077027,
+      "locations": [],
+      "contacts": [],
+      "event_history": [
+        "9014900c-54a8-40d2-aad0-4cc3871ae14b"
+      ],
+      "up": false,
+      "router": "amt1.lon2.uk.re0.geant.net",
+      "interface": "ud-0/0/0.1821239",
+      "circuits": [],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": null,
+      "device_name": "amt1.lon2.uk.re0.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "48336006-7a7d-4814-8da7-ce8f1fb7decf",
+      "name": "lo0.mx1.poz.pl.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342649.375153,
+      "services": [],
+      "init_time": 1748342549.319252,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "10ad191c-802d-4714-b2e9-751a49bc2705",
+        "0fcc5dab-4603-497b-8686-03a1895b95b9",
+        "d63ac462-9b89-4075-adb3-e58ff682de2d",
+        "a3cdbe18-98d0-44a9-88e9-e736a3eb8524"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "mx1.poz.pl.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "mx1.poz.pl.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.62.40.97.10.1.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "mx1.poz.pl.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "0cc6d466-ea25-4b56-bb2e-198004d81ee1",
+      "name": "rt1.bil.es.geant.net::ae2",
+      "projects": [
+        "GEANT"
+      ],
+      "alarm": "2435cdbe-e269-4008-aec9-04061ccfc154",
+      "last_activity_ts": 1748341189.4632158,
+      "services": [
+        {
+          "name": "BIL-POR-IPTRUNK",
+          "circuit_type": "service",
+          "service_type": "IP TRUNK",
+          "status": "operational",
+          "project": "GEANT",
+          "sid": "GS-00017"
+        }
+      ],
+      "init_time": 1748339708.626026,
+      "locations": [
+        {
+          "site": "BILBAO",
+          "equipment": "RT1.BIL.ES"
+        }
+      ],
+      "contacts": [
+        "GEANTINCIDENTS@LISTS.GEANT.ORG",
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "0028b7e7-2eb5-463f-99bd-788bb6fc948f",
+        "a44a74f4-d834-43e8-805b-7cb964411f7a"
+      ],
+      "up": true,
+      "router": "rt1.bil.es.geant.net",
+      "interface": "ae2",
+      "circuits": [
+        "BIL-POR-IPTRUNK"
+      ],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [
+        "et-0/0/5",
+        "et-0/1/2"
+      ],
+      "snmp": {
+        "hostname": "rt1.bil.es.geant.net",
+        "community": "0pBiFbD",
+        "index": 519,
+        "oids": [
+          "1.3.6.1.2.1.2.2.1.7.519",
+          "1.3.6.1.2.1.2.2.1.8.519"
+        ]
+      },
+      "device_name": "rt1.bil.es.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "c74d02af-94bf-4200-be1d-f2bf5246baef",
+      "name": "lo0.rt0.poz.pl.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342671.9856489,
+      "services": [],
+      "init_time": 1748342566.635162,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "cc3d0478-73be-4911-ac5b-b586c2989dc4",
+        "c88ac674-9e97-49f0-8d34-814afc92d726"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt0.poz.pl.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt0.poz.pl.geant.net",
+        "community": "uat-dashboard",
+        "oid": ".1.3.6.1.4.1.6527.3.1.2.14.4.8.1.11.1.1.4.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt0.poz.pl.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "af4f867f-b042-46be-8f5c-046009c0791e",
+      "name": "amt1.fra.de.re0.geant.net::ud-0/0/0.1540094",
+      "projects": [],
+      "alarm": "00f910a6-219e-46cf-bdba-6480591d0e63",
+      "last_activity_ts": 1748378224.1370728,
+      "services": [],
+      "init_time": 1748378224.005961,
+      "locations": [],
+      "contacts": [],
+      "event_history": [
+        "e401e943-49f0-49fb-bffa-a98b72def440"
+      ],
+      "up": false,
+      "router": "amt1.fra.de.re0.geant.net",
+      "interface": "ud-0/0/0.1540094",
+      "circuits": [],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": null,
+      "device_name": "amt1.fra.de.re0.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "30538b51-a23f-4611-88a0-8bd6979da00a",
+      "name": "rt1.ams.nl.geant.net::xe-0/2/7",
+      "projects": [],
+      "alarm": "de6f6e9c-2c5e-4180-a14b-f595c0dd4a5e",
+      "last_activity_ts": 1748360816.3777602,
+      "services": [],
+      "init_time": 1748360816.312285,
+      "locations": [
+        {
+          "site": "AMSTERDAM",
+          "equipment": "RT1.AMS.NL"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "7c7f201a-4dd8-4467-ae5f-dcbe3ca4ad8c"
+      ],
+      "up": false,
+      "router": "rt1.ams.nl.geant.net",
+      "interface": "xe-0/2/7",
+      "circuits": [],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": {
+        "hostname": "rt1.ams.nl.geant.net",
+        "community": "0pBiFbD",
+        "index": 665,
+        "oids": [
+          "1.3.6.1.2.1.2.2.1.7.665",
+          "1.3.6.1.2.1.2.2.1.8.665"
+        ]
+      },
+      "device_name": "rt1.ams.nl.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "98fce4b1-49f4-4d11-ac93-7bf5af38f399",
+      "name": "lo0.rt1.buc.ro.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342650.4435563,
+      "services": [],
+      "init_time": 1748342551.130159,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "0fcd1280-1644-42e3-a368-0225eed11cad",
+        "56881846-0df0-44b2-bf05-ffec733c02cb",
+        "990cd85e-4df9-402b-b343-a0080d13a3d0",
+        "520e2f87-4cc9-4369-b07b-fe6ee73078e5"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt1.buc.ro.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt1.buc.ro.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.62.40.96.7.1.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt1.buc.ro.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "05316060-1905-4cfc-ad33-29e7740a3b46",
+      "name": "lo0.rt0.buc.ro.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342669.5435846,
+      "services": [],
+      "init_time": 1748342552.443235,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "66f8a69d-9ec5-4ac1-82f2-388f9eda224e",
+        "2860f82a-3121-4b45-b586-821c4a44c3d0",
+        "fdce39d9-061c-43ed-8e4d-823770c5ba0d"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt0.buc.ro.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt0.buc.ro.geant.net",
+        "community": "uat-dashboard",
+        "oid": ".1.3.6.1.4.1.6527.3.1.2.14.4.8.1.11.1.1.4.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt0.buc.ro.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "7e635650-eba3-4fbe-9b73-27a29180f4a5",
+      "name": "lo0.mx1.gen.ch.geant.net::2001:0798:00aa:0001:0000:0000:0000:0022",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342651.1174471,
+      "services": [],
+      "init_time": 1748342556.519214,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "7cbc40c0-0381-4ac7-bffc-d4cc5b85a28f",
+        "8f0938a2-521d-4f7b-b5ac-552082e14b25",
+        "2bfe3fe6-bc2f-449c-bd88-a0ff65b6ff71",
+        "d6a787ce-ec54-4f60-8416-07d4ff6a882b"
+      ],
+      "up": false,
+      "peer": "2001:0798:00aa:0001:0000:0000:0000:0022",
+      "router": "mx1.gen.ch.geant.net",
+      "interfaces": [
+        {
+          "name": "2001:0798:00aa:0001:0000:0000:0000:0022",
+          "interface address": "2001:798:aa:1::22/128",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "mx1.gen.ch.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.2.32.1.7.152.0.18.32.255.0.0.0.0.0.0.0.1.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.34"
+      },
+      "asn": {},
+      "device_name": "mx1.gen.ch.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "73e7dc2b-aa1c-43c3-8c13-dc6c9b54a900",
+      "name": "lo0.rt0.dub.ie.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342672.049125,
+      "services": [],
+      "init_time": 1748342542.479287,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "91f7895b-9ac9-4149-b482-c67b034ff0d2",
+        "b5b87e07-c2c2-4e42-8643-902a88c1c058",
+        "3b8d3546-67df-47c0-bc37-336e9f85647c"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt0.dub.ie.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt0.dub.ie.geant.net",
+        "community": "uat-dashboard",
+        "oid": ".1.3.6.1.4.1.6527.3.1.2.14.4.8.1.11.1.1.4.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt0.dub.ie.geant.net"
+    },
+    {
+      "type": "CoriantEndpoint",
+      "uuid": "0752e832-1d68-49c9-8b34-7624d25aa6fa",
+      "name": "POR01-GRV-1::1-1.3-Optical-100GbE-TTP",
+      "projects": [
+        "GEANT"
+      ],
+      "alarm": "da16bd59-329b-4837-a5c0-452e72856fe6",
+      "last_activity_ts": 1748333069.8920403,
+      "services": [
+        {
+          "name": "LIS-POR-IPTRUNK",
+          "circuit_type": "service",
+          "service_type": "IP TRUNK",
+          "status": "operational",
+          "project": "GEANT",
+          "sid": "GS-00050"
+        }
+      ],
+      "init_time": 1748332756.675885,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "POR01-GRV-1"
+        }
+      ],
+      "contacts": [
+        "GEANTINCIDENTS@LISTS.GEANT.ORG",
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "c4630347-e4f3-444f-9a96-1895905cc484",
+        "f4daa3ce-3d3d-4954-8f1b-20c287d4faa4"
+      ],
+      "up": true,
+      "ne_name": "POR01-GRV-1",
+      "entity": "1-1.3-Optical-100GbE-TTP",
+      "pops": {
+        "PORTO": {
+          "abbreviation": "POR",
+          "city": "PORTO"
+        }
+      },
+      "endpoints": {
+        "POR01-GRV-1": {
+          "equipment name": "POR01-GRV-1",
+          "card id": "1/1",
+          "port number": "3"
+        }
+      },
+      "trap_counter": "814603",
+      "severity": "critical",
+      "probable_cause": "los",
+      "probable_cause_string": "Loss of Signal (LOS)",
+      "ne_location": "RACK SE02.BF7 - RU 13",
+      "ne_id_name": "POR01-GRV-1",
+      "traffic_direction": "2",
+      "additional_information": "Loss Of Signal",
+      "service_affecting": "true",
+      "device_name": "tnms-fra-prod.geant.org"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "2f3cc185-8c8b-4f8c-8c45-c37cdf2bedbc",
+      "name": "rt0.por.pt.geant.net::lag-4.0",
+      "projects": [
+        "GEANT"
+      ],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342478.8550813,
+      "services": [
+        {
+          "name": "POR-POR-IPTRUNK",
+          "circuit_type": "service",
+          "service_type": "IP TRUNK",
+          "status": "non-monitored",
+          "project": "GEANT",
+          "sid": "GS-02587"
+        }
+      ],
+      "init_time": 1748342478.37962,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT0.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "0b56259b-9109-43e5-910b-bac9a9f28871"
+      ],
+      "up": false,
+      "router": "rt0.por.pt.geant.net",
+      "interface": "lag-4.0",
+      "circuits": [
+        "POR-POR-IPTRUNK"
+      ],
+      "direct_circuits": [
+        "POR-POR-IPTRUNK"
+      ],
+      "bundle": [],
+      "bundle_members": [],
+      "snmp": {
+        "hostname": "rt0.por.pt.geant.net",
+        "community": "uat-dashboard",
+        "index": 2,
+        "oids": [
+          "1.3.6.1.2.1.2.2.1.8.2"
+        ]
+      },
+      "device_name": "rt0.por.pt.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "1a288efd-3e7b-491a-8f8f-c7f55d33fe79",
+      "name": "lo0.mx1.lon2.uk.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342651.0603778,
+      "services": [],
+      "init_time": 1748342549.158169,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "90b52018-5213-4bf3-99ec-518a517a50c5",
+        "48612a11-5774-4245-8792-c4743a9da380",
+        "8dc0b68b-92f3-454c-afc6-2d5557d1a8e0",
+        "f71bf05e-034e-407f-8b05-5f8cbc845e27"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "mx1.lon2.uk.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.62.40.96.15.1.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "mx1.lon2.uk.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "1e7d42a7-7ec7-4529-a04b-e39621ad03fb",
+      "name": "lo0.mx1.vie.at.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342650.9278274,
+      "services": [],
+      "init_time": 1748342546.527266,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "73544eb7-3da1-4ea4-a69d-56d2b18b0560",
+        "58a4fb22-c22d-40ff-a6fa-36461d2ab9ff",
+        "397b1e0a-2eda-46f5-a5b0-6562fdb09121",
+        "1e0b79c3-0cb4-45ae-85dc-2a3ddddd6304"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "mx1.vie.at.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "mx1.vie.at.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.62.40.97.7.1.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "mx1.vie.at.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "9a3a4a34-f43a-45f9-b85a-531d08d9acd1",
+      "name": "lo0.rt0.ams.nl.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342671.4362507,
+      "services": [],
+      "init_time": 1748342543.894196,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "8fd92a29-b48e-4a94-924e-401b9621099e",
+        "ac34d6af-c75a-4539-94f8-e602740c6514"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt0.ams.nl.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt0.ams.nl.geant.net",
+        "community": "uat-dashboard",
+        "oid": ".1.3.6.1.4.1.6527.3.1.2.14.4.8.1.11.1.1.4.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt0.ams.nl.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "e7947830-7275-4f87-b1e4-31b4c6dacb27",
+      "name": "rt1.por.pt.geant.net::ae10",
+      "projects": [
+        "FCCN"
+      ],
+      "alarm": "522ebf96-3638-45e8-9013-c4534d7e8eba",
+      "last_activity_ts": 1748335172.6136794,
+      "services": [
+        {
+          "name": "FCCN-AP2",
+          "circuit_type": "service",
+          "service_type": "GEANT IP",
+          "status": "operational",
+          "project": "FCCN",
+          "sid": "GS-00460"
+        },
+        {
+          "name": "FCCN-AP2-IAS",
+          "circuit_type": "service",
+          "service_type": "GWS - INDIRECT",
+          "status": "operational",
+          "project": "FCCN",
+          "sid": "GS-00528"
+        },
+        {
+          "name": "FCCN-AP2-POR-LHCONE",
+          "circuit_type": "service",
+          "service_type": "L3-VPN",
+          "status": "operational",
+          "project": "FCCN",
+          "sid": "GS-02402"
+        },
+        {
+          "name": "FCCN-IPP-EXPRESSROUTE-VLAN1946",
+          "circuit_type": "service",
+          "service_type": "EXPRESS ROUTE",
+          "status": "operational",
+          "project": "FCCN",
+          "sid": "GS-01143"
+        },
+        {
+          "name": "FCCN-NOVESBE-EXPRESSROUTE-VLAN1944",
+          "circuit_type": "service",
+          "service_type": "EXPRESS ROUTE",
+          "status": "operational",
+          "project": "FCCN",
+          "sid": "GS-01144"
+        }
+      ],
+      "init_time": 1748335172.107026,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "2ae5bad2-370c-4c08-8c74-f43323d7ee6f"
+      ],
+      "up": false,
+      "router": "rt1.por.pt.geant.net",
+      "interface": "ae10",
+      "circuits": [
+        "FCCN-AP2",
+        "FCCN-AP2-IAS",
+        "FCCN-AP2-POR-LHCONE",
+        "FCCN-IPP-EXPRESSROUTE-VLAN1946",
+        "FCCN-NOVESBE-EXPRESSROUTE-VLAN1944"
+      ],
+      "direct_circuits": [],
+      "bundle": [],
+      "bundle_members": [
+        "et-0/0/2"
+      ],
+      "snmp": {
+        "hostname": "rt1.por.pt.geant.net",
+        "community": "0pBiFbD",
+        "index": 598,
+        "oids": [
+          "1.3.6.1.2.1.2.2.1.7.598",
+          "1.3.6.1.2.1.2.2.1.8.598"
+        ]
+      },
+      "device_name": "rt1.por.pt.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "c41c9daf-1073-4ab7-a1aa-971ceb325686",
+      "name": "lo0.rt1.kie.ua.geant.net::2001:0798:00aa:0001:0000:0000:0000:0022",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342647.453829,
+      "services": [],
+      "init_time": 1748342559.783197,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "141d1279-3632-4c7d-ab3a-61a9acc75a41",
+        "90d567d2-d9a0-40c1-9017-afe94249dbf7",
+        "9505f5a6-dd05-4f94-b928-e740bdbca880",
+        "6e387a2b-c20c-4dc1-a056-cdb5b12651f1"
+      ],
+      "up": false,
+      "peer": "2001:0798:00aa:0001:0000:0000:0000:0022",
+      "router": "rt1.kie.ua.geant.net",
+      "interfaces": [
+        {
+          "name": "2001:0798:00aa:0001:0000:0000:0000:0022",
+          "interface address": "2001:798:aa:1::22/128",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt1.kie.ua.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.35.2.32.1.7.152.0.170.0.1.0.0.0.0.0.0.0.34"
+      },
+      "asn": {},
+      "device_name": "rt1.kie.ua.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "6935211a-d9fb-4b70-94d1-8022f4f6395e",
+      "name": "lo0.rt1.chi.md.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342646.8659458,
+      "services": [],
+      "init_time": 1748342561.262106,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "e7e0f693-c93c-4966-9acd-eae264a90146",
+        "9554c232-4c63-4e74-9ced-a5fd1ad129ae",
+        "52da08e1-ed39-4400-8017-77c66cb81513",
+        "fc6f1102-dfdf-4a99-8493-ee4006139ec9"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt1.chi.md.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt1.chi.md.geant.net",
+        "community": "0pBiFbD",
+        "oid": ".1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.62.40.96.2.1.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt1.chi.md.geant.net"
+    },
+    {
+      "type": "LinkEndpoint",
+      "uuid": "f78b8496-5101-4f1d-9841-9204a1a2e85d",
+      "name": "rt1.por.pt.geant.net::et-1/0/5",
+      "projects": [
+        "GEANT"
+      ],
+      "alarm": "2435cdbe-e269-4008-aec9-04061ccfc154",
+      "last_activity_ts": 1748339709.0084987,
+      "services": [
+        {
+          "name": "BIL-POR-IPTRUNK",
+          "circuit_type": "service",
+          "service_type": "IP TRUNK",
+          "status": "operational",
+          "project": "GEANT",
+          "sid": "GS-00017"
+        }
+      ],
+      "init_time": 1748339708.594026,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [
+        "GEANTINCIDENTS@LISTS.GEANT.ORG",
+        "NOC@FCCN.PT"
+      ],
+      "event_history": [
+        "a9812296-09d5-4c80-9b6c-7827a5dbd789"
+      ],
+      "up": false,
+      "router": "rt1.por.pt.geant.net",
+      "interface": "et-1/0/5",
+      "circuits": [
+        "BIL-POR-IPTRUNK"
+      ],
+      "direct_circuits": [],
+      "bundle": [
+        "ae2"
+      ],
+      "bundle_members": [],
+      "snmp": {
+        "hostname": "rt1.por.pt.geant.net",
+        "community": "0pBiFbD",
+        "index": 557,
+        "oids": [
+          "1.3.6.1.2.1.2.2.1.7.557",
+          "1.3.6.1.2.1.2.2.1.8.557"
+        ]
+      },
+      "device_name": "rt1.por.pt.geant.net"
+    },
+    {
+      "type": "BGPPeeringEndpoint",
+      "uuid": "3c1e21a1-4f92-4ffa-b104-6e577635c879",
+      "name": "lo0.rt0.fra.de.geant.net::62.40.96.36",
+      "projects": [],
+      "alarm": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "last_activity_ts": 1748342671.77732,
+      "services": [],
+      "init_time": 1748342561.947186,
+      "locations": [
+        {
+          "site": "PORTO",
+          "equipment": "RT1.POR.PT"
+        }
+      ],
+      "contacts": [],
+      "event_history": [
+        "70ea2174-3def-4a4b-bd73-8c1dd1502204",
+        "0744ae06-ecae-4ce8-bdc0-2c44c359e0a4",
+        "9c61ccef-9159-40c6-8eb5-7322af3ddd15"
+      ],
+      "up": false,
+      "peer": "62.40.96.36",
+      "router": "rt0.fra.de.geant.net",
+      "interfaces": [
+        {
+          "name": "62.40.96.36",
+          "interface address": "62.40.96.36/32",
+          "interface name": "lo0.0",
+          "router": "rt1.por.pt.geant.net"
+        }
+      ],
+      "snmp": {
+        "hostname": "rt0.fra.de.geant.net",
+        "community": "uat-dashboard",
+        "oid": ".1.3.6.1.4.1.6527.3.1.2.14.4.8.1.11.1.1.4.62.40.96.36"
+      },
+      "asn": {},
+      "device_name": "rt0.fra.de.geant.net"
+    }
+  ],
+  "alarms": [
+    {
+      "uuid": "c73c6a62-da0d-4c4e-a33e-a65c97fd815b",
+      "db_id": 101975875,
+      "endpoints": [
+        "1507ac62-39bb-4217-84d8-3052d08104e7",
+        "afba19fd-82e1-4f13-8b74-0f35b6b483d9"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "MINOR",
+      "state": "OPEN",
+      "published": false,
+      "severity": "MINOR",
+      "description": "One or more IX peering down on rt1.mar.fr.geant.net affecting Packet_Clearing_House",
+      "devoured": []
+    },
+    {
+      "uuid": "2435cdbe-e269-4008-aec9-04061ccfc154",
+      "db_id": 101977325,
+      "endpoints": [
+        "73ed19fe-c702-4d4d-b437-c05abd12fada",
+        "84490d9f-bf44-4ebb-8930-60d19be6d20a",
+        "df9987bb-48e7-4cea-a5d8-9dfff0839f02",
+        "f10df8f9-7253-4ec4-aded-66b403cee686",
+        "5b34817d-7b4a-4642-905b-8e521bd8525c",
+        "4547c56d-bba3-4ca8-bd2d-5ca8d65e7bad",
+        "0cc6d466-ea25-4b56-bb2e-198004d81ee1",
+        "f78b8496-5101-4f1d-9841-9204a1a2e85d",
+        "8dab23a8-44b7-4a68-a75c-52e0eedd0309",
+        "14c05a81-c177-4931-8ec7-f6a434d4ce44"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "CRITICAL",
+      "state": "OPEN",
+      "published": true,
+      "severity": "CRITICAL",
+      "description": "Loss of Optical Service (BIL-POR-IPTRUNK)",
+      "devoured": [
+        101977320
+      ]
+    },
+    {
+      "uuid": "a56ccbcd-f54f-4fa0-aa1e-a6db5064491b",
+      "db_id": 101978140,
+      "endpoints": [
+        "9a5a5d2b-7fc9-41cb-8de5-b6a2f9761106"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "WARNING",
+      "state": "OPEN",
+      "published": false,
+      "severity": "WARNING",
+      "description": "Interface ud-0/0/0.1539995 Incident",
+      "devoured": []
+    },
+    {
+      "uuid": "d1827a61-5945-41be-9f14-03685f658f18",
+      "db_id": 101977620,
+      "endpoints": [
+        "2788c9fb-55d1-43c0-b616-0c7b2475cec3"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "WARNING",
+      "state": "OPEN",
+      "published": false,
+      "severity": "WARNING",
+      "description": "Interface ud-0/0/0.1540095 Incident",
+      "devoured": []
+    },
+    {
+      "uuid": "3914f3d7-e9af-4bf8-989f-482108d4131b",
+      "db_id": 101978145,
+      "endpoints": [
+        "8204e052-29ff-4a27-8746-5f8dddf4ad37"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "WARNING",
+      "state": "OPEN",
+      "published": false,
+      "severity": "WARNING",
+      "description": "Interface ud-0/0/0.1540010 Incident",
+      "devoured": []
+    },
+    {
+      "uuid": "72d0382c-ea85-4bb3-92d3-037f457861b2",
+      "db_id": 101977455,
+      "endpoints": [
+        "586543bc-a1c5-49d1-99c2-84be0b69787a"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "WARNING",
+      "state": "OPEN",
+      "published": false,
+      "severity": "WARNING",
+      "description": "Interface lag-101.991 Incident",
+      "devoured": []
+    },
+    {
+      "uuid": "1be18dad-c5f5-4cb0-94f7-55e20d76fe4f",
+      "db_id": 101977685,
+      "endpoints": [
+        "dd4b9c94-7228-4c35-adcf-6204c4661f10"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "WARNING",
+      "state": "OPEN",
+      "published": false,
+      "severity": "WARNING",
+      "description": "Interface ud-0/0/0.1540103 Incident",
+      "devoured": []
+    },
+    {
+      "uuid": "59abbc11-b8ec-4b77-8205-ec0430d81898",
+      "db_id": 101977695,
+      "endpoints": [
+        "3680ca3f-6142-4f7d-ac03-f755950ba292"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "WARNING",
+      "state": "OPEN",
+      "published": false,
+      "severity": "WARNING",
+      "description": "Interface ud-0/0/0.1198270 Incident",
+      "devoured": []
+    },
+    {
+      "uuid": "b3f04382-400e-4248-ae42-af46b7cf559f",
+      "db_id": 101978175,
+      "endpoints": [
+        "9c7dcc37-65c5-4daa-b35f-93fd57dbcc78"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "WARNING",
+      "state": "OPEN",
+      "published": false,
+      "severity": "WARNING",
+      "description": "Interface ud-0/0/0.1540068 Incident",
+      "devoured": []
+    },
+    {
+      "uuid": "13b227a5-45b1-4e35-b2e3-08a757d89a29",
+      "db_id": 101978020,
+      "endpoints": [
+        "cc24279a-eeb1-4bcd-b58b-e8e911fdfd0e"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "WARNING",
+      "state": "OPEN",
+      "published": false,
+      "severity": "WARNING",
+      "description": "Interface ud-0/0/0.1540107 Incident",
+      "devoured": []
+    },
+    {
+      "uuid": "02b0ea33-d0bf-4f0c-a72b-fc093d94b2c7",
+      "db_id": 101978110,
+      "endpoints": [
+        "399af927-1cda-4625-a88b-2c6f7389fa37"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "WARNING",
+      "state": "OPEN",
+      "published": false,
+      "severity": "WARNING",
+      "description": "Interface ud-0/0/0.1539952 Incident",
+      "devoured": []
+    },
+    {
+      "uuid": "33626022-054e-4faf-8690-db3955f56a4a",
+      "db_id": 101978025,
+      "endpoints": [
+        "cad20a8a-f374-437e-a747-f4c8f9400135"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "WARNING",
+      "state": "OPEN",
+      "published": false,
+      "severity": "WARNING",
+      "description": "Interface ud-0/0/0.1540106 Incident",
+      "devoured": []
+    },
+    {
+      "uuid": "ca953de3-a696-41ed-8b64-832e08300734",
+      "db_id": 101977180,
+      "endpoints": [
+        "77cbb12e-74c9-4df5-bbc8-a9681faf3f40"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "WARNING",
+      "state": "OPEN",
+      "published": false,
+      "severity": "WARNING",
+      "description": "Interface et-0/0/2.1931 Incident",
+      "devoured": []
+    },
+    {
+      "uuid": "ec1f5e86-961a-4ef5-9f75-a7cc30dbeb3b",
+      "db_id": 101977970,
+      "endpoints": [
+        "e6af99dd-aa71-4897-ba2c-1d87072660a1"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "WARNING",
+      "state": "OPEN",
+      "published": false,
+      "severity": "WARNING",
+      "description": "Interface ud-0/0/0.1540093 Incident",
+      "devoured": []
+    },
+    {
+      "uuid": "bf1b8396-0990-4be8-a20f-cc5886c5d0fa",
+      "db_id": 101977185,
+      "endpoints": [
+        "9683d584-a91f-4227-864a-b2ee5946ddd0",
+        "812bc832-8954-4fd4-a5e4-a7371284da2d",
+        "e98f03b1-931d-4461-a089-a8ce45f68ca6"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "CRITICAL",
+      "state": "OPEN",
+      "published": true,
+      "severity": "CRITICAL",
+      "description": "FCCN-AP2 (interface ae10.1931) Incident",
+      "devoured": [
+        101977175
+      ]
+    },
+    {
+      "uuid": "fe6c2df8-4183-43d9-9aab-2878378fc3b6",
+      "db_id": 101978130,
+      "endpoints": [
+        "de8c5fe2-0e62-4d50-bbe7-545f59817c13"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "WARNING",
+      "state": "OPEN",
+      "published": false,
+      "severity": "WARNING",
+      "description": "Interface ud-0/0/0.1539958 Incident",
+      "devoured": []
+    },
+    {
+      "uuid": "da16bd59-329b-4837-a5c0-452e72856fe6",
+      "db_id": 101977170,
+      "endpoints": [
+        "0752e832-1d68-49c9-8b34-7624d25aa6fa",
+        "d44da07d-4909-4cde-ad7c-0594cfea1b9d",
+        "e767cab8-c41e-4d8a-b951-70dc1f2844ca",
+        "bc31ffde-0ef7-4843-abd5-89d954edfa49",
+        "4d4cf4e1-078d-46b3-a90c-d772737d9d2d",
+        "5424bdf8-ad17-4a80-9a1f-add7773201c5",
+        "7b401c1e-dc87-4fb4-be8d-d2da562df650",
+        "4677b4b3-3243-4c73-b8fa-5dc408b7675d",
+        "bf9bc474-005e-4ee1-b3f9-4ab624074da9",
+        "6ccd14f1-aafd-466b-ad2d-e123180f7d06"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "CRITICAL",
+      "state": "OPEN",
+      "published": true,
+      "severity": "CRITICAL",
+      "description": "Loss of Optical Service (LIS-POR-IPTRUNK)",
+      "devoured": [
+        101977165
+      ]
+    },
+    {
+      "uuid": "ea4cc14f-3c75-4634-8629-e763591609d2",
+      "db_id": 101977690,
+      "endpoints": [
+        "34ac3221-5c7e-468a-8ac3-623cfc164561"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "WARNING",
+      "state": "OPEN",
+      "published": false,
+      "severity": "WARNING",
+      "description": "Interface ud-0/0/0.1821239 Incident",
+      "devoured": []
+    },
+    {
+      "uuid": "00f910a6-219e-46cf-bdba-6480591d0e63",
+      "db_id": 101977975,
+      "endpoints": [
+        "af4f867f-b042-46be-8f5c-046009c0791e"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "WARNING",
+      "state": "OPEN",
+      "published": false,
+      "severity": "WARNING",
+      "description": "Interface ud-0/0/0.1540094 Incident",
+      "devoured": []
+    },
+    {
+      "uuid": "d2badb63-8f92-4c80-a704-ced003d82f32",
+      "db_id": 101977600,
+      "endpoints": [
+        "467ba644-4f39-4f59-ab3d-f156c53a1050"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "WARNING",
+      "state": "OPEN",
+      "published": false,
+      "severity": "WARNING",
+      "description": "Interface xe-0/2/7.16386 Incident",
+      "devoured": []
+    },
+    {
+      "uuid": "8a29eb25-c3b1-48f7-8c0a-4c247a4842f2",
+      "db_id": 101978120,
+      "endpoints": [
+        "5b971d9e-83bd-4662-be59-56bf984506b8"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "WARNING",
+      "state": "OPEN",
+      "published": false,
+      "severity": "WARNING",
+      "description": "Interface ud-0/0/0.1539996 Incident",
+      "devoured": []
+    },
+    {
+      "uuid": "6a6fe98b-5693-4b7b-a5c9-8e63fbd411d9",
+      "db_id": 101977450,
+      "endpoints": [
+        "b3bf2883-8604-4ba7-9d22-02ba4af29ea8",
+        "8ddc7682-747a-44ae-860b-cfba15663a3a",
+        "87ed15a2-bc2f-4d99-a131-cb7b6bdb33c6",
+        "203e35d1-7521-47ca-94c3-bbf933f79d91",
+        "a6643a96-9575-4bd6-afa8-9f279bbd9dd3",
+        "6dc9f0dc-960c-4461-9f52-e160ff092555",
+        "aa06ab29-1edb-4417-88d2-b9cda3b77866",
+        "6633949a-f511-4816-9812-dab53c9e37c9",
+        "e883bab7-73fc-4941-9186-29601016e1a2",
+        "dcddbc8c-9fad-4e22-b15e-e1d08e26ca16",
+        "c9a0c856-56dc-4e8d-99a8-121990aad729",
+        "3e204840-ecb2-4a49-b208-60e482dfcb5d",
+        "c928d79a-4671-4796-83de-27b419e491a1",
+        "8e55e260-c9b5-42c4-bd80-29372a3dcf89",
+        "c41c9daf-1073-4ab7-a1aa-971ceb325686",
+        "f3a1c8d5-54a1-4a9f-872d-546d9f6b7828",
+        "d232aa38-f090-4ed9-bcc2-0e0f26a14259",
+        "885e49a5-7e33-438c-ad52-63a69017f50d",
+        "31009eb4-9a9d-4122-bdfb-2fa9dfecd33e",
+        "73e7dc2b-aa1c-43c3-8c13-dc6c9b54a900",
+        "ba09b91b-aee9-4fca-a35e-a644942001b3",
+        "dadf8163-0dd1-446e-888c-6a0deba4df41",
+        "8a32401d-77d5-421a-93bb-3c9f17346fc3",
+        "0dffc27e-b483-4ef9-a595-5f0bfb6475e1",
+        "647b8991-a95d-4e5c-b205-0c56cc9546a8",
+        "1a288efd-3e7b-491a-8f8f-c7f55d33fe79",
+        "f20cbea0-4589-4c97-abac-4bbc8e0c02b3",
+        "0915da63-5e20-403d-abe5-9a4065a69186",
+        "b306fd17-9c64-4ce8-b349-ca5d3f41aa2f",
+        "8e0bccb2-ac3f-4c9c-942f-21f09a45b5e8",
+        "400368c9-5ea8-4735-a09c-b62401c4415a",
+        "f930218f-e653-4002-85b5-c7a86d6aa4da",
+        "630df1d1-2a43-4b0a-b067-ebc5795137cb",
+        "3c1e21a1-4f92-4ffa-b104-6e577635c879",
+        "5ce5ed2a-0879-465f-8d75-aa091b10f588",
+        "9a3a4a34-f43a-45f9-b85a-531d08d9acd1",
+        "d6c133c6-9a3e-4c2e-be6c-ca2fe5cd1ba7",
+        "96bee04f-8766-42b1-bb4e-ad797d76150a",
+        "e7aa87da-2590-4b9c-8241-299d00826212",
+        "53f65c7f-553c-40e7-82ec-e52ca677c15c",
+        "3fdd5c03-3ec7-4149-9345-5414ff84ab93",
+        "8f7f7351-9a8b-41c8-9b44-6895807b44a9",
+        "48336006-7a7d-4814-8da7-ce8f1fb7decf",
+        "20f40343-3a01-4d5f-8e4f-eae7352f5c24",
+        "6935211a-d9fb-4b70-94d1-8022f4f6395e",
+        "fa75f7aa-a089-49ad-8d54-e879726425ec",
+        "a366fa13-8338-4fc0-906a-1c0de5e892b1",
+        "ae4eb0b5-1a92-4f11-8051-eaae40157617",
+        "b4cc69b8-4ce4-448c-9333-5aefd52c2abd",
+        "7e635650-eba3-4fbe-9b73-27a29180f4a5",
+        "5bbc15ef-da4f-4cad-ab53-cbd772d5690f",
+        "7cca9ae7-379f-487d-b625-8acc2a059f37",
+        "63c5bec7-c5f0-4b2c-a956-2c2f3d365772",
+        "3e501aa7-48b3-47ef-a8ad-b0e78196e18c",
+        "b8d993b5-30af-4a44-bd88-2c648bfb5588",
+        "6feb93fc-2646-4a7b-8552-9a1f87ca29c3",
+        "c20c24f0-bdf1-4c66-939b-418fdfee0e02",
+        "f9a25798-1361-415a-a4b9-275a40b59018",
+        "575b70b3-113d-4f0c-9105-b6dccbc06076",
+        "d768bc49-32a2-43a0-a590-b22c29ee2ee5",
+        "1bb3ed80-e574-4560-a4a0-3a338de7d13c",
+        "c74d02af-94bf-4200-be1d-f2bf5246baef",
+        "3706feaa-3b69-4f65-aaf2-01cc043b43e7",
+        "bb21df1e-fc88-4760-b868-29b0fbb1bcfc",
+        "21f7fd6c-7e50-4f63-9b99-bf2e1e7c8ae2",
+        "0f030b4a-855b-48f2-9c9b-4e1c28ba3e32",
+        "6924904e-4110-4b0c-9f7a-68d19646b7d3",
+        "73355b85-b6e2-4a5a-a508-aaeffb510b46",
+        "1e7d42a7-7ec7-4529-a04b-e39621ad03fb",
+        "6c0d39b5-9f80-4d92-a6b5-51e875de13c8",
+        "98fce4b1-49f4-4d11-ac93-7bf5af38f399",
+        "2f3cc185-8c8b-4f8c-8c45-c37cdf2bedbc",
+        "32b18555-d93e-4b3f-9f4c-7670f894136e",
+        "5f785138-79e8-4b56-b717-3e4615504e51",
+        "05316060-1905-4cfc-ad33-29e7740a3b46",
+        "598c7976-015f-41b5-82a7-00fc0c2fa2f5",
+        "ba4bdbba-2d93-45e6-9411-c497329209a6",
+        "c7ea7c8d-45c3-4f02-81ea-3fd155f83012"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "CRITICAL",
+      "state": "OPEN",
+      "published": true,
+      "severity": "CRITICAL",
+      "description": "Router rt1.por.pt.geant.net is isolated (BIL-POR-IPTRUNK, FCCN-AP2, FCCN-AP2-IAS, FCCN-AP2-POR-LHCONE, FCCN-IPP-EXPRESSROUTE-VLAN1946, FCCN-NOVESBE-EXPRESSROUTE-VLAN1944, LIS-POR-IPTRUNK)",
+      "devoured": [
+        101977445
+      ]
+    },
+    {
+      "uuid": "76538207-7bc4-4c7b-a9bd-ec397e64dcd7",
+      "db_id": 101978005,
+      "endpoints": [
+        "1a5b1598-f526-4cb4-8622-49592172db29"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "MINOR",
+      "state": "OPEN",
+      "published": false,
+      "severity": "MINOR",
+      "description": "One or more IX peering down on rt1.mil2.it.geant.net affecting Servereasy",
+      "devoured": []
+    },
+    {
+      "uuid": "8d0f7c26-ab79-4027-b450-07afb3d60a18",
+      "db_id": 101978115,
+      "endpoints": [
+        "855eeae0-a64b-4252-9f6a-6e7763c73022"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "WARNING",
+      "state": "OPEN",
+      "published": false,
+      "severity": "WARNING",
+      "description": "Interface ud-0/0/0.1540111 Incident",
+      "devoured": []
+    },
+    {
+      "uuid": "0d8399f3-23e8-43c4-8b02-ce5fe770437e",
+      "db_id": 101978125,
+      "endpoints": [
+        "4b5c7cf2-ef27-41a9-a121-313d4f2681c2"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "WARNING",
+      "state": "OPEN",
+      "published": false,
+      "severity": "WARNING",
+      "description": "Interface ud-0/0/0.1540014 Incident",
+      "devoured": []
+    },
+    {
+      "uuid": "f363140a-1e57-4056-9765-ced1a7e97295",
+      "db_id": 101978015,
+      "endpoints": [
+        "f5bd368a-eff4-4a32-aa2a-cc8b9a221c7d"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "WARNING",
+      "state": "OPEN",
+      "published": false,
+      "severity": "WARNING",
+      "description": "Interface ud-0/0/0.1540105 Incident",
+      "devoured": []
+    },
+    {
+      "uuid": "f8fc23d2-554f-4be1-a74c-630a05fa4e33",
+      "db_id": 101977435,
+      "endpoints": [
+        "81808ed8-7fca-48c4-af7b-a26eab3bf71d",
+        "380bef04-6aaf-4318-b3db-0c8ee9dc9705",
+        "7ae795cd-8e1c-4e89-a5da-27c394341e8c"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "WARNING",
+      "state": "OPEN",
+      "published": false,
+      "severity": "WARNING",
+      "description": "DCN-MANAGEMENT-POR-PT, EX3400-MANAGEMENT-POR-PT (interface ae1) Incident",
+      "devoured": []
+    },
+    {
+      "uuid": "f5713645-a3da-4de4-8be3-a436f8da5f2f",
+      "db_id": 101978135,
+      "endpoints": [
+        "32ea1b5f-a651-4d99-94cf-aa32e9dd6980"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "WARNING",
+      "state": "OPEN",
+      "published": false,
+      "severity": "WARNING",
+      "description": "Interface ud-0/0/0.1540109 Incident",
+      "devoured": []
+    },
+    {
+      "uuid": "5e725aa6-735b-4a5e-b145-dc0a1d469ec3",
+      "db_id": 101975890,
+      "endpoints": [
+        "f381fd4d-5303-44a3-8747-83ce2e783e38"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "MINOR",
+      "state": "OPEN",
+      "published": false,
+      "severity": "MINOR",
+      "description": "One or more IX peering down on rt1.fra.de.geant.net affecting Microsoft",
+      "devoured": []
+    },
+    {
+      "uuid": "d57724d9-3415-422d-9df0-6f9d6a5aac17",
+      "db_id": 101977635,
+      "endpoints": [
+        "b19c691e-d6c5-4837-a860-bf28b6e98514"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "WARNING",
+      "state": "OPEN",
+      "published": false,
+      "severity": "WARNING",
+      "description": "Interface ud-0/0/0.1540102 Incident",
+      "devoured": []
+    },
+    {
+      "uuid": "de6f6e9c-2c5e-4180-a14b-f595c0dd4a5e",
+      "db_id": 101977610,
+      "endpoints": [
+        "30538b51-a23f-4611-88a0-8bd6979da00a"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "WARNING",
+      "state": "OPEN",
+      "published": false,
+      "severity": "WARNING",
+      "description": "Interface xe-0/2/7 Incident",
+      "devoured": []
+    },
+    {
+      "uuid": "546b122a-464d-4a3a-acad-5b4e676b4f3f",
+      "db_id": 101977980,
+      "endpoints": [
+        "aa351fab-4921-47e6-aaf1-1fcc07647ee3"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "WARNING",
+      "state": "OPEN",
+      "published": false,
+      "severity": "WARNING",
+      "description": "Interface ud-0/0/0.1540090 Incident",
+      "devoured": []
+    },
+    {
+      "uuid": "bd7a0623-a121-4609-b2c3-bd1d280586fd",
+      "db_id": 101977615,
+      "endpoints": [
+        "e7a14e52-b8d9-4e8b-8554-56f1e048c5fb"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "WARNING",
+      "state": "OPEN",
+      "published": false,
+      "severity": "WARNING",
+      "description": "Interface xe-0/1/0 Incident",
+      "devoured": []
+    },
+    {
+      "uuid": "52aea828-0a94-4aaa-b68c-d792cd6f7b39",
+      "db_id": 101978080,
+      "endpoints": [
+        "5a1d0840-c584-47eb-9529-07a1572b1666"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "WARNING",
+      "state": "OPEN",
+      "published": false,
+      "severity": "WARNING",
+      "description": "Interface ud-0/0/0.1540108 Incident",
+      "devoured": []
+    },
+    {
+      "uuid": "522ebf96-3638-45e8-9013-c4534d7e8eba",
+      "db_id": 101977225,
+      "endpoints": [
+        "848d76b5-d3e4-407c-94e7-7a97d0bd4c8e",
+        "3d2c84cb-fa8d-4c67-990a-d97b65e824ad",
+        "ec2de0c9-542b-4a16-8dae-7493138783f8",
+        "d8336df7-4871-4a5b-a388-c11ed2006d10",
+        "c661a8c0-f41b-465a-86c3-ad222dcc3bb8",
+        "ae90af07-7182-4af0-89b2-5bcd9439cc44",
+        "5e96bd33-d14f-4af0-9809-580c9b884b57",
+        "e7947830-7275-4f87-b1e4-31b4c6dacb27"
+      ],
+      "phase": "FINALIZED",
+      "final_severity": "CRITICAL",
+      "state": "OPEN",
+      "published": true,
+      "severity": "CRITICAL",
+      "description": "FCCN-AP2, FCCN-AP2-IAS, FCCN-AP2-POR-LHCONE, FCCN-IPP-EXPRESSROUTE-VLAN1946, FCCN-NOVESBE-EXPRESSROUTE-VLAN1944 (interface ae10) Incident",
+      "devoured": [
+        101977215,
+        101977220
+      ]
+    }
+  ]
+}
diff --git a/test/data/influx-scid-rates-query-result.json b/test/data/influx-scid-rates-query-result.json
new file mode 100644
index 0000000000000000000000000000000000000000..66f3f7d9716bbf3f1142ff579b90c279cb29a5de
--- /dev/null
+++ b/test/data/influx-scid-rates-query-result.json
@@ -0,0 +1,33207 @@
+{
+  "statement_id": 0,
+  "series": [
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "001fd553-67ff-48b4-846f-66a4826da403"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2988.2341137123744,
+          837941.143812709,
+          2959.192603560562,
+          1225954.6861934415,
+          4050.504983388704,
+          15720017.097643098
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0033b1af-565c-407d-8ef0-02731e4db3db"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          132111146.01993355,
+          686118154.8172758,
+          103988640.56629802,
+          520462483.07306045,
+          196640288.16,
+          1187611627.4119601
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "004ae718-4713-482a-8acb-320baca30538"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          216.75666666666666,
+          72.34,
+          3212.6955919567135,
+          71.39845236506481,
+          30925.030100334447,
+          74.16666666666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "00d1ac99-ffaa-4aad-9d0b-ceb23131a804"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3193.0333333333333,
+          3390.59,
+          3224.3681637782024,
+          3410.703709084324,
+          3368.1993355481727,
+          3467.385
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "01a59152-95f8-4c63-bf50-55a6efb86716"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          703297847.5866667,
+          165071804.05666667,
+          551548420.8515375,
+          276500931.3191776,
+          1647985466.4717607,
+          536375849.5940594
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "01aaf261-0b82-4007-b69c-b7f247643dc8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          25170.162790697676,
+          24875.70099667774,
+          26988.26676754454,
+          26659.780707829123,
+          30171.02657807309,
+          29827.79264214047
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0204ee59-4ec9-4eb4-b8e3-910f5d8a8aa4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1362613588.5433333,
+          2102861391.5866666,
+          2304488733.5719395,
+          1564316928.9730866,
+          8779385200.64784,
+          5882221553.986667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "025e686e-7979-48cb-9d23-5f77e704f357"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          171.11333333333334,
+          130.63666666666666,
+          173.0384876593455,
+          130.30146571786068,
+          189.81,
+          132.07692307692307
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "026371d6-05e3-48e6-81ec-0a44004996d4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          13464704.683333334,
+          179956087.24,
+          15551270.89093795,
+          144441521.5623721,
+          54394323.92,
+          222290789.85
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "02fe0dda-4e19-44fa-be82-ea14b607a917"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0309a79c-b66b-457a-a49a-9e016bfca27a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          55174776.36,
+          36751406.20666666,
+          63646835.46873969,
+          38832035.96525677,
+          92110565.38666667,
+          168264109.43
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "03166d35-404a-4121-83cf-fe4844d98116"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          334093267.18333334,
+          886752305.1333333,
+          598560794.0980362,
+          1278333398.926892,
+          1253491390.62,
+          2558197182.6966667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "03344604-d6ce-49aa-af06-cfb3a8acc083"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          109970015.03010033,
+          47054398.09030101,
+          121082261.85155633,
+          53010412.55869983,
+          257350660.89700997,
+          112570796.3421927
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0336ce95-0865-4e10-8297-1852351b5cb3"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          4964977.446666666,
+          34440868.21,
+          6483931.85820254,
+          24096004.562455542,
+          47273734.12624585,
+          126392807.93666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0352e3a7-96df-40e6-b67a-a0c8a97ef10a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          498.50333333333333,
+          401.9433333333333,
+          495.6892266706595,
+          394.97476737331806,
+          520.6272878535774,
+          420.82
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "035f3ea4-e9f7-4fab-ae02-1da086b3066f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          344703851.61333334,
+          1275286544.67,
+          319980725.20915323,
+          536405539.50142723,
+          1068857322.9584026,
+          2976023135.134775
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "037d5ea2-86d1-475c-a866-a5c8a5178fc2"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          95556416.56478405,
+          12104391.936877076,
+          66548026.23873179,
+          16659285.864662053,
+          107816567.36212625,
+          77793813.41471572
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "037dff5d-fbde-4c1a-9a7b-efd817e4aeb6"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          44784701.24333333,
+          10900370.36,
+          39890808.22919194,
+          7105956.578441486,
+          82137773.4768212,
+          15903011.106312292
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "03bff316-d89d-49db-9fba-8b4eae6dd764"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1434.4933333333333,
+          357553010.17333335,
+          1469.8012488819952,
+          426276606.77616024,
+          3438.48,
+          1558029213.8595319
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "03d2213d-0c6b-4952-98d4-68b2f329a989"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          70.81333333333333,
+          1112.3133333333333,
+          70.48543764304486,
+          1094.8510163176677,
+          71.24,
+          2559.112956810631
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0412f0c0-6563-4c55-a8c4-042165afd59f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          429.0566666666667,
+          405.39,
+          422.14740552524313,
+          406.34141838282807,
+          481.03654485049833,
+          417.6766666666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "041394e0-28f1-4a19-972d-34d0f91d699d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3362.7417218543046,
+          3601.407284768212,
+          3366.5740803831145,
+          3668.790406674093,
+          3939.514143094842,
+          4225.441471571907
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "046c358c-9230-4322-a876-838482ae63db"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          40.57859531772575,
+          174.73244147157192,
+          41.80813628664959,
+          176.3996150225141,
+          87.32450331125828,
+          542.1933333333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "04843eec-b9c5-4dd1-8a43-7f874ee05891"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.5695364238410596,
+          107.64238410596026,
+          5.547659368532363,
+          110.12995116844424,
+          22.525083612040135,
+          156.09333333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "04a96079-f89a-43a4-a32b-2c5881bd86d4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          121.84,
+          0.32154964802844505,
+          122.47638246096753,
+          1.9735099337748345,
+          124.35099337748345
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "04e60051-4466-4f09-9cec-208be27aa98e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          342522932.3333333,
+          92211997.17,
+          396684059.52159756,
+          225470296.07163835,
+          1007008483.4019934,
+          379974344.1960133
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "056e1335-1735-4b11-88e5-c714ec34e475"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2.9096989966555182,
+          13.74581939799331,
+          2.9094833710165555,
+          14.78259426219508,
+          3.20066889632107,
+          16.44
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "059389c8-1202-4993-8d9a-2f4b975e86a1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          42.85333333333333,
+          40.89333333333333,
+          43.15818739411033,
+          41.55292404322709,
+          43.88333333333333,
+          44.05298013245033
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "05ae0cfa-d9ee-45ae-b40f-fb8904386e66"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2345.9366666666665,
+          55.88333333333333,
+          2506.085629278902,
+          55.80605251326231,
+          3247.2240802675587,
+          74.54152823920266
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "05ce1635-9ed0-418a-b891-0db007aea3d9"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          81489731.32781456,
+          840677228.9271523,
+          227459755.05478293,
+          541371090.6767831,
+          2282664031.8019967,
+          5197729783.485857
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "060cda59-53cc-4806-a968-9f7022021451"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          45516912.132890366,
+          105714814.00996678,
+          51962892.82607614,
+          118530979.58142076,
+          111720172.06,
+          251747676.5
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "064ae81a-8cd6-4e63-8167-b5def121b587"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          34.0,
+          0.0,
+          33.99411387925775,
+          0.0,
+          34.22666666666667,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "065dd9a7-36b2-460f-a52c-5707c9753976"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          387430480.08666664,
+          157948622.58666667,
+          241762786.8935678,
+          177588918.34485555,
+          468570643.50666666,
+          341883739.51495016
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0707e883-dac3-46e4-9d34-6308d31cc154"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          9378.306666666667,
+          2827.69,
+          11680.568435804802,
+          2851.000567914958,
+          21464.152823920267,
+          3614.94
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "072afc6c-9f97-4878-b322-9d032a04673c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1273.8433333333332,
+          121.21333333333334,
+          3244.3886478469617,
+          121.53065201222837,
+          89114.25496688741,
+          123.99006622516556
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "076d42e0-f4f2-4610-b3f6-bc953f92a87f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          16.079734219269103,
+          15.91029900332226,
+          16.187950535878066,
+          16.170004272092918,
+          16.876666666666665,
+          16.926666666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "078af96b-c99b-4204-8859-592dd3979164"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          31863.22408026756,
+          601.0501672240803,
+          32025.902075125137,
+          3231.9908256036015,
+          86330.23666666666,
+          23255.696666666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "07d2ccf5-ace6-49d1-8358-40c3b28125de"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          67562.45484949833,
+          64073.13712374582,
+          279567.8041252474,
+          68890.74114287354,
+          10211606.81,
+          317567.9158249158
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "07d95826-c41f-4834-b98b-cfe3e996fca4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2438.6511627906975,
+          58220539.132890366,
+          2582.3955160915907,
+          60248364.81566589,
+          8423.096666666666,
+          102765625.13087249
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "083bf08b-ccd1-4567-b29d-58136a2b4e32"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0845570c-10fa-4473-838f-cd1041a44fef"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          10.486666666666666,
+          30.46,
+          1036.1806255034162,
+          29.669309950899027,
+          277030.7023411371,
+          32.80936454849498
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "086a309f-d3ad-4d91-9cdc-81424ab9a16a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          280.35880398671094,
+          194.95681063122925,
+          281.4786264569123,
+          153.83654557489191,
+          288.4816053511706,
+          964.75
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "08c2695e-a949-4a15-b261-b11344b46fa1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          11389.743333333334,
+          1889.8966666666668,
+          15510.679295218943,
+          1871.1798374594161,
+          367653.725,
+          2029.4333333333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0978e56e-fd3d-46bf-a550-cb078488c6e2"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          9.853333333333333,
+          12.09,
+          20010.00974029201,
+          7512931.94641627,
+          263950.79333333333,
+          107850832.29666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "09e9c51a-af11-42d9-8298-541cd470c9c3"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          37829.21,
+          9252.35,
+          37213.79867309222,
+          10496.744409190136,
+          70565.26910299003,
+          29781.633333333335
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0a835922-ccb5-47af-b79a-e952d2e6fc91"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          543.9767441860465,
+          89.29900332225914,
+          411.3918345274159,
+          76.57009099804866,
+          1908.5847176079735,
+          112.09634551495017
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0abd37fe-8ae5-416a-9523-3cc2f747c55c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1983177.71,
+          39766280.513333336,
+          3351871.744625466,
+          33948395.599158116,
+          20988726.9009901,
+          128929122.98
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0ad41ef3-e2de-4fb6-8bd7-eed2c38f4f13"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          840544802.6233333,
+          4363391285.9,
+          1894501866.4285371,
+          3409038096.8987184,
+          9689544340.879599,
+          8463238128.983277
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0ae14b97-3e47-431a-9f69-76b7a99a42b6"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          238.41059602649005,
+          0.0,
+          65.13612033441844,
+          0.0,
+          240.80267558528428,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0b35c480-c57e-4d3f-bb2e-9ce8321fdd2b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          721.4983277591973,
+          614.5785953177258,
+          3722.537798753609,
+          12761.489188549875,
+          22467.126666666667,
+          131555.23333333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0b6389ef-91b8-408a-ae72-21f3a10293f4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          9907310556.885906,
+          6980757398.872483,
+          9062538200.192247,
+          9372858257.40762,
+          17297875413.156147,
+          17904770661.42193
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0b6cfc81-e15b-4a6c-aa8a-16c5b9a03621"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          902052569.1003344,
+          410772.60869565216,
+          101474660.13000274,
+          1924789.608095983,
+          1424980421.076412,
+          72561987.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0ba9ab91-4c40-4e8a-81f7-464f3335ffb1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          24219.745819397995,
+          2325334688.6287627,
+          4525.345632010294,
+          3687297178.491579,
+          25770.51839464883,
+          8633417683.471571
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0c00639c-30bd-4ee1-85af-b6c5cc212472"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2046802.7433333334,
+          28755809.77,
+          2684789.917586538,
+          9823971.887672178,
+          26383482.465116277,
+          42119930.14765101
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0c442386-a6c5-4bb8-bd2d-4eaa4d70f051"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0c504e16-fe46-438c-ba18-c93eaf5864b5"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          13.291390728476822,
+          15.678807947019868,
+          10.181946671650342,
+          12.398869779344333,
+          31.0531561461794,
+          59.49169435215947
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0c58a836-4077-4bbb-8cb4-8ff972e60b5f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          6263931.463333333,
+          816005.5133333333,
+          16239542.729317302,
+          1116369.5543618088,
+          117973518.5282392,
+          3692625.87
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0c87d6c5-6658-46c5-84e0-450c44f06a81"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          465.8344370860927,
+          161.71523178807948,
+          701.3826490495823,
+          194.60978043946145,
+          1614.9133333333334,
+          383.7427652733119
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0cb5d4c0-5bde-45c0-8ee6-dab43ccbea45"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          34.0,
+          0.0,
+          33.994105997617346,
+          0.0,
+          34.22666666666667,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0ccbc0ba-a7d2-4380-b3cb-14276291e603"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          26660.44,
+          20091.82,
+          26836.719395507433,
+          20220.716270952038,
+          27243.066666666666,
+          20786.883720930233
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0ccfae31-02dc-4fed-85f3-b53f84d32c6e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          298.7926421404682,
+          385.8595317725752,
+          294.98196627992894,
+          379.4948868532008,
+          305.1953642384106,
+          465.72
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0d3ffc14-a905-4975-b5c2-b51fb90d4f3f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          8343224.873333333,
+          64.05666666666667,
+          3155866.63808124,
+          54.14919371724243,
+          9397004.63,
+          72.10666666666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0db63f8a-6652-4840-a825-06efe07b6159"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          106.77740863787375,
+          133.37541528239203,
+          106.18934338096294,
+          124.51560539593008,
+          111.24172185430463,
+          202.77666666666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0db7ac4f-761f-4b46-839a-68c5c2bbfb2a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          3.9867109634551494,
+          0.0,
+          4.031620958750432,
+          0.0,
+          4.444444444444445
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0e27c49e-a0be-4ef6-a475-71c577f55699"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          23755.77591973244,
+          78119.99331103679,
+          305484.0139791628,
+          693926.5345243242,
+          9655596.183946488,
+          8564638.53
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0e97e70c-3353-4ef0-b05f-6c1e21052088"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          368.50830564784053,
+          1413.21926910299,
+          398.7882400577313,
+          4609.2394856171095,
+          1283.45,
+          301127.6511627907
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0ea95cc4-55c2-4e50-a405-c1b993755b3e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          40.723333333333336,
+          2515186.83,
+          40.85845265197391,
+          170599.89451637297,
+          44.883720930232556,
+          3400270.1733333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0ee19262-9795-47c6-b7ac-1a2f3c894857"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1406.5980066445184,
+          2387372.3720930233,
+          20647.308437783933,
+          2938044.3834693013,
+          1913754.1140939598,
+          9184357.089700997
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0f093fc1-e929-41e9-b8eb-fa2d70ac2b41"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          91282938.24333334,
+          18297768.006666668,
+          288294354.97737056,
+          63479949.58892287,
+          2474115315.983389,
+          3101720682.903333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0fc19f48-bb6c-4c4d-b436-c3dc3a48a540"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          51.81456953642384,
+          141.17549668874173,
+          134.72581298986128,
+          111.70663522202354,
+          14306.69717138103,
+          632.5647840531561
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "0fdae68c-6cc3-43bb-815e-eaf867d1e0fa"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "10751c15-60e4-4d6c-b68d-c679dd2e0e46"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          104902570.30434783,
+          650149425.3846154,
+          173773758.7339548,
+          566559073.9375386,
+          975243064.0833334,
+          908323750.0336701
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "108e3f34-cbb9-400f-943a-c2c33c988be9"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          11.990033222591363,
+          2346875.7641196013,
+          24.969569763345405,
+          2105622.4357057367,
+          68.1456953642384,
+          3947198.023255814
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "109a7ad9-69cd-4d29-abee-b4af6e73088a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3488.750830564784,
+          7895773.009966778,
+          3246.112028592726,
+          8428301.388012446,
+          5673.996677740864,
+          36616946.78666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "10b9013d-7a86-4f9d-b80e-8e7501d8cf0f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          23.16,
+          194.65666666666667,
+          18.648359626399213,
+          134.08534449770787,
+          23.35333333333333,
+          266.7321131447587
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "10c61e08-bc5f-48a8-9872-53dfffeaf984"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          79479970.4551495,
+          15324150.11295681,
+          90048865.19239035,
+          11520068.795273026,
+          211538230.23,
+          26333834.576666668
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "10c8a3ba-1aea-4a22-abdb-bdb13860061f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "10d47d94-39d8-4984-8430-300f642e8488"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3944.671096345515,
+          3198.4186046511627,
+          4181.345029219524,
+          3310.274834030144,
+          6638.516666666666,
+          4671.403333333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "10d82154-1a1c-420d-9198-9980c7edc9d7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          311.3112582781457,
+          0.0,
+          140.22052335906494,
+          0.0,
+          325.9202657807309,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1195ba87-e0a8-4c03-845e-0bc0f7d58b85"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          30.23076923076923,
+          96.08361204013377,
+          32.695504036791064,
+          79.6737760169689,
+          40.58,
+          168.99
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "119f7bbd-04ad-44cd-8d75-0293adc8dd8a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          83.52508361204013,
+          134.87625418060202,
+          62.39879100511145,
+          191.22504882905304,
+          93.23154362416108,
+          546.7826086956521
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "11b6f82c-1b42-440c-bf6f-0378acbf2088"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3147509141.0733333,
+          3541995582.4766665,
+          2136594588.074795,
+          2621112197.7587056,
+          6022401104.616667,
+          5283007245.634551
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1229a60e-761c-4004-b2a8-bd68903e764f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1855.0366666666666,
+          2243.8,
+          1874.5864692310627,
+          2256.540004015307,
+          1951.69,
+          2341.2093023255816
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "123790a1-ef34-4cb0-b9af-e19bbe8aa9eb"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          362676834.81333333,
+          3036787243.63,
+          966988368.956806,
+          3067174317.2260613,
+          5983318838.109634,
+          7980873691.20462
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "12c941e1-5224-453d-a807-40646b215c44"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          23.880794701986755,
+          152592.11589403974,
+          15.403383920558037,
+          1647596.941937645,
+          43.77333333333333,
+          34743709.156146176
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1300b831-c1bd-49cb-92a8-f93241c20a31"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          146795661.74666667,
+          6254188.026666666,
+          96171086.69995564,
+          124814914.00275488,
+          407359129.49169433,
+          674902845.55
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "134acb33-59e6-4661-9677-fbbebab12a47"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          96867263.76588629,
+          336563915.1605351,
+          91338280.55880418,
+          189575452.36691484,
+          174569622.61666667,
+          378325432.46
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1409a504-c174-4e78-8ed3-aaa28584bb3b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          15202513.408637874,
+          4244377.249169435,
+          10158738.80497124,
+          4130823.1671999586,
+          19555057.850498337,
+          31480969.65780731
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "14199cf2-5738-4ccc-abf3-4916baacaf21"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          210104.91,
+          2778238.4266666668,
+          2597887.474263518,
+          3076213.5294105625,
+          55732284.20930233,
+          3984871.296666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "141d138b-5203-4e54-9cac-b4d66add1a62"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          16604752.554817276,
+          8714624.26910299,
+          16245886.42245915,
+          18530964.345986124,
+          24646857.993355483,
+          119979718.81666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "14555551-3ce4-4e4d-bfbf-56de8205284e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          21.613333333333333,
+          120.12,
+          22.050687648007443,
+          111.67944166188371,
+          41.163333333333334,
+          196.80066445182723
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "14b798af-d52a-4ebc-a06b-175210a878bc"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          31.548172757475083,
+          19.44518272425249,
+          4058498.0026458944,
+          20014.270957682293,
+          61425094.53333333,
+          264425.80666666664
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "14d6c05d-4621-47d0-9705-2b50a5ba2607"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          30951017.936877076,
+          0.0,
+          26407114.890591267,
+          0.0,
+          43709598.77408638
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1501ff8b-841c-436a-91be-37b2d88552a5"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          91610.41196013289,
+          94671.95348837209,
+          823451.2050974442,
+          872421.9533082695,
+          33102453.049833886,
+          33519652.19601329
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1510f7a6-b938-4e27-823c-24e2867c1f5b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          43.24252491694352,
+          165.7906976744186,
+          58.396983049142555,
+          501.917515769593,
+          2087.182724252492,
+          47440.541528239206
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1518a76a-101a-4910-a4a2-330c40eee2bd"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          7.491638795986622,
+          4103.672240802675,
+          7.2005032600966326,
+          8943.474954687432,
+          7.776666666666666,
+          313494.508361204
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1531ae5c-19ba-4361-b673-b61598c7edc6"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          22145.39,
+          26808.68666666667,
+          28028.03315804621,
+          1672600.0702207,
+          116753.23469387754,
+          7321402.651162791
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "15376a6e-7742-4bdd-83ad-dea544b6fc4f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          5901662.29,
+          1728608.1833333333,
+          65266312.85013258,
+          33507328.45532711,
+          354401718.62333333,
+          298643271.0233333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "15597b53-1a55-43ff-a666-fb4e11eeaee8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          9427660213.217392,
+          2711606915.3846154,
+          7880956022.216101,
+          2421119773.269439,
+          14442328214.133333,
+          4927223610.538206
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "15aa7807-f05c-4854-9150-acb496c3159e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          176.21333333333334,
+          135.52,
+          167.44493882688582,
+          129.05891094462226,
+          195.35548172757476,
+          157.96644295302013
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "15bfb61a-861f-426d-be13-45eb31eb3ec5"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3895194207.6633334,
+          3737687929.6,
+          5178136334.211754,
+          3811996102.917512,
+          9555156195.466667,
+          9527213346.582363
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "15dd84bd-3042-4734-8d9b-d110596e9875"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          8.262458471760798,
+          44.651162790697676,
+          35.36082741339579,
+          79.98236302540687,
+          112.2624584717608,
+          287.4731543624161
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "15e11dd8-fa00-4e14-8bfd-2604b83f3791"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          22.450331125827816,
+          128.14900662251657,
+          23.169156134138923,
+          108.72698405590862,
+          26.64451827242525,
+          165.843853820598
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "16476b10-e427-481f-b082-4a21bd54bc67"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "16644def-bcc6-4588-ad2f-e5c179d676d9"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "166d1c29-be89-44fb-82ae-4e57beb948aa"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          8343224.873333333,
+          63.03666666666667,
+          3155765.403987741,
+          53.10737721838098,
+          9397004.63,
+          70.92666666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "167e7247-a2ff-42dc-973d-da88fce9b5dd"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          89437488.53666666,
+          551635399.3933333,
+          81257801.25598526,
+          280276228.4353304,
+          145945433.30564785,
+          579292612.5282393
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "16b8d896-9d4a-403f-9cc5-f087a3137a68"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.4503311258278146,
+          149.0794701986755,
+          0.6260298133799226,
+          139.13542827622624,
+          2.2458471760797343,
+          191.36
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "16c14584-c205-4c28-85da-ed53bfed4f0e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          37917201.196666665,
+          21276794.57,
+          22474573.317976654,
+          14991345.598343777,
+          46022795.342192695,
+          40625236.90033223
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "16db554a-970f-450c-8a43-82ba1f91b0e6"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          13.581395348837209,
+          0.0,
+          15.159194605334175,
+          0.0,
+          98.62458471760797
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "16e502b0-920a-4640-9ef1-2a8096549750"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1951476910.42,
+          1623311969.8666666,
+          590007561.6080332,
+          1288065363.4085462,
+          2136624806.3066666,
+          2801378822.299003
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "172d87f3-530c-4232-ba67-6f52e5f96274"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          48040628.87043189,
+          0.0,
+          48441543.25701807,
+          0.0,
+          65648323.053156145
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "17380d2a-e6f5-4ed9-abb1-b8663ead67a0"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          27.773333333333333,
+          291730422.0,
+          31.98661302004429,
+          755430098.8499691,
+          48.53488372093023,
+          2981659872.976744
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "176feff7-9335-4f01-a527-da9957f620f3"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          971.8039867109635,
+          608.9900332225914,
+          1077.7025991899666,
+          1367.744284925149,
+          1713.44,
+          37116.74
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1777015a-4a61-4db2-ab7b-3d51c51b72c8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          258559628.99333334,
+          581027831.1066667,
+          231871917.4054111,
+          547044248.2255095,
+          399693474.63455147,
+          837719039.5348837
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1791eae3-5f75-43d0-996a-e2e149477442"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.019796886457117933,
+          0.0,
+          0.24749163879598662
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "187ba847-387a-4e22-9264-3cf431bce396"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          161841593.09364548,
+          157269107.04682276,
+          193825134.85434023,
+          236627446.24840137,
+          604484708.6511627,
+          793935258.6822742
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1899bd82-2345-4f25-b429-64871446c65b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          70470.10333333333,
+          8055963.3133333335,
+          9675449.601585915,
+          7972003.5570687,
+          377222836.8666667,
+          29273942.866666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "18aab95f-bcf9-4ed4-934f-129083d5823a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          9.826666666666666,
+          11.78,
+          9.981535106537839,
+          11.99468393556035,
+          12.05,
+          13.776666666666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "18d4726a-65ef-42a5-ac74-503469d02b14"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          14.534883720930232,
+          117.15282392026577,
+          17.07929813250473,
+          118.86861845056451,
+          531.2392026578073,
+          223.98666666666668
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1906b294-314f-4feb-84f2-a75af3a64a75"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          18.614617940199334,
+          20392403.548172757,
+          35.675298471631095,
+          13370209.297207061,
+          216.12624584717608,
+          25737733.983443707
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "192b2225-8d32-4244-a9ba-e19e9d4273b5"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          7593.635451505017,
+          2511.722408026756,
+          9834.12211478771,
+          2582.3357246626233,
+          18211.89072847682,
+          3385.135761589404
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "19411b00-b039-4b1a-8c37-7bbfed9c31ef"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          19315.269102990034,
+          15934.162790697674,
+          147722.72455093882,
+          139916.26181505003,
+          6206797.57475083,
+          2659350.81
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "196accbc-ea01-42d8-9b12-137606d287f2"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          182413883.13333333,
+          100125277.95,
+          188556554.5834248,
+          79522782.00082175,
+          800405172.4882944,
+          180398100.3820598
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "19929b39-8a7b-4f4a-9194-4dfbdc9d897a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1965.3344481605352,
+          1742.2809364548496,
+          351261.48276413407,
+          19531.828195310947,
+          17537850.83557047,
+          3245510.4518272425
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "19d57a2e-2063-4b30-b5ee-d5c8a3e4ef54"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          199.91973244147158,
+          45.24414715719063,
+          284.10928032627623,
+          45.64002254435304,
+          668.0198675496689,
+          48.42333333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1a41ae31-c0ed-4056-9127-f7f2570d53a1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          86242031.66,
+          171928345.37,
+          58797258.4678464,
+          90002954.62583856,
+          187381353.57,
+          219086239.01013514
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1a6b5d97-f769-43cd-b75f-ba5346b13fc0"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          79.876254180602,
+          56.24414715719063,
+          56.00013966080483,
+          52.23584988075808,
+          335.96026490066225,
+          60.22185430463576
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1b3404b0-f271-4ab6-b084-d126f781adb3"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          158732862.33,
+          911533581.5766667,
+          122483524.56524007,
+          673912932.1587282,
+          230340029.97666666,
+          1374122856.5
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1b595534-bf95-4045-a5c3-3ed6c179ba0c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          5041997374.13,
+          1431589039.9333334,
+          3639834787.144759,
+          1195738659.8635607,
+          5895435387.66113,
+          3171908322.9832215
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1b5e2ca1-168b-4beb-a65f-3c46d8be4f66"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          52967261.800664455,
+          150099641.61129567,
+          77010034.38270043,
+          58939145.27111949,
+          211656017.78,
+          233720169.5946844
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1b5ed316-dd35-4c6b-9898-29bc24be3450"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          41725.18060200669,
+          12334.321070234113,
+          38501.862065432855,
+          10879.055068602243,
+          71513.94333333333,
+          34557.208053691276
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1b9cb927-8e22-4b7b-8525-f1350ed1886e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          41466814.123333335,
+          67057.39666666667,
+          39151969.289236724,
+          36987.09378041201,
+          118849252.1627907,
+          104725.06333333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1bd07732-d4af-4e17-94f3-b1f826937ab6"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          14632.346666666666,
+          10702.746666666666,
+          1662233.6838641725,
+          27692.86256853451,
+          7092105.833333333,
+          94613.68666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1be23e35-d3d5-4aff-b48b-5d491fb9dff2"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          819.3979933110368,
+          1516272525.812709,
+          785.5212043615189,
+          262028055.43587595,
+          951.3145695364238,
+          2760889433.729097
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1bec2d3e-df91-4002-acd8-9ec061c1b85c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          60.95333333333333,
+          770543.69,
+          62.498193867849054,
+          236319.572154205,
+          80.495,
+          866479.0966666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1c1ff9c5-79ec-409c-9986-133ea9923853"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          113740.55149501661,
+          256461.59136212626,
+          111004.02332961203,
+          252509.05986811873,
+          138587.44,
+          264196.16333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1c3d5086-6663-42a8-9a0b-59ff278af1d4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          11658.8,
+          7767.926666666666,
+          21123690.27135119,
+          2071459.4112965656,
+          184487504.41666666,
+          59598028.67
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1c5bbd17-a4f2-4284-bb8b-ce0127edbd23"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          25336494.093333334,
+          25417736.59,
+          15634401.722083509,
+          104121478.89472654,
+          99397872.55,
+          694233297.4615384
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1c8039f6-3f5e-4d28-b082-5a304bd02f8d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3331.182724252492,
+          50531.900332225916,
+          3594.4593140429897,
+          90212.53944874273,
+          11144.229235880399,
+          341678.1066666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1caee5e3-485a-4fe8-b0c1-2993bfe84943"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          631115789.9531772,
+          1525741534.367893,
+          653912696.6633157,
+          2019828713.9201703,
+          1530626862.5333333,
+          5227406216.7176075
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1d343d79-0dbf-4e8b-8e1e-f3e586fe6c0b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          37418100.52,
+          143912337.51666668,
+          25283936.81157827,
+          165598256.8650386,
+          106377496.02333333,
+          772523047.7892977
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1d8c3a7d-c23f-4c26-87a1-7e7d880631a5"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          295154443.090301,
+          45865379.89297659,
+          208461239.96624994,
+          59744716.292683244,
+          393613488.6555184,
+          384915919.5585284
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1dd01503-0e23-46b7-b4c8-056ca91ca1a1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          112558692.55333333,
+          185698009.02,
+          78183314.10821716,
+          144126135.41317654,
+          161978297.83277592,
+          238809607.45
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1dd2f3d5-4714-4201-9027-d0115be4a1da"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          6.29,
+          0.6,
+          5.919733809301975,
+          0.6154772128804866,
+          7.133779264214047,
+          1.46
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1dfeb152-3454-4f24-acc9-72fcd33d2063"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          8869.343333333334,
+          2702.61,
+          11007.649154322333,
+          2700.658666820906,
+          20754.049833887042,
+          3490.8333333333335
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1e02d94a-8cad-412a-86f0-8032dd9dc83f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          833582.8803986711,
+          0.0,
+          2913593.0909765884,
+          0.0,
+          7646609.8966666665
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1e22ab62-4cfe-4989-a814-9f4c97684f53"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          536235.0533333333,
+          108082.64333333333,
+          778257.2687376038,
+          2028501.6085330157,
+          5972871.086666667,
+          22794678.428093646
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1e244e65-16d8-4d0f-ab8f-895ae6890721"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          64.15333333333334,
+          61.98,
+          57.46950085132706,
+          56.803946487997116,
+          109.07023411371237,
+          130.56
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1ea05a59-68b3-405e-b16d-25bf2ced49e9"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          122.7641196013289,
+          700437.2392026578,
+          123.19092816859845,
+          907000.3230288266,
+          124.41196013289037,
+          8343580.476821192
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1eaffd5f-d60b-4d52-9be7-5ec5aa424e84"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          256231882.9003322,
+          16669459.26578073,
+          193303847.75217405,
+          20053357.05580996,
+          309062476.4385382,
+          60698500.96333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1eec53f9-ea26-45be-aaca-6d02d3eaa1ae"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          435.52,
+          473.01,
+          3452481.501556001,
+          476.7237294797669,
+          60493651.35451505,
+          506.1705685618729
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1f8e5e54-3ced-49c6-9bb6-0eb5f2d1d919"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          859.33,
+          575.9266666666666,
+          961.3019191924255,
+          1354.1625238679878,
+          1735.0836120401339,
+          38390.929765886285
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1fd474d6-a2e9-4a72-bd8d-157b625888c6"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          197.7056856187291,
+          275.3344481605351,
+          201.31344436465292,
+          264.62433466682955,
+          246.05298013245033,
+          655.3833333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "1ffac299-0dd2-4176-8ef8-4396c5e8c82d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          104511.53973509934,
+          84997.3940397351,
+          109208.01869792148,
+          90428.77352779491,
+          133402.17275747508,
+          113859.18936877076
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "201a2e2e-e629-4f2a-8b58-8943f20bd3fc"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          158732848.54333332,
+          911533574.3166667,
+          122485698.4628457,
+          673918410.2327808,
+          230340017.44333333,
+          1374122852.71
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "203bd8cd-b9a4-4670-85a9-66656b2a0a33"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          347.53,
+          554.0366666666666,
+          536.9208285997702,
+          1330.0704126759003,
+          4814.34608985025,
+          6935.159733777038
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "207ab701-434f-4965-abe7-6fd9f318f0a3"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          60601.04,
+          64858.98,
+          57170.75084012495,
+          62670.47474447807,
+          82976.43853820598,
+          74925.24584717608
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "20a13559-cc78-425a-b4c7-b9be4a7535e7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2059310.56,
+          29952623.2,
+          4305547.675240767,
+          9800920.096185973,
+          25955267.264900662,
+          41586408.38
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "20cf47e9-1fcf-49e3-ae88-157e3d880cae"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          294370.73089700995,
+          5444303.943521595,
+          552353.3429787431,
+          5991677.273150432,
+          3172384.2733333334,
+          30968566.136666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "210e27bc-ebc6-4022-87bf-7d68bbad573a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          285.07308970099666,
+          251.0730897009967,
+          285.80803019496307,
+          251.54908568708376,
+          289.74418604651163,
+          254.438127090301
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "213c036b-26ce-444f-aceb-c14185c47521"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          422.9533333333333,
+          1.6533333333333333,
+          347.20411575109284,
+          1.5636223937991973,
+          435.03973509933775,
+          2.7066666666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "21a5e397-d6f2-463b-af4b-54c9eeac7449"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          919843.219269103,
+          532536.4916943521,
+          10331359.208875913,
+          570808.8129372158,
+          110120525.07973422,
+          1351866.8466666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "21aa2198-7a5c-4944-8646-c793e0bda5fa"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "21c3396e-cc9d-4601-80dc-d228cbc265ce"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          14620.08,
+          10690.713333333333,
+          1662308.4768837697,
+          27683.001180274412,
+          7092092.34,
+          94601.93166666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "22075da7-b83a-4c5f-9a23-2697a68f9c69"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          114070.78333333334,
+          289287.4,
+          139788.4105272313,
+          370749.1061325232,
+          640064.2462562396,
+          3681353.1233333335
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "223ce175-d3b3-4aaa-8c2a-f4eb7db5d55c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          199654.76744186046,
+          566426.8172757475,
+          315385.6805393781,
+          595954.9938443862,
+          478226.80528052803,
+          4517906.9003322255
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "225c1029-e685-424c-bc6d-4bb6fb8922ff"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          96230361.78,
+          18666733.563333333,
+          14543658.311659634,
+          25846431.74681808,
+          409779650.89666665,
+          165544989.30333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "225e173e-a434-48f0-8d45-788131e71ee2"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          11588.86,
+          21199.95,
+          11339.895041420517,
+          20669.65510267918,
+          12237.826666666666,
+          22846.156666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "22e12fe0-8788-470e-9098-512487831eea"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "23558e1f-2bd8-4802-8062-6ff1d78cb8b3"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          5489001.249169435,
+          14925829.176079733,
+          6349615.885515583,
+          20956091.427969765,
+          20563732.136212625,
+          78267400.19333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "23aa4fbe-15bc-4f69-98ce-695c23ec901b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          404.44,
+          431.81666666666666,
+          406.3460504092183,
+          422.1743164993267,
+          419.3687707641196,
+          481.98
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "23ded7cb-8234-4030-b0ff-e34a2755d9a2"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          151.45,
+          282.19,
+          150.58839178176862,
+          284.4382498137115,
+          181.49832775919734,
+          305.9767441860465
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2401b1fb-4bda-4d11-ab4a-9fb64e746e8e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          44888.71760797342,
+          32006.312292358805,
+          48831.53532537252,
+          36773.89455271391,
+          65706.5618729097,
+          52846.66112956811
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2406e5d4-3c78-436a-81b7-62b8035e19c4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          119298233.72666667,
+          416939286.74333334,
+          198699896.45469525,
+          429873534.80028075,
+          1841259229.4566667,
+          1329713784.2927632
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "244f1a0a-8a98-4b6d-83d5-41fd1284f564"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1322.7607973421927,
+          93861940.3421927,
+          1322.8569462436487,
+          246917542.8052557,
+          3787.0199335548173,
+          2170656452.704319
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "24d033d8-f66d-4a02-a81c-e5e4fb5fc895"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          52.81333333333333,
+          227.47666666666666,
+          1342.47324478029,
+          249.05939583427747,
+          47458.28903654485,
+          792.54
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "251fabbc-0c95-4f48-a67b-61fa3a90923d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3996.408026755853,
+          4786.983277591973,
+          4115.708425762081,
+          4919.1359561823165,
+          6537.2624584717605,
+          7069.28
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "25263f65-b258-43a9-81aa-f81b8645cb4a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          251831.16887417217,
+          139839.6026490066,
+          256828.32244042674,
+          142330.57808277645,
+          266264.72954924876,
+          155328.4834437086
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2564019f-85c6-4bf1-af8e-a520a437f6cf"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1514504571.38,
+          381293397.8233333,
+          971527282.0742822,
+          305500864.8540215,
+          1643838654.1638796,
+          492482821.4817276
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "25726f75-9112-4125-a46f-9857eec8a21f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          581.7533333333333,
+          657.4166666666666,
+          591.584231171421,
+          651.7204365454195,
+          618.2871621621622,
+          743.9166666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2575bee7-a12c-43fa-95c6-f6c557f0f98a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          6006.076923076923,
+          47850.357859531774,
+          6171.166371637773,
+          210204.04404981472,
+          10963.42857142857,
+          12036634.172757475
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "26229f64-bab7-46fc-9f13-7cee0376e361"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3.19,
+          15.216666666666667,
+          2.9090465137932804,
+          14.9705510452419,
+          3.19,
+          16.65551839464883
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "263f26fc-a1ae-4070-bf40-8691c7adea88"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          115.81333333333333,
+          0.0,
+          115.51765489943693,
+          0.0,
+          116.82274247491638
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "267508c4-2dfb-423b-aa02-5bb3434d858e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          163572.89297658863,
+          166744.38127090302,
+          308187.1716549861,
+          133268.18671398846,
+          4206107.23,
+          3056562.87
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2737a2e5-d153-4323-8a65-5415e75af1c3"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          4964964.65,
+          34440831.04333334,
+          6483919.296727443,
+          24096000.117005225,
+          47273721.37209302,
+          126392809.26666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "275fc372-db9f-4589-9726-7626343efa46"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          478936631.18333334,
+          702447995.4366666,
+          905350415.0606762,
+          425886214.63178277,
+          4148416373.6138616,
+          1953644546.437086
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "27662825-c993-4152-8cb2-84314522215f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          26.576666666666668,
+          176.0,
+          55.72176715677289,
+          176.7795584513008,
+          7673.913043478261,
+          571.6354515050167
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "276ea9a7-bbc0-48e8-bcb1-c7496fcf1afd"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          24.333333333333332,
+          24580699.026666667,
+          30.28419691839824,
+          49268082.47568609,
+          294.37,
+          203701090.30872482
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "282334ba-996c-40aa-b3b5-a74c9fa24269"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          699872509.6166667,
+          763495610.39,
+          969982612.9744565,
+          890242978.7091281,
+          4840286446.716666,
+          2591801978.363333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "28287f3b-485c-4dbc-898f-b9eccd41ee9d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          199021.2093023256,
+          8966.205980066445,
+          166878.33759390793,
+          12973.015196665305,
+          891691.7574750831,
+          117099.07666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "282e1bce-66dc-4965-b474-f26972b3a457"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2880734.723333333,
+          1151488.0333333334,
+          3422107.0945993504,
+          1359883.989085529,
+          14889113.226666667,
+          5266934.735785953
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "285062ec-f192-4275-8e6d-b83c25ea5d8c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          9.72,
+          12.006666666666666,
+          31.02398793760822,
+          11.798321870723631,
+          6110.01,
+          14.916666666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2886dc7d-1ced-4483-b406-afc81766c717"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          15201671.617940199,
+          4275903.524916943,
+          10135692.678060494,
+          3497352.03677565,
+          19568413.378737543,
+          15545271.182724252
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "289e8149-9523-4df8-af9f-b3aec269f266"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          439563603.39666665,
+          10757035.223333333,
+          358268604.131368,
+          7670807.897113947,
+          769484587.7408638,
+          15918567.026578072
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "28a95768-49ec-4c84-ab68-90981cd7ee65"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          342522808.3333333,
+          92211999.43666667,
+          396683860.6524627,
+          225470238.09113818,
+          1007008360.6378738,
+          379974352.5116279
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "28b5f700-a84f-469c-a340-96023b772ba9"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          9180.723333333333,
+          4967.923333333333,
+          12819.90043631695,
+          5052.93270872754,
+          32167.621262458473,
+          10220.65780730897
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2941d1e3-998e-4c32-b31c-3c4f0fa252a8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          12090398.62,
+          98727879.58,
+          33687547.9630362,
+          51930984.491633646,
+          215238815.641196,
+          295093342.2358804
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "29642e9a-68aa-49ce-a061-7c97416c1fb3"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          42641.63,
+          375750.35,
+          1057067.0335911827,
+          19891.129223721466,
+          18310428.296666667,
+          375750.35
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2a262c6d-666d-4c05-9d7b-8cfe7c584a76"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          930.109634551495,
+          1047.1196013289036,
+          975.7014106925749,
+          1104.4271616230367,
+          1425.7441860465117,
+          5413.252491694352
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2abfb54b-7d83-44fb-b948-f192bb4c3edb"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          148.39,
+          5678.97,
+          307879.70190760255,
+          2027635.7103087858,
+          1640429.5466666666,
+          8502054.913333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2adb96cb-4971-49ba-b7d4-79700e61c1ac"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1107.12,
+          22.786666666666665,
+          15204249.251066545,
+          22.76666958415955,
+          103214250.47651006,
+          26.32441471571906
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2b7a77f9-c233-44b3-ba26-c5d3205dde6f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          55837.72847682119,
+          72727.51986754966,
+          71173.26432407147,
+          346911.8597539486,
+          403413.0531561462,
+          5594683.488333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2b8232fd-2b7c-4936-85ed-5486357aca05"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          61.94701986754967,
+          226.68211920529802,
+          65.37269008003402,
+          245.2463201666172,
+          79.41,
+          529.3
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2b824aa6-1daf-438e-9f6f-6ae3e5a8ffa2"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          14.2,
+          105.79333333333334,
+          14.915709424772183,
+          101.40419310704358,
+          32.92,
+          189.53
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2c102103-9554-4f7e-9c0c-ae066ee731d5"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          82144058.32441472,
+          42246443.033444814,
+          96060051.471504,
+          24350956.977397498,
+          235685685.4883721,
+          59635894.693333335
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2c5d139a-a4a7-4b13-92bf-669bcba6d9d9"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1777669.9767441861,
+          10988806.96013289,
+          2665071.216730671,
+          10235108.508393921,
+          9571114.99,
+          24783492.886666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2cd18b7b-837d-4272-97ce-404073b07e1e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          14.386666666666667,
+          212.04333333333332,
+          1236.0282121249961,
+          1589714.644995437,
+          233322.8768718802,
+          40524145.930232555
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2cf06177-97ba-411a-a21d-4263757b0aef"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          62985401.35880399,
+          91670962.7973422,
+          45535262.80560218,
+          79917371.93590194,
+          116312453.82,
+          226242525.80666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2d0afbf8-a198-496d-afc4-9bec35b8c056"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          26660.44,
+          20091.82,
+          26836.719395507433,
+          20220.716270952038,
+          27243.066666666666,
+          20786.883720930233
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2d108a02-a649-482f-8d80-305623cc6005"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1185300.053156146,
+          1536720.607973422,
+          10705726.641695783,
+          1655369.7569889575,
+          110367583.0498339,
+          2940187.33
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2d750c3d-f984-4d89-b015-496bdb1c549e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          15.473333333333333,
+          0.0,
+          15.223616480589431,
+          0.0,
+          16.7682119205298
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2d78e5dd-a685-453f-88a0-d0f5ec855bd4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2de818d3-8e4a-4225-aa6d-9a345a311a4b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          172377017.82333332,
+          617971559.1333333,
+          202460256.8828658,
+          532939748.19874454,
+          362606724.23255813,
+          1002662793.9701986
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2e3e058d-5a01-4004-86a0-b0eb31658503"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          286.6810631229236,
+          251.95348837209303,
+          286.9471973770213,
+          703.3072536759765,
+          291.10033444816054,
+          16223.54
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2e578d95-5890-40a1-835c-af02c1c2ea4f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          32643.786666666667,
+          325.17333333333335,
+          2286636.2896571276,
+          116642.45411027464,
+          37298116.70666666,
+          27921959.94314381
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2e6f5a62-ad50-4b8d-b77c-9fe2d5590b59"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2e70c9ab-fb03-4687-ab1a-ca37e6e8abe1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1811159956.93,
+          523325899.89666665,
+          2030407396.869518,
+          774054249.7105975,
+          7472531070.234609,
+          4241303834.76
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2e735d1b-89fc-488c-965d-cf10ca1d8a5d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          26701.083333333332,
+          53180746.123333335,
+          27441.56133417818,
+          54027166.78665707,
+          133599.38935108154,
+          74405179.46
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2e89f7e5-46c7-468a-9435-4d10774ee4ca"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          20.356666666666666,
+          89.86666666666666,
+          19.916366208388034,
+          89.21469886903681,
+          27.282392026578073,
+          92.65116279069767
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2f01d25c-6c99-41ee-bbb4-a7f7aff83182"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          231187600.8,
+          538396097.79,
+          747331364.7146509,
+          97020141.93784885,
+          2148662341.863333,
+          1639418471.7666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2f60bfa7-39d8-4759-81e4-f52f70112c03"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          699872565.24,
+          763495598.48,
+          969982797.5426593,
+          890243037.7334377,
+          4840286502.34,
+          2591802071.866667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2f76e589-0179-467c-9a1f-9f8efeedbaab"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          23.403333333333332,
+          3850.133333333333,
+          18.420559120240544,
+          18113.168591938254,
+          31.403333333333332,
+          512119.0548172757
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2f9bda15-9f61-4911-8be0-23d10daa100f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          30114618.86,
+          2054428.1566666667,
+          9828600.56705437,
+          2645606.399918611,
+          41710643.13666666,
+          25954077.34437086
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "2fcd6323-8c7b-4c92-8cfb-eef07e95ef93"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1354452792.6533334,
+          5985497681.776667,
+          1519450526.5818982,
+          6298352096.4362335,
+          3810191415.0333333,
+          11707789791.133333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3010291b-fe82-45c9-8fd2-313b5735eb64"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          14177139.26,
+          86748586.17666666,
+          39432026.53282421,
+          165668320.9288297,
+          84795788.72666667,
+          793226701.6866666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "301ccc83-78c0-4d22-8916-efb503f3224d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          154766831.33,
+          1501753502.6666667,
+          48578007.55732077,
+          258643907.37723675,
+          375110693.63,
+          2726922745.860927
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "30924b0a-4db1-4415-9158-8ffa674c3f78"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          4273694619.36,
+          3559528725.653333,
+          3377007385.062686,
+          4573433925.005544,
+          7534592484.8,
+          10723428702.192692
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "30edb650-7438-48d1-8659-2d8336c44132"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1646386798.5166667,
+          7896262354.906667,
+          2390115617.2512636,
+          4220203828.2067213,
+          12522006673.28,
+          9248369562.703333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3119f218-6059-41bf-8eae-cccd22f373cc"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "316d6661-8b13-4ff7-8215-b8dd8dabbb76"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1176.5484949832776,
+          512.3913043478261,
+          1426.5889220966878,
+          600.0141920478156,
+          13662.166112956811,
+          7374.880398671096
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "31876dae-2b17-4cec-8d98-a6b9d67d392b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          34.0,
+          36.0,
+          33.99410861303102,
+          35.99375927294664,
+          34.22666666666667,
+          36.24
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3196835f-d05a-49f1-9a87-e187775f92ad"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          192.51839464882943,
+          125.26086956521739,
+          190.4732152248115,
+          125.4496110389798,
+          251.3986710963455,
+          336.9933554817276
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "323d5aa9-2d6f-4e7f-84a2-507ad27ae288"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          55.74750830564784,
+          15.970099667774086,
+          66.82140126375904,
+          16.11332642894266,
+          101.6241610738255,
+          23.229235880398672
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "32499fb3-e4a5-4639-8ae5-a4e0d3729d0d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          9.996666666666666,
+          24935.78,
+          10.086179745218182,
+          6440.271321788352,
+          14.026490066225165,
+          222894.89966555184
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "324e9c37-b810-4081-9883-bceb0105b8d3"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1615783834.96,
+          1903121856.8066666,
+          1288173009.3602092,
+          590239840.7058586,
+          2654138449.7123747,
+          2146504470.02
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3262cab0-6211-4b86-b9b1-0cd084a33884"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          193.11,
+          18.286666666666665,
+          191.14621991550067,
+          17.422979717216396,
+          196.0,
+          19.933333333333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "32a53de5-20c4-4c3b-8364-1b1b3a4b42fd"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          33290981.391304348,
+          218545598.17056856,
+          35447681.352377884,
+          147319467.35846746,
+          374027917.6220736,
+          297952081.46822745
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "32d03ddf-0e6b-48ab-8632-ded748411c2c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          35.0,
+          0.0,
+          34.996308614935664,
+          0.0,
+          35.33554817275748
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "32d3c3bd-3d5e-4534-aaa7-4be36f438019"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          355467969.29801327,
+          15999650.605960265,
+          485437914.51273054,
+          15423128.253737621,
+          1034817053.499168,
+          42773804.471760795
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3345876b-a0fc-43b1-b473-272358988c96"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          22.608695652173914,
+          17861.464882943143,
+          300.2501711778958,
+          91522.10817455241,
+          39941.19666666666,
+          1686806.149501661
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "334f91a2-c0f6-4b39-aebd-0493a57a94f0"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          773254321.69,
+          718303248.7733333,
+          892417824.7219472,
+          970108702.8512232,
+          2587828992.3588037,
+          4875722616.80602
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "33c03821-badf-4fd5-9f25-dd259de16ae0"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "33dd571b-92a9-45fe-917d-a658b965ad62"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.2,
+          195.56666666666666,
+          0.28607606647068756,
+          157.7776136989251,
+          1.1066666666666667,
+          204.87290969899666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "33e16c3c-3f5b-42d5-a177-8bb9cfbc5353"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          583015905.5466666,
+          140337402.78333333,
+          279578090.97948915,
+          81594827.2734733,
+          796877904.7475083,
+          158408852.46
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "342dd7e8-af4d-49fd-9c10-e826ceb4906c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          9.52317880794702,
+          11.725165562913908,
+          7.754556856095364,
+          9.427841715816033,
+          43.48837209302326,
+          41.22833333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "343898ce-fe8c-4a2c-a4f5-2668f9cbad13"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          38860.99,
+          4370.086666666667,
+          2160534.1612156793,
+          957729.3294342764,
+          47993364.73754153,
+          58648950.31666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "34923920-01d9-43ce-bacb-819dd85b1f61"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          5028.7375415282395,
+          4425.235880398671,
+          815.0160050609434,
+          293.8240454938823,
+          6964.1688741721855,
+          6346.119205298013
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "35410e69-7d9e-45ac-8455-908c985b69f8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          55.78073089700997,
+          14.584717607973422,
+          66.88184375892808,
+          16.2278844693788,
+          103.06711409395973,
+          23.335548172757473
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "35452849-6d0f-40f7-b6a8-dd898b27db5b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          20717300.79264214,
+          191107052.1638796,
+          46037939.82454174,
+          204048188.8517624,
+          218201131.3807947,
+          435256058.5933333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "356661ef-ba12-4c89-a16f-aa9a448f80b7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          6961670.673333333,
+          601565.2,
+          33914870.14662094,
+          44221223.849479295,
+          350370188.82666665,
+          427241565.89632106
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "35b1187b-7502-4398-bf1f-807354be33c2"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          86012754.64,
+          990775466.8266667,
+          63595837.44772016,
+          700158084.7058542,
+          110965325.9,
+          1141653530.8633332
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "364148ab-46f3-42cb-8212-a1838b8808f4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          942284022.4916388,
+          643562505.7892977,
+          1240332143.970326,
+          439120787.04360855,
+          3583513274.4717607,
+          769959761.6946309
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "366042d8-9e09-4eb2-be7e-9185f699f568"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3927.2566666666667,
+          13521.603333333333,
+          4328.022672906126,
+          23020.27996286661,
+          17460.136212624584,
+          544069.88
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "36e11a6a-4a2e-40e8-b602-c8802e96146f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          4310.073333333334,
+          910.47,
+          6538.797365926041,
+          16823.486196145022,
+          69535.69833333333,
+          442327.55183946487
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "36efa0f4-8c60-4649-8c91-8dbf4a2c3aab"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          57140171.50501672,
+          233739461.4916388,
+          48494500.53722309,
+          216198139.76389027,
+          97818941.55666667,
+          329695979.8770764
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3728ab0f-f357-4ee9-b835-53005f454da4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          171631567.46843854,
+          60389677.511627905,
+          202745827.05984476,
+          70683388.44745193,
+          508069830.43434346,
+          158379209.85049835
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "374c7649-9a48-49d6-b2d5-8750ae36099e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          516309.4485049834,
+          913907.3189368771,
+          556934.767171981,
+          10323190.876505144,
+          1344339.4186046512,
+          110383128.26245847
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "376d2dc2-2f17-410a-bfa5-8e86556ba986"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          10850426940.456375,
+          8031237920.966443,
+          11881303527.075706,
+          4981774290.2366295,
+          19606159040.212624,
+          10699668521.036545
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "379c35ec-a121-4ba7-8bb5-eae5879dd02b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          13995.493333333334,
+          1924833.6033333333,
+          13865.765202774764,
+          1844988.1162132013,
+          15139.38,
+          2875179.142384106
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "37ab7293-5eef-4521-bccb-9e71fc8f17d4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "37e79eb5-256d-4a21-ba32-8cbcdf64288c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "38019230-9f37-4c26-b7cc-ee9e9a959928"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          37348.79,
+          35017.58,
+          23187.453093112592,
+          21696.390522939495,
+          38373.276666666665,
+          37715.573333333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "38238cff-d62e-4c2a-a2ae-57ff08c7f64a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          261.9166666666667,
+          218.71,
+          1344.2193722891425,
+          238.0090848176522,
+          84689.13621262458,
+          771.2591362126246
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "38c31549-491d-4f7c-b7a8-93b9a8920e45"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1452.6454849498327,
+          257779287.14046824,
+          1459.7344009746223,
+          303847738.82683855,
+          2460.076411960133,
+          570451160.1993356
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3904f984-6286-4de8-9812-9324d22a981c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          239.48666666666668,
+          1396829.9533333334,
+          356.6230275936959,
+          1220275.2211473929,
+          11177.966666666667,
+          2429754.993333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "391b49a2-e3e8-48f2-8650-712782de591f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          313270.13333333336,
+          83367.83,
+          685010.1792284227,
+          104155.69016901831,
+          15242233.013333334,
+          683961.8322147651
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "39219259-4c80-4fa0-aefe-d9f2eb9d7d24"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          51143937.80267558,
+          128101416.21070234,
+          41350171.49359729,
+          100481091.95359471,
+          88124164.18272425,
+          209359777.57142857
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3961d120-d24f-4ed8-b381-2f1f8f8e1ffe"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          43.10596026490066,
+          230.0662251655629,
+          43.077273700821216,
+          244.4818423946189,
+          102.79598662207358,
+          341.40802675585286
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3999f781-b111-4b2f-8a94-a7579a0f7193"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1078.4966666666667,
+          1032.64,
+          899594.4166953568,
+          1043.3665953760544,
+          122768247.90515807,
+          1090.079734219269
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "39ddcbb1-e292-4246-a52c-f70f74902cef"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1563.2366666666667,
+          156.97333333333333,
+          47666.34583263206,
+          1666.479041689934,
+          904062.9266666666,
+          27596.296666666665
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "39f75ada-0cc7-4f4c-929d-85c7a4901186"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          14330.26,
+          114.13333333333334,
+          109541.15323081461,
+          104.0290504425257,
+          654263.4066666666,
+          183.71428571428572
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "39fdfad7-8e05-49c4-8685-43b0c2aecd2a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          282.7,
+          288.8066666666667,
+          293.5423616822261,
+          309.18694706880706,
+          314.2837837837838,
+          338.83720930232556
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3a0003dd-c73b-4e06-926a-62861f7d493a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3a65bfbf-21dd-45d2-acad-980c6f61cfee"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          8.593333333333334,
+          52.376666666666665,
+          8.42373463620696,
+          7867.996300949721,
+          9.252911813643927,
+          1492869.4575707156
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3a795c56-2d2b-430a-94f0-be94d9a6a76e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          6.357615894039735,
+          0.6703456137870344,
+          5.1502435371516215,
+          121.30948419301164,
+          68.80366056572379
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3acbcb54-d600-4814-846b-7caf21fdb435"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          368263.438538206,
+          314262.62790697673,
+          781252.4048744673,
+          376955.50259520893,
+          5486441.65448505,
+          13670943.306397306
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3ae1bb23-291f-45c9-8da2-4f36c076973b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          135.03678929765886,
+          175.9665551839465,
+          129.0695901203975,
+          167.45435353516663,
+          157.39333333333335,
+          196.34666666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3af45187-c28b-4e1b-8403-dcd467f9a92d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          42182608.943333335,
+          166300821.03333333,
+          25161134.839021653,
+          112232023.07549949,
+          94237013.57807308,
+          433174842.9302326
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3b4cef24-edd8-499b-82f4-71f9c0212321"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          14124.91973244147,
+          4489.715719063545,
+          12980.048307605874,
+          57363.82984850478,
+          818000.900332226,
+          979997.201986755
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3b63449e-d8ff-4c0c-ac63-6075fbcb356e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          324290859.4633333,
+          273047310.67333335,
+          197233473.22651523,
+          349465182.6900055,
+          523102825.1229236,
+          1440291284.9033334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3b687c63-129b-4fac-aede-1c84a9103aad"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          560777.9335548172,
+          725375.8837209302,
+          573688.9628169074,
+          1246944.6976928888,
+          2642528.2483443706,
+          14219475.51655629
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3be74e6d-2bc9-41df-b4aa-3dca92bf90a7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          962394717.64,
+          1248451841.3933334,
+          528807911.06025344,
+          931552879.5260607,
+          2304364765.866667,
+          2248184196.6112957
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3c5bc75f-4bfd-4544-93e1-93697d1b5393"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3c691b34-5d5c-49eb-8d74-07ef1bc21a37"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          4348.296666666667,
+          20031.05,
+          3757.48448603519,
+          20189.98548277734,
+          6888.023411371238,
+          36892.136666666665
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3cd7a22f-5f82-4573-8d52-a9ccfd6613ea"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          877617.72,
+          512249.3433333333,
+          10295189.004267316,
+          556618.7091819847,
+          109693171.53333333,
+          1360037.16
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3cda8a29-37e0-4259-ad2b-10742ef98987"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          15.785953177257525,
+          2295967019.602007,
+          15.39914566220831,
+          3687297996.800856,
+          17.613333333333333,
+          8587384547.280936
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3cf306a4-2eaf-4ae7-8dfa-29fa749010b4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          828282.9433333334,
+          20247650.346666668,
+          16482714.047281472,
+          4567526.024516671,
+          44620456.31333333,
+          49915332.95348837
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3cf3aefa-9960-47e0-b8c6-ad9b8e3d1190"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          96136203.94983278,
+          334385642.31103677,
+          90327988.15551807,
+          187679910.8622398,
+          173526979.98333332,
+          377273311.5733333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3d1322b3-bb1a-4d2a-b0c0-069f6f8c3264"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          106.3953488372093,
+          853888294.5614618,
+          132.32317438762686,
+          347603490.8180745,
+          434.3466666666667,
+          1482962126.82
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3d1558ee-e2a4-4ecc-aebf-cd720839816e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2182721669.1438127,
+          4150479432.0936456,
+          1822157280.8209271,
+          4362004270.034133,
+          10850146198.100334,
+          7451304009.779264
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3d294ddd-c1f7-464b-a68e-496c24185b56"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          586995.8866666667,
+          2825173.4133333336,
+          2634732.219868097,
+          4139797.742313823,
+          55740318.24916943,
+          21881160.66
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3d67f605-1196-42ea-a968-403953b3b4d7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          622.4633333333334,
+          263.5966666666667,
+          1152.1653494745167,
+          283.5744114569728,
+          3635.2029950083192,
+          390.27
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3d795236-0bc9-4c0b-9b7e-4c56f50b9826"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1296.8160535117056,
+          1051972298.1404682,
+          1493.575405387608,
+          1404620345.8418117,
+          1937.4867549668875,
+          4546793391.546667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3d9cb1c6-027f-4d95-9a74-0f53d9872bf0"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          9969574181.866667,
+          14383942297.55,
+          7511016963.729097,
+          13274206785.910578,
+          16821685338.47826,
+          22443423581.26159
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3e75c7af-7253-4f8d-ac4a-959bff2e8162"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          6588431729.693334,
+          1086556132.5966666,
+          6674239459.184336,
+          1254355648.0547702,
+          12266235584.46,
+          3432779265.3766665
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3e82f4ab-f77c-4ea7-98b4-69189ccfd08b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          5776598135.4381275,
+          7196338831.411371,
+          5547868381.541273,
+          5994142573.545223,
+          13018677028.02649,
+          16882326469.886288
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3eb5830f-634e-4293-9fc7-55a3dcbb18e4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3f1a013b-8d15-41ed-91a3-e852f9529b19"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          201013.3122923588,
+          467.687707641196,
+          535222.3371775055,
+          465.2058074480426,
+          10717756.099667775,
+          1383.6
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3f1c0443-a1c9-4a6e-baaf-1c5630bd9a3f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          5.68561872909699,
+          0.0,
+          5.332395784679683,
+          0.0,
+          5.966442953020135
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3f215178-a475-499a-b9c2-e7f422af6f56"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          32.776666666666664,
+          56.31666666666667,
+          33.36643832716745,
+          3547.8474080114142,
+          35.18543046357616,
+          997016.3733333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3f23736f-1a0e-49ed-b650-9e8e40f5668c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2337711.3866666667,
+          1405485.29,
+          6182285.499461843,
+          6915397.299867943,
+          65492964.306666665,
+          78482457.20598006
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3f3093de-461c-4559-8dd2-fe8ea7e7b4ac"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          5484614.205980066,
+          0.0,
+          5278865.52339851,
+          0.0,
+          13975254.41
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3fc038e5-7e9e-4969-bab9-dd92030d8a4c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          297062624.7033333,
+          257739448.18,
+          234441298.00807053,
+          205498772.87914807,
+          417522523.49333334,
+          324887806.4285714
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "3fe0469d-f339-4859-a9f0-879cd115dd55"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          313994.4633333333,
+          213267.67333333334,
+          336233.80120248324,
+          2444939.20399076,
+          839724.2566666667,
+          51694626.91
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "40573045-0dd0-4623-a68f-36044ba8523c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2806.969798657718,
+          50776156.32214765,
+          2713.8961248887617,
+          50672993.31548949,
+          4937.04347826087,
+          72855146.76666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "40792b2f-837f-493c-94a9-1a99ad9342ea"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          877435703.1933334,
+          362776319.45666665,
+          616744950.7132719,
+          325224837.2269085,
+          1048417790.7707641,
+          541071663.6923077
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "40bb5a5c-adba-4607-b39c-9d9597d1ab53"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          971.8039867109635,
+          611.1827242524917,
+          1077.7023071564188,
+          1369.9023910823666,
+          1713.44,
+          37118.94
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "40d68758-67a3-4aa7-8b9a-308698a0c96f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          489.57,
+          171.47666666666666,
+          489.09097058731516,
+          173.363271611477,
+          494.33110367892976,
+          189.95
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "40f1ef9e-5fcc-4cfb-b0cc-01a406ab5a0a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4118479e-f597-461e-8213-e4213301a0b3"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          83.91362126245848,
+          632.6279069767442,
+          85.18448156847225,
+          642.9309144220058,
+          110.95666666666666,
+          1793.4433333333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4131122c-3646-4d48-a141-9fcc09ea3d82"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          95556416.56478405,
+          12104393.750830565,
+          66548026.41436614,
+          16659284.080883803,
+          107816567.36212625,
+          77383841.06688963
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "413f5dcd-71f2-4eb8-abd9-2110fe993351"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          426.7190635451505,
+          743.9063545150501,
+          678.7064102369435,
+          906.9963854331083,
+          68614.6245847176,
+          2197.170568561873
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "41479a30-9611-4916-b26b-e85a5284458c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          303.5233333333333,
+          256.05,
+          313.2560740948868,
+          254.1115453328691,
+          1605.160535117057,
+          256.2591362126246
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "419195fb-dcce-4588-a5fe-f7e95c69c6f7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          363176.14,
+          40660.176666666666,
+          484989.85851940804,
+          56772.60659774299,
+          13233985.666666666,
+          1907205.3166666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4198f124-51f4-41bc-9759-dca44d793ecc"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.3588039867109635,
+          0.0,
+          0.43186916309795553,
+          0.0,
+          0.5454545454545454
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "41d6eb6d-7112-4a7c-a7fc-715040ac6199"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          102559.19,
+          3842.443333333333,
+          794953.0613127013,
+          6426.134921452588,
+          22567062.66888519,
+          91455.76744186046
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "420a7118-5bcd-4bf8-9f9a-2f5deb5fd3e7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "422233ff-182c-4e42-9498-a4b305169b89"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          27.406666666666666,
+          23.723333333333333,
+          28.319388673680457,
+          24.40363548874817,
+          30.07308970099668,
+          26.53488372093023
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "423cf5d9-086a-4edd-90af-3a2c970a5314"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          23.773333333333333,
+          24580699.026666667,
+          30.281555440769427,
+          49268082.47568609,
+          295.49,
+          203701090.30872482
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "427e94ed-8c99-4a0e-aae4-b8e8dca5c2b4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          302.4214046822743,
+          266.3578595317726,
+          46745.50180211511,
+          574.4784758988324,
+          1295447.704318937,
+          11854.290969899666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "427f1af0-ddd2-4a15-bf80-1edcc8f07057"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1358.9166666666667,
+          433.9766666666667,
+          931.6062071812272,
+          428.64999101939827,
+          3126.3433333333332,
+          1590.8145695364237
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "431944c2-5b39-43b8-ba84-f4140db6252f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "43367b26-0a2a-4f38-84ad-453522b049a1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          7321058.066445183,
+          81669088.14285715,
+          8952252.772401001,
+          80090034.40769401,
+          24575126.279069766,
+          188399156.60535118
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4354685f-d1e0-4c87-a92e-e490ab6c6647"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          114.43189368770764,
+          6286261.481727575,
+          145.1493821701583,
+          11705079.84170648,
+          204.28666666666666,
+          18436082.953333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "435cab2c-b6cf-4b6e-a33c-ec9a3f9e83b9"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          215566.92,
+          183988.34666666668,
+          216484.43429562164,
+          184758.88305032393,
+          232522.8073089701,
+          203552.04983388705
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "436002e6-83dc-403a-9b26-3d0618a7595e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          5777048315.745819,
+          4421733800.428094,
+          4629914530.528757,
+          5398443579.267957,
+          12401149674.152824,
+          11221684013.146667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "43b33ee4-e828-42a6-99da-77c2c84d8f5d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          52967261.800664455,
+          150099656.46179402,
+          77010055.90903224,
+          58939170.38516692,
+          211656017.78,
+          234719288.74418604
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "43c0d2fd-e899-48a7-90fe-6d9a2d8fe91c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "43d11dc8-16c5-4132-977a-e957d56de5fd"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          522695536.43521595,
+          90246524.42524917,
+          471336996.5212238,
+          83545882.04413858,
+          752853036.9666667,
+          153638043.641196
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "43ffe391-ebc6-47c8-bcad-7188b38b05e9"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          28070.504983388706,
+          17118.10631229236,
+          28944.391508223318,
+          17988.598993875334,
+          33585.90365448505,
+          25092.518272425248
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4422026b-b5c4-4dde-8ce5-45bbc170b8fa"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          771.2466666666667,
+          3.18,
+          667.9590500735252,
+          4.010146572149435,
+          1088.4518272425248,
+          6.58
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "442e145d-72c8-46a8-9235-10243125b0cd"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1131075.55,
+          1519915.8566666667,
+          751039.1907665512,
+          1135824.3869271348,
+          1686431.4066666667,
+          4915998.6
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "44620c82-68ae-4fc7-992c-7fd1368dba5b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          44545.736666666664,
+          9404.893333333333,
+          36599.194711537355,
+          10368.53760876184,
+          69587.4584717608,
+          30237.876254180603
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "44da7eb4-a406-4a2d-81c3-9aed23056a86"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          12.743333333333334,
+          12.73,
+          12.986430622782875,
+          12.986488479380979,
+          13.59468438538206,
+          13.623333333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4511029e-8a2b-4dba-85fd-81c19a239745"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          627.82,
+          557.4366666666666,
+          38140.28602988774,
+          1753.9321703827163,
+          767216.9400998336,
+          63266.48585690516
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4524394e-b166-4b9a-b43e-534663d73aa3"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2995.275747508306,
+          18347.687707641195,
+          3043.5681757478396,
+          16709.86666551891,
+          7767.591362126246,
+          34214.857142857145
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "452535d6-c624-462c-a6df-632141afaba4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          14742718320.588629,
+          10140489914.220736,
+          13470633387.968552,
+          7615598108.611329,
+          22784895023.20266,
+          16890158325.827814
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "457783ac-46db-4652-8548-a4716b496540"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          484262.53846153844,
+          947201.0234113713,
+          882083.8330563082,
+          824731.1365395859,
+          41725627.82,
+          2282992.700996678
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "458dc566-c365-428c-aff3-be772e147f88"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          427.19,
+          412.3566666666667,
+          416.5726758372599,
+          404.6511121187582,
+          487.9033333333333,
+          464.09
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "46284a44-4369-4f04-96f0-6e5f3c9d2c55"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2551956506.33,
+          1505432704.8333333,
+          1204098954.4851372,
+          2085352536.687182,
+          4925804774.513333,
+          9288586386.890366
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "46c8f60b-4d9e-4a13-902c-c8cd3ea1fe7a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4755c37d-f858-4cb4-9d34-d877df5e359a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          7363.07,
+          1657.51,
+          7456.218385130693,
+          1532.1199746846505,
+          25789.033444816054,
+          2160.3411371237457
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "475970dd-f379-4b8a-87b9-90d8a0d4669c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1144686336.6533334,
+          24258184.066666666,
+          888145685.4405817,
+          87632945.2633508,
+          5764884466.1381035,
+          3706616791.148148
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "47852c3f-1835-4d20-b57a-075fbb3da811"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.6833333333333333,
+          14.04,
+          3.707771675338209,
+          17.116085384405256,
+          80.7109634551495,
+          46.29235880398671
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "47a6fc09-7235-47e3-b49d-ea21cefde2ab"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          11128.798013245034,
+          20508.132450331126,
+          11326.719221603054,
+          20534.642840917197,
+          12285.536666666667,
+          22825.433333333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "48b43226-341c-43c9-982b-d07f511541bd"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          94.54333333333334,
+          57.62,
+          86.15318367963889,
+          58.45655733388118,
+          131.74916387959865,
+          62.31456953642384
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "48e4f694-bb38-4431-83e5-dc5f2c2346a3"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.4533333333333333,
+          214.16,
+          0.28587386521031877,
+          173.3312909953409,
+          1.1066666666666667,
+          219.33277870216307
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "49072222-cfac-4efd-92aa-e73035815706"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          132111132.75415282,
+          686118129.7574751,
+          103988627.49198271,
+          520462463.0668034,
+          196640274.85,
+          1187611601.358804
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "49218421-3532-441f-9762-9d7c2d0772dc"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2.46,
+          0.8533333333333334,
+          1.4061777384068226,
+          1.012103352104462,
+          3.1,
+          1.5033557046979866
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4928ff63-df00-43ec-a90c-97fee746e9fc"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          83928770.77333333,
+          9463073.053333333,
+          30480014.69490306,
+          3549811.906442256,
+          110635036.03322259,
+          13366094.903333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "494a706e-d295-4626-8e3b-986d3104d773"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4952cd4b-c119-434a-a775-8eea4c7553e6"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          4927753.535117057,
+          366784628.5150502,
+          2931634.7551423227,
+          237260155.19322345,
+          8061317.506666667,
+          396779750.46843857
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "49582058-887b-46af-a913-9be8bc6674bc"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          332498.8933333333,
+          711899.0433333333,
+          786921.066474644,
+          1007459.1174307244,
+          7897482.033333333,
+          20089045.88
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4976dd5b-356a-4a21-b109-0552262620f8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2746.47,
+          4416.5233333333335,
+          3320.398424473138,
+          8533.106230520636,
+          99135.5049833887,
+          286633.4916943522
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "498dcc2a-482b-4c6d-b1f9-d3c0406c97ce"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          292793315.69,
+          121751352.99333334,
+          204432288.45693418,
+          80560705.79209784,
+          1569419244.54,
+          249726453.61
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "49b7f45f-5da3-48c9-8e23-101b41c1bb68"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          23.16,
+          194.65666666666667,
+          18.648359626399213,
+          134.08534449770787,
+          23.35333333333333,
+          266.7321131447587
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "49d06c0b-caf2-48bd-952a-a1f192690888"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2981932354.386667,
+          1430199789.8033333,
+          2362555559.0391035,
+          1239040005.9651597,
+          3768995155.98,
+          1838167697.3887043
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "49dff6cd-fac0-43c9-949c-1382db927bf5"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          52296.39666666667,
+          3767.88,
+          7814.458671976122,
+          73754.36407304804,
+          117288.68106312292,
+          2423768.1480865222
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "49faeeef-7c99-4043-82ac-c58fc12cb751"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          81565711.60666667,
+          668.5733333333334,
+          85187352.43828772,
+          18019.271026151902,
+          553865273.5681063,
+          3314693.9468438537
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "49fdffe9-2dae-4aa1-96fd-47938a90e6e8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          11628.146666666667,
+          719.59,
+          1674.2404216722075,
+          147481.29589142866,
+          37405.62895174709,
+          2301176.783333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4a4ae342-0a6d-4b26-a2ca-4d2caf9f5301"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          36489411.733333334,
+          54848104.906666666,
+          38001929.42302824,
+          62924214.23099744,
+          161426698.86,
+          91680142.87666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4b0a013b-0ace-45c8-8d22-a753cbb9b911"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          252.2325581395349,
+          252.2624584717608,
+          252.6346638168183,
+          252.71803170500885,
+          255.4046822742475,
+          255.43478260869566
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4b3f8013-ae4c-41a6-aafc-d4c8e2370559"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          91813304.96666667,
+          199665327.43,
+          129401484.53172286,
+          167603393.82126045,
+          3213062114.732673,
+          2489238591.4080267
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4b49ec90-c550-44ba-8f81-93c90466a11d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3133.076666666667,
+          3670.3866666666668,
+          1917.5377012014362,
+          1962.4477585478999,
+          3545.0133333333333,
+          4012.6133333333332
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4b775653-bc38-4802-a916-730c46d58ba4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2146.7466666666664,
+          72103321.72333333,
+          1926.8234689939718,
+          71687833.13360773,
+          2603.3933333333334,
+          99812459.18729097
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4b95fe57-65f3-4704-9659-8aef879ed66e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          151.06666666666666,
+          151.88333333333333,
+          172.18615039872014,
+          172.40165867947448,
+          207.16,
+          207.82
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4bb947cf-76a7-46a7-bd25-badbf401c0be"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2208465860.133333,
+          509035932.37333333,
+          718876350.6693395,
+          214166666.83374417,
+          3152431098.8046355,
+          948381699.4766667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4bdb4f3a-5ee3-4107-a444-067735a35148"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          7899691377.063123,
+          2943918208.69103,
+          3672809289.3079643,
+          3427262584.2818155,
+          11029550408.240803,
+          8135269523.136212
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4c86107a-e6ec-4d6a-869a-19275e40aa68"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          44.41860465116279,
+          42.42524916943522,
+          44.66651104221565,
+          42.87082672749114,
+          45.458471760797345,
+          64.7
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4c8a1b3a-3970-4cad-9d23-99d83384d472"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          371028215.53333336,
+          24953617.583333332,
+          465248406.99846524,
+          81516933.29142348,
+          1478310785.29,
+          2616892348.636667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4ce9fda9-fe3c-4e59-b61e-7969f7612158"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4cfe96b7-aaa1-4ead-b11d-d4b83b3513a7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          7191390511.677853,
+          5779752943.677853,
+          5993896792.402166,
+          5547706554.57467,
+          16730558925.076412,
+          13075555485.546667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4d08e5f8-3781-4c41-a0cf-3690c854ee09"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          104511.53973509934,
+          84997.3940397351,
+          109208.01869792148,
+          90428.77352779491,
+          133402.17275747508,
+          113859.18936877076
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4d511273-6029-47b2-9156-9eb8c2549a1e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          25159530.76744186,
+          176450.45514950165,
+          5655419.721181002,
+          978286.4960888374,
+          35159711.96666667,
+          24962249.658940397
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4dd59270-a093-4653-894f-8d40ba062f34"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          14238600.849498328,
+          1034234373.9464883,
+          12278593.94481086,
+          1385917929.2456317,
+          40025431.37209302,
+          4504163268.69103
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4df37c5f-8204-48a9-ac3e-61e22d14802a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          206258.65551839466,
+          48555.36789297659,
+          51434.77563599644,
+          369978.83011624654,
+          298860.5719063545,
+          6797347.45
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4e06a01f-5846-4c43-ada1-2ccab8e26253"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          710.0602006688963,
+          12723387.538461538,
+          690.5932536680018,
+          21201010.434982255,
+          1206.7142857142858,
+          34863511.36333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4e28d59f-ab63-47d8-a854-77e8f4cfffcf"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          370.1262458471761,
+          13129700.760797342,
+          411.7662320966452,
+          8994113.845734626,
+          579.0966666666667,
+          15214499.86
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4e2e08f4-616f-48ab-9e7f-b94f5dc579fc"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          34162699.876666665,
+          34950203.35666667,
+          18786961.840944916,
+          17540117.29462975,
+          45766710.993442625,
+          60014075.87086093
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4e3e39df-9882-4b0c-abf1-27a14e6c9c76"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          50142844.14,
+          184149.03666666665,
+          44077647.64249422,
+          95378.07986393193,
+          110582488.33887044,
+          919869.5033333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4e849a9b-4a32-4c0c-b98b-b62354329bad"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          86735.95333333334,
+          286287.1,
+          107362.3718143925,
+          350111.0295594241,
+          615477.7703826955,
+          3677802.47
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4eadbe20-6069-4885-a3ee-14e630f00e46"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          137.2682119205298,
+          72.53311258278146,
+          138.37822987966564,
+          61.5063250970417,
+          140.72909698996656,
+          81.7820299500832
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4eb79c4e-640a-4266-a90f-3e52d72bf8d5"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          336.06666666666666,
+          303.98,
+          338.0585718033724,
+          305.76649910234363,
+          420.93666666666667,
+          315.33444259567386
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4ee20c3c-69b9-488a-8459-ec69800600eb"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          101.71,
+          72798.47,
+          66.51984087013658,
+          62950.7260262454,
+          407.89666666666665,
+          521647.415282392
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4f096f84-b7f1-49be-bf85-cc5b4f6f03a2"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          15233.73,
+          4817.87,
+          19233.54191234643,
+          4887.946226024037,
+          37306.51,
+          6464.102990033222
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "4f9a5909-fbfa-465c-b264-f8101f82774d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          7647.003322259136,
+          2788511514.604651,
+          8373.996362476137,
+          2094571769.563428,
+          11743.651006711409,
+          5861480448.613334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "503f0386-24c9-465d-91b2-dd1ca7172654"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1254325.5466666666,
+          21474294.5,
+          9748866.2838011,
+          35385440.370221004,
+          187794805.82828283,
+          68690580.28571428
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5044ca4d-2dec-4fd5-9b9f-cc444b18ee6d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          9853185930.346666,
+          2592999139.9733334,
+          8885055716.451622,
+          1762646937.816577,
+          16873468919.388704,
+          4425651692.83721
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5091f195-6143-4b73-8651-6814fb42f77d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          38.24,
+          601.2233333333334,
+          64.39598220734736,
+          77315.1231342355,
+          915.7133333333334,
+          848850.4566666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "50bf3f31-b635-4399-9b10-617b60f4995b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          86594.29235880398,
+          4207.56146179402,
+          817083.1759803649,
+          3812.4844255610915,
+          33083079.23920266,
+          89189.71333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "51de3c06-8d66-452e-a07c-d224108099bb"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          704.8476821192053,
+          715.5132450331126,
+          3836.7780796151164,
+          243492.6976436456,
+          64423.32,
+          6089773.404006678
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "51e0759a-e87b-48de-8287-5102cc44715c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          85317642.22742476,
+          42809967.384615384,
+          96051752.50670414,
+          24349606.575855184,
+          235387865.61129567,
+          61099798.84
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "520484d0-2bdb-4c3b-a340-cc4dbd0f2e24"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          29869059.804635763,
+          26291010.794701986,
+          24855689.322084647,
+          22174973.370116983,
+          850863077.4266666,
+          97064493.77740864
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "520b4d86-effe-4f0a-b203-37e8480b2da2"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "52cbff63-5e9e-449c-a1ed-c949a411e48d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          260457071.23666668,
+          664764752.3433334,
+          357907214.56276387,
+          553899481.3444394,
+          791537955.019802,
+          1527095230.7275748
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "52d3dbd0-d095-49a3-b422-f3644a8c4edb"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          18964.643333333333,
+          29987.9,
+          19375.7417584052,
+          30613.3890228078,
+          25397.94,
+          37518.83
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "52e664c9-4551-4854-9da3-3c0f1309b148"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          316671128.9866667,
+          147691044.42666668,
+          242745093.07711115,
+          195145346.8231264,
+          441686574.7090301,
+          365057675.72333336
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "52e9f1a8-1a5c-46eb-a60b-48812e9be2e0"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3.96,
+          6237.336666666667,
+          691737.1847164603,
+          225324.559186096,
+          20572743.583333332,
+          21080411.784053154
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "52eacb7a-60b9-4203-97bf-677e4cc06f0d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          35.3,
+          716.5733333333334,
+          35.241976225378295,
+          676.3138006901729,
+          35.60797342192691,
+          819.2259136212624
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "52f9003c-1b2c-4db7-99f4-124cde623974"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          116206061.17333333,
+          157266.46333333335,
+          358857948.00386125,
+          2659948.2186579257,
+          623487681.6433333,
+          4797576.8311258275
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5318fb3e-a100-47d2-9bcc-62cd76321c12"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2247687055.67893,
+          1204069051.8528428,
+          1721900991.031365,
+          1630728426.912438,
+          3707470714.285714,
+          6254245203.70861
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "531c2a7c-d566-41ae-b14e-078b0d1c1af6"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          80653742.90365449,
+          15428018.720930232,
+          90047256.68552227,
+          11519808.713516498,
+          213082165.77333334,
+          26461023.276666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "534d1155-56fa-41a4-b767-e68448cb4970"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          5.793333333333333,
+          55.32666666666667,
+          5.918808681703956,
+          42.88775382992775,
+          7.624161073825503,
+          58.24666666666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "53699a26-68e3-4d8f-9c7a-d7349b0e8ee0"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3112434.6,
+          3193008.723333333,
+          12903949.714270188,
+          12982301.426905138,
+          114823671.58,
+          114816514.49
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5396cbf4-49c3-4f23-aaec-d2f808b22073"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          152025165.01666668,
+          679037819.9933333,
+          112606244.06049603,
+          492459683.6273394,
+          199728826.39202657,
+          1286377559.97
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "539a5eb6-04b1-4e04-b3e2-399d0c33f858"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          5139435559.23,
+          1480620392.79,
+          3667164921.0327497,
+          1179288574.5752034,
+          5908647979.146667,
+          2947708570.13289
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "539fe189-90a4-437f-b047-c76e05d2b736"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          371753076.3666667,
+          124246054.90333334,
+          168394607.48971543,
+          109180316.52518721,
+          463795280.1295681,
+          220066137.04333332
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "53fb0ca0-c2ca-40e4-a429-215cc613ee75"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          10986210130.408028,
+          5222732564.173913,
+          9978551831.584084,
+          5044366374.441775,
+          16272716701.92,
+          11762707750.773333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5481f2bb-0ac6-46e7-8c6a-38ce8730ab3a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          333.9297658862876,
+          217.74247491638795,
+          337.4220683337895,
+          218.4412679529515,
+          366.92255892255895,
+          228.5921052631579
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5496fbf5-74d0-497c-af42-3b79d94646e1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          266.63666666666666,
+          266.0933333333333,
+          266.6251770239664,
+          266.00081542113236,
+          289.8936877076412,
+          289.1129568106312
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "54d55066-809b-44a9-901d-0b4a96a9b5ab"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          137.2682119205298,
+          73.46688741721854,
+          138.38592217579787,
+          62.46559963019988,
+          140.72909698996656,
+          82.78036605657238
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "55093fa1-130d-4b34-831b-40bc17204434"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5513e63a-8be0-4e31-9e4f-f166d8ba8537"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "554ef71b-a308-4289-9af0-6d54623c6333"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          408362.4347826087,
+          1720880.364548495,
+          1007654.9398135322,
+          1903295.8014643467,
+          11572675.163333334,
+          23531591.133333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "557054e0-25c8-4caf-9530-696d09fece29"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          15.326666666666666,
+          3447.3866666666668,
+          16.211063051422485,
+          10393.472617201352,
+          24.814569536423843,
+          291210.29568106314
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5579c1d1-c3eb-477a-a678-19fccb513243"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          20723.31,
+          642555.5433333333,
+          24472.6287875339,
+          144788.56292344345,
+          124707.88352745424,
+          742037.9
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5595358e-dce2-421d-ab8a-f8d6971a278e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1354452783.12,
+          5985497547.99,
+          1519450517.0502732,
+          6298352098.416218,
+          3810191405.5,
+          11707789740.683332
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "55aa8fb7-4351-4f70-a2bd-940b1623b4d5"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          944508831.8733333,
+          452125443.61,
+          285943224.01209104,
+          516233443.37367576,
+          1480800027.4703948,
+          1838188318.561873
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "55c59749-330b-481d-aa7f-b53563370e76"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          37351.556666666664,
+          35033.71333333333,
+          23189.845633849585,
+          21712.22614935145,
+          38376.043333333335,
+          37731.706666666665
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "567aaef5-21ee-4aa4-a5c3-6d3d9ebc54a1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2715204157.9566665,
+          791328984.82,
+          1883752816.6914072,
+          495100649.4784207,
+          5535370252.182724,
+          1208716651.1866667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5694963d-3223-4280-b235-04d3d6157fee"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          5112762449.82,
+          1473393489.11,
+          3667077586.820274,
+          1179265625.1615543,
+          5908648250.213333,
+          2947708838.332226
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "57098cef-f809-4f64-8ac1-e65c2e4275d3"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          442017459.46488297,
+          131459683.75919732,
+          431605586.4036471,
+          198724217.48128584,
+          1340477495.0633333,
+          1834697559.2325583
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "572a5a34-00d5-473f-8b8b-8ebb9204b63e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1496310916.555184,
+          619782437.6655518,
+          1987980156.7321599,
+          642585241.753842,
+          5143566218.122517,
+          1505111309.4433334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "572fb3c8-7022-42c3-8382-7fd9b0eb3a2d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "578d3bd6-6fc9-4ef7-a7f4-9b83e6af06d0"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "57dd753d-b3c2-4d80-8b18-7ca96e791ea5"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          486571624.02666664,
+          453238332.55,
+          581591778.6193643,
+          671791211.4398179,
+          3759008457.8106313,
+          1839613945.3621264
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "57e18d43-682b-4b63-b1b8-6fcf0ad7375e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          111257744.76333334,
+          608655999.21,
+          138139021.53469798,
+          367110084.38324296,
+          213851517.93979934,
+          642937890.6312293
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "57e4c151-bcdb-4210-b81e-1f6af1f16346"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.4503311258278146,
+          167.04635761589404,
+          0.6243446521311851,
+          156.41745758834907,
+          2.2458471760797343,
+          209.44666666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "58b2496b-451c-4c75-b574-06bd08b4b328"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3106712621.023256,
+          1475459014.0863788,
+          2643511765.3083525,
+          1274623233.5669067,
+          5186252177.306666,
+          1845945641.576159
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "58d81517-ef85-4ab2-90bd-b954de0d97be"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          347.53,
+          554.0366666666666,
+          536.9208285997702,
+          1330.0704126759003,
+          4814.34608985025,
+          6935.159733777038
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "58d9da77-a2be-4a06-934a-41eabbc43e70"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          248937714.07023412,
+          112975428.26086956,
+          221758715.3221598,
+          126700056.47512065,
+          334870303.37873757,
+          265397346.1395349
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "58f59360-f10e-4eda-99e7-d0b494af1edd"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          11.82392026578073,
+          19141079.485049833,
+          29.610825174442756,
+          23425224.22000579,
+          204.13201320132012,
+          25237209.363333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "59014dbf-426d-42d9-a0ac-7ab6ea953a4e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          143564103.21333334,
+          67597565.40666667,
+          83692767.90875374,
+          130084051.7443181,
+          262742125.02325583,
+          1292438428.37
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5953760f-6295-48a3-bcd7-56f80409092f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          19265.535117056857,
+          48026.311036789295,
+          32080.537948951314,
+          380408.2748187416,
+          786191.8033333333,
+          4444263.5973597355
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "599f00dd-75e0-4cc4-83b2-1bb00d3dbb7d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2.9,
+          15.966666666666667,
+          2.909517471593067,
+          15.218674154791803,
+          3.19,
+          17.14666666666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "59a93e23-ce24-406a-b7f0-0ea2a7562855"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          836685.9833333333,
+          289.98,
+          1222236.070096254,
+          288.588361869776,
+          15522258.551495017,
+          291.68666666666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "59b7c90f-2d1e-4776-97f9-6de08e1dbcb2"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          877435707.3266667,
+          362776316.85333335,
+          616744816.5612307,
+          325224768.6502361,
+          1048417794.8903655,
+          541071663.1237458
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "59c46342-d5fb-4bc3-a884-924d9223c782"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5a04dbf3-80f0-4e14-b805-c887c47927a1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2796.6266666666666,
+          4.633333333333334,
+          2814.5588518170316,
+          4.634130952155327,
+          3001.700996677741,
+          5.096666666666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5a0f322f-7364-4428-9c28-dbfae037ee51"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5a743cd3-fb7d-4ea1-9099-bd83a4897a2f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5a7c517a-0581-48bf-92b3-6bca478f5ac6"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2351.2274247491637,
+          4475418.344481605,
+          2730.1776385240764,
+          4979382.938582746,
+          3863.233333333333,
+          31371724.11589404
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5ad22108-183d-4d49-aa2c-edc15ecf2008"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          56589464.96,
+          540092014.19,
+          38692973.75492219,
+          353195168.15978914,
+          105495894.2818792,
+          623628782.5083612
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5bcf72e9-c2ff-453e-9ab3-449f1dc51123"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          18.651162790697676,
+          18.345514950166113,
+          19.30944654795782,
+          19.5072501152268,
+          26.87,
+          95.52666666666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5bdb6856-4078-448f-8589-fef8dcc10717"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          10148711580.16,
+          4234040816.5333333,
+          7276177003.0048065,
+          5582032109.768941,
+          19997231998.613335,
+          12575968849.6
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5bdd1b9c-d46e-400d-ae89-19af288cf1e4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          37351.556666666664,
+          35033.71333333333,
+          23189.845633849585,
+          21712.22614935145,
+          38376.043333333335,
+          37731.706666666665
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5c4f5fb4-f916-477a-8e2d-2f4ee2759098"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1440572459.7366667,
+          1369211190.5366666,
+          1130189771.1097987,
+          1718289334.158014,
+          2862921351.3344483,
+          5045035156.219269
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5c6b0e1a-6320-48bd-b042-8ee96adbaa55"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          5326.473333333333,
+          1070.1166666666666,
+          10247.929139081953,
+          632.0168325670511,
+          1409455.9700996678,
+          6399.189368770764
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5c6b2d3e-6771-46e1-958e-148cc450b937"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          731823992.4086379,
+          33308056.212624583,
+          607564655.8355438,
+          40773299.39504608,
+          1286630683.7209303,
+          89462837.67558528
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5ca32973-71d2-4001-a98a-de0d5ce4fc63"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          671057.75,
+          1246338.6266666667,
+          669379.9569552173,
+          1233442.396916238,
+          782907.5366666666,
+          1950299.5049833888
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5cb191e2-4708-4133-8f4f-a6b9a56305ed"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          387430480.08666664,
+          157948622.58666667,
+          241762838.81838787,
+          177588936.01669943,
+          468570643.50666666,
+          341883739.51495016
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5d29ec85-4dbf-4b58-812c-d6b8b5cea92d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          161.88628762541805,
+          299.38127090301003,
+          146.0740205959448,
+          352.21315246130825,
+          203.67333333333335,
+          9820.44
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5dcdb879-3ad3-4f22-b310-c746d129f839"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          492.9202657807309,
+          1441.671096345515,
+          522.7647605151982,
+          4640.46754250527,
+          1407.45,
+          301154.9401993356
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5e73dd25-c9b5-430e-ac21-cd8c4c09ed13"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          231.11666666666667,
+          92.57333333333334,
+          396.1807543062912,
+          119.19801052914737,
+          1483.3233333333333,
+          326.7157190635451
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5ea103fa-88e1-4f5b-9471-2948d0559b08"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          6821.8394648829435,
+          3935.367892976589,
+          10683.520306968114,
+          5100.658192264346,
+          715825.94,
+          58672.41
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5eb259ba-53a9-4e31-91d7-f3136aac9aab"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          34162699.876666665,
+          34950095.25666667,
+          18786962.262243852,
+          17540007.586353123,
+          45766710.993442625,
+          60013955.80463576
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5ec1ebab-ecb8-4969-8652-6c696851a063"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          157468727.68666667,
+          504679416.31333333,
+          164235613.3196041,
+          463880110.69983554,
+          4097224835.1893687,
+          8852999654.435215
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5eed4367-d2e9-441e-b825-638b6b41e91a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          410.6766666666667,
+          422.5933333333333,
+          404.65209069133755,
+          416.57277344385733,
+          458.00333333333333,
+          481.44666666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5f30d7c0-b8d2-4f3e-abf1-0a2e1b19f280"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          248026811.87333333,
+          597051785.8166667,
+          534797443.73905325,
+          373769847.7258195,
+          1546049398.4682274,
+          1024856092.0132891
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5f46fcf2-facf-4544-b989-84dd78515b34"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          282.3545150501672,
+          170.37123745819397,
+          279.41687251651837,
+          165.4616758072467,
+          314.3164983164983,
+          175.11960132890366
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5f6fe82b-6979-4bf2-a852-b81cb1a104b2"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          4647.6,
+          4950.183333333333,
+          4458.8463566913,
+          4764.766936961519,
+          5030.581939799331,
+          5354.431438127091
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5f8e4602-2fb8-4c07-91f0-47fd237874db"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          116206529.47,
+          157795.20666666667,
+          362310368.96858007,
+          2663972.3786452557,
+          623488151.4166666,
+          4798101.32781457
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5fc2b664-0190-490d-8bb8-3c88175d267d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          416.76490066225165,
+          308.19867549668874,
+          442.491688012062,
+          587.2539794413475,
+          1918.5766666666666,
+          24518.826666666668
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "5fe0fc36-a470-4f12-83b1-02a2ed2b0042"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "60bfe66b-a9c4-485b-8e23-2411c90179f0"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          138012.38333333333,
+          1705.9866666666667,
+          299455.2039454462,
+          5247.743233214847,
+          1960255.3677204659,
+          34632.41196013289
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "60cee9da-b952-49dd-a46d-4ae990d2c92e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "610e0c6b-02f6-479c-8df4-a954f5960975"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          16.864238410596027,
+          0.0,
+          16.67705441923071,
+          0.0,
+          18.45847176079734
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "614ff2fd-99a8-4451-a4d9-a6cb6dd21be7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          505794.5618729097,
+          11909962.682274247,
+          10247852.902982831,
+          22345390.955794193,
+          143696795.21333334,
+          125887932.16835018
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "618967ae-7cb7-4440-af58-bc5c1c87becf"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          17962768.343333334,
+          7143316.366666666,
+          20867628.970115226,
+          19760635.49564166,
+          50407740.47840532,
+          82930250.37666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "61f45093-67ac-4261-967e-c27721b127d2"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          106990492.95681064,
+          783911.1860465116,
+          368317769.24790025,
+          7439184.396822032,
+          644477449.5233333,
+          49197607.96345515
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "62520bbe-774f-4d47-9ed3-c8572be551d5"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3860986925.5466666,
+          1558670768.8533332,
+          3423665218.960736,
+          1912634179.5548112,
+          13346689646.24,
+          5177759864.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "626d1035-cc8c-4d04-b1f8-d83ee5e2294b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          46121589.82666667,
+          305030641.13666666,
+          59749668.3183789,
+          208446528.71440387,
+          390646965.99,
+          393548000.36
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "62bebeba-9d0b-4cd2-b043-eddcba0f45a0"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          144931670.05315614,
+          154949669.55149502,
+          180731868.43257388,
+          166629053.45271668,
+          372834016.64,
+          366688032.79
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "62c2786b-5087-475d-b82c-08681a4a7e5f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          7023384.56,
+          23539420.83,
+          12655680.149855472,
+          18091702.116718054,
+          94795812.34883721,
+          102213778.35880399
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "62da0b17-5cf1-43c3-b882-2789a00a949f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          62427210.75,
+          90901397.15666667,
+          36941313.49742085,
+          44140938.85466495,
+          104940615.34333333,
+          164193715.42809364
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "62de5e96-007d-49e3-bc14-a6dc4aa4358b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1313.4166666666667,
+          1978.4766666666667,
+          186825.73713445046,
+          642022.6065154235,
+          35303115.67166667,
+          79995261.51666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "62f0b62d-ab89-48b5-9fb9-e8248b721d81"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1375839794.8933334,
+          1337462105.9466667,
+          426192867.15930957,
+          802028871.8974743,
+          1909346449.7266667,
+          1378353152.1866667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "62f70f04-2a06-498c-81c0-7fa7202a68c9"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          365638.07947019866,
+          9827.3940397351,
+          454937.56993699056,
+          9915.86548037418,
+          7003426.817275748,
+          184407.76158940396
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "632286fd-79c5-4541-8e87-bca20782af51"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          645280559.6533333,
+          945847886.1833333,
+          439095166.10162985,
+          1240319857.360872,
+          774433119.8160535,
+          3577280650.0465117
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "63614065-ea3f-4734-8607-05873d8ed563"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          4.1,
+          5.3,
+          4.30955683819992,
+          5.535758227162673,
+          4.657237936772047,
+          7.123128119800333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "636b6093-7ae5-4d20-803f-eff875a1386f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          70.28,
+          0.0,
+          70.8005126472683,
+          0.0,
+          75.32225913621262,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "638759b1-1bb4-46c0-b47c-2593a90333c3"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          129603496.71906355,
+          590511.5852842809,
+          47444537.021409735,
+          4975998.923619293,
+          466881264.37123746,
+          51132525.59
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "63b6a84f-c1d2-4c8d-aa9d-9b3eda14e6fd"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          112558692.55333333,
+          185697970.68,
+          78183314.10821716,
+          144126096.72902006,
+          161978297.83277592,
+          238809571.95
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "63b83d3b-216a-488f-89e7-d9dfcd2998af"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2046814.8433333333,
+          28755820.123333335,
+          2684802.5680675656,
+          9823980.7037567,
+          26383495.73089701,
+          42119936.053691275
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "63d1ed0b-87f7-4523-827b-b492068584cc"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          952982880.7166667,
+          1196964594.17,
+          717195877.6096578,
+          1059373919.1198398,
+          1364997677.1827242,
+          1701067428.48
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "63d24ad4-f10d-40a5-9870-8fb7db3bf9cb"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          5305.85,
+          1443.9,
+          7874.8118604406845,
+          1437.3358364637365,
+          741981.1926910299,
+          9439.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "63f6f98e-ecd7-481c-a424-3f95bc39e699"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1903.6212624584718,
+          749.843853820598,
+          5872.092363931361,
+          804.7936085631707,
+          28012.833333333332,
+          1476.3355481727574
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6406dd0b-2085-4f17-a237-aced710c1c7b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          9004208.38,
+          7889214.12,
+          26886316.91895671,
+          14955701.17220974,
+          43915848.89,
+          49249500.31229236
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6432dc8e-4faa-42a0-84e9-0fe95ce17715"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3539357959.063545,
+          4176461425.1772575,
+          4573271116.018372,
+          3376497909.048787,
+          10596561396.213333,
+          7540532662.046823
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6434c00d-099f-4d24-8eb2-5fd9a8514cb1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          3298767.212624585,
+          0.0,
+          7858553.968893836,
+          0.0,
+          14752736.823333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6466ecbd-d00a-4a9b-a0ed-fd14ac07a471"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          14744324.82,
+          18643619.283333335,
+          32065953.267674398,
+          29965003.53293085,
+          165422245.2757475,
+          143249711.66777408
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "64cf2767-c24e-4b6e-85c2-b4a4195500fb"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          12.873333333333333,
+          15.33,
+          12.721530075755636,
+          15.148029688017203,
+          13.393333333333333,
+          15.85
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "64e66cb7-9b93-4c6f-b95f-0a50ea6a4cbc"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6515de12-fb6a-4e93-bddb-163e19272e8b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          17308689.17,
+          247855004.81,
+          31605057.354995735,
+          275979426.36219615,
+          319104625.38538206,
+          408988160.06333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "654caf28-87eb-467b-bcfb-5828cca231a7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3824.7781456953644,
+          5409.44701986755,
+          1338.5913714859082,
+          2420.4489473913663,
+          4168.9383333333335,
+          5586.36
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "65604160-6d30-4715-b63c-d50e630e2ef8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          143909014.63,
+          215623079.37333333,
+          118153386.12990467,
+          168847978.7068102,
+          215020299.6956522,
+          320858747.4347826
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "65a46d05-0ae9-4f66-a5b4-180a244d6c33"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          636819154.06,
+          481087217.53,
+          535461459.3299579,
+          758217815.0400945,
+          821017758.9118136,
+          1460386083.3837209
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "65c07874-01cf-4834-94dd-7fb5c8b97e28"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          297.5282392026578,
+          0.0,
+          211.6982137072733,
+          0.0,
+          316.3720930232558
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "65e233d2-3663-40dd-9851-8ed91256c156"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          153.77257525083613,
+          97.76254180602007,
+          120.26755522736303,
+          79.59646821840029,
+          170.6611295681063,
+          164.16611295681062
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "65f8c2ad-03c8-4c96-a97d-c2b0e5efb7a3"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6602bd2e-aaa1-4f9f-bc7b-63ebeff4ffc2"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          74330.57666666666,
+          2724.5233333333335,
+          6501.03010987081,
+          84839.97888758984,
+          334464.36212624586,
+          1488313.2566666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6606138a-a403-4cf4-b47b-ff70c3834708"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          10565.515050167223,
+          39765.739130434784,
+          11929.725085308555,
+          39114.35973949115,
+          32706.46511627907,
+          73240.29235880398
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "666cbcf7-f155-4583-be57-0ac4789d273d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          311.3112582781457,
+          0.0,
+          138.13368729048057,
+          0.0,
+          314.6488294314381,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "66a379b2-008f-4e20-9933-cbb010d56541"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          43.39333333333333,
+          218.05333333333334,
+          46682.3460361557,
+          210.165678190226,
+          5546513.664451827,
+          273.2358803986711
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "66ed9ab4-46c9-4afd-9082-ff3feb7deaa9"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          906600204.6,
+          157205786.00666666,
+          674452682.5882589,
+          122213413.32939783,
+          1365544239.2466667,
+          229616164.06
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6709781f-360f-4558-8d1c-3223aa068321"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          6974192.856666666,
+          610377.0866666667,
+          55117514.16062642,
+          46293498.49839243,
+          351107307.56,
+          427249868.5451505
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "67270457-2412-4ba2-802f-dfdf9a5818e7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          120.40666666666667,
+          0.0,
+          116.6387041426826,
+          0.0,
+          121.98327759197325
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6747f3d7-9fa0-4204-92a0-e2d10876e0f7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1551.2866666666666,
+          1891.9933333333333,
+          1547.6611268069935,
+          1930.9566037164614,
+          1618.7873754152824,
+          2023.7458193979933
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "67820162-4812-4dbb-8feb-62e905a4ea57"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          26.07308970099668,
+          128.68106312292358,
+          25.924344491734143,
+          112.13476606148784,
+          30.823920265780732,
+          204.31893687707642
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "67c5a332-a133-4310-8539-9fbcd2b20c24"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          38521545.448504984,
+          54193148.87043189,
+          77049891.58425368,
+          53135667.31108187,
+          426260209.6632997,
+          120938163.6442953
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "68095eff-5d56-4894-9046-9f857495ebde"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          640678222.12,
+          849582188.47,
+          544422181.0108117,
+          968393663.6031445,
+          7618630404.389262,
+          4691347850.216666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "68585a7d-8363-4e9e-b6ef-9edfff9104a2"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          220201285.72333333,
+          318937517.96666664,
+          144119112.64308524,
+          305978034.1147829,
+          393999076.4266667,
+          756983926.4784054
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "685fa542-7cb9-4192-8c61-7091e7a65354"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          4700.1466666666665,
+          107.55666666666667,
+          6483.472824305791,
+          101.43420502858913,
+          168723.8344370861,
+          184.42666666666668
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "687404e7-26ce-4f6f-9e68-9ed427e980a6"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          14.74247491638796,
+          14.74247491638796,
+          14.864377994378094,
+          14.720777061366347,
+          54.89700996677741,
+          16.883333333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "687abed5-3662-4d4e-b702-d25373afc721"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          475173997.49666667,
+          25050372.886666667,
+          484145816.2846859,
+          18377925.550428636,
+          1005783412.1766666,
+          121191000.36454849
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "689e7d7c-3da1-4699-b8c0-f7b228489d9c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3597.8671096345515,
+          4135.189368770764,
+          4398.543615024296,
+          4121.65736545599,
+          7443.957095709571,
+          5092.345514950166
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "68f63a59-1fe7-491a-830d-16669a01da62"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1890725709.86,
+          3065045635.4566665,
+          1881548396.2489333,
+          2855543246.9771113,
+          3076521607.6976743,
+          7409530339.523334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "69329700-b6f1-45b7-8138-d6043fb9c9ba"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          116.83666666666667,
+          278.88,
+          115.57223296641054,
+          280.7640627962225,
+          123.52,
+          312.0602006688963
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "695e9958-d51d-43b1-a3d3-51b74495370d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2.9,
+          15.876666666666667,
+          2.909544289080065,
+          15.604971697956367,
+          3.20066889632107,
+          17.32
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "69d29376-ae69-4fc5-8487-c1d39ea81e5f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          41.11371237458194,
+          3842.4682274247493,
+          58.52755891045535,
+          8546.027407445814,
+          178.06666666666666,
+          53756.443333333336
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6a74cb54-4c64-4462-82e0-5f485ba3befc"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          468512524.96,
+          498311668.74,
+          686024925.2611041,
+          592025928.3582214,
+          1841995157.1162791,
+          3772483922.6843853
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6af3bf02-391a-493a-80d8-8e5f486fc134"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          6851.593333333333,
+          545.5366666666666,
+          23854.633282618484,
+          4458.259002820642,
+          315440.39666666667,
+          455663.86333333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6b5cde4a-913b-430d-bde1-2b25f2a59ee4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          6323615.126666667,
+          235024783.15,
+          32662762.5447498,
+          120772628.54825714,
+          354881822.16,
+          375725978.9
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6bb16906-92b6-4759-bfdf-dfd8cd13ea69"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          724.8933333333333,
+          28035.88,
+          721.5028701209557,
+          1796063.6437841377,
+          820.3039867109635,
+          12028798.323333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6bea6346-0268-4340-b8a9-2e0164fe3693"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1358215012.3779263,
+          116546441.66889632,
+          1252620348.9848187,
+          67438738.70995465,
+          1713330644.0033445,
+          1018002802.66
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6c9a1a4a-6c54-4463-8a6c-47165bdca719"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          17779826.655518394,
+          33827199.68561873,
+          14215567.804472597,
+          19009215.03104894,
+          37413528.93666667,
+          118803623.03654484
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6ccc732d-8370-4a9f-b105-7eb10c45ae42"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2272.576666666667,
+          28243.433333333334,
+          19752.10645321618,
+          38313.58161449634,
+          948032.9366666666,
+          940319.6933333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6d6681ae-2b43-491c-9f38-15fe3b9cfbe8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          405.52,
+          2588407.8433333333,
+          373.1087256742404,
+          233556.45939177557,
+          718.43,
+          3457469.56
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6d852f81-dfd6-4b79-9332-16264e04340d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          12.598006644518273,
+          0.0,
+          14.311786539701878,
+          0.0,
+          92.99667774086379,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6d858a1b-6f3e-43d1-9c9a-49247378018c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.2,
+          210.74333333333334,
+          0.34878614204651703,
+          171.96142823277233,
+          1.302325581395349,
+          217.87
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6da6ec52-667e-42fa-8261-68cfc344c962"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          8529576.673333334,
+          10236400.54,
+          4272307.399097708,
+          5111297.254780305,
+          10784499.98,
+          13957824.468227426
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6db55316-2135-41cb-978d-da6d0fdc0b41"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          145815.62458471762,
+          2438008.3322259136,
+          467510.68771582743,
+          1366628.4770884854,
+          5257270.314381271,
+          16807494.842809364
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6e145dd9-0a78-4671-87f9-3e88ea444b47"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6e4cf35f-373b-4439-921f-6414db862910"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          216821764.68666667,
+          33149086.83,
+          147309513.91891572,
+          35440862.220628954,
+          297663537.0100334,
+          369209720.44518274
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6e9f65f0-8eda-4584-b1f5-4fc0372a50dc"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          312783157.07666665,
+          20286668.893333334,
+          196641799.64046466,
+          10832558.081438748,
+          312783157.07666665,
+          22527778.19933555
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6f08b236-07c9-423b-9a9b-eb3177d4306c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          63631.49,
+          770715.48,
+          68050.36736818048,
+          236454.92355333208,
+          166129.64059900166,
+          866645.3466666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6f0ff73d-dec6-4953-b0ea-6f51e4fb9659"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          44891.47508305648,
+          32021.661129568107,
+          48834.301921006976,
+          36789.02943316863,
+          65709.33779264214,
+          52862.00996677741
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6fa906a9-70c7-4dce-aa67-87d62a544885"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2446.594684385382,
+          2041497.2259136213,
+          2567.1864988245347,
+          1955707.9360019949,
+          3952.9966666666664,
+          3040003.738410596
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6faf5e62-7a01-4895-b6e6-80b9875dc35e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1514504571.38,
+          381293398.99666667,
+          971527338.8630217,
+          305500884.44984144,
+          1643838654.1638796,
+          492482828.95348835
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6fb81e8f-326f-4e21-93a4-bf20e6173572"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6fcea088-b97d-481e-a88f-901cbcc88a33"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          28392.46,
+          21319.87,
+          28501.03103882726,
+          21400.26943481894,
+          28971.30693069307,
+          21861.43666666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "6fd3e24b-1563-43d0-b929-7d13bada800d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          10.626666666666667,
+          241.58333333333334,
+          6.595155881496921,
+          154.72784215596866,
+          11.78,
+          269.6
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "703b22e7-650c-4faf-870d-a2dbfc8ac7ba"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          6453.758278145695,
+          3639.7582781456954,
+          4743.905241742681,
+          3293.41379360948,
+          6935.976744186047,
+          4101.1
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7043c23f-9b5e-40e5-901b-f2d1dc86e92a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          50841494.58,
+          542011045.5333333,
+          112835177.57058659,
+          506955029.94113606,
+          566645998.1328903,
+          1840314751.7458193
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "70f0b140-7251-4f96-a1f9-a09d80188074"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          9.37748344370861,
+          11.52980132450331,
+          9.69956830248975,
+          11.78826503409982,
+          11.306666666666667,
+          15.7
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7123cd23-2ba5-4435-b925-a18747a02814"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          10997936172.863787,
+          9402995102.192692,
+          10868071332.793657,
+          8768356997.907358,
+          22368160088.08027,
+          16690698533.847176
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7184a87b-7085-47a1-94c2-3167fe29e79b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          5410791.3820598,
+          4216062.794019934,
+          6145878.430757475,
+          5308502.605843195,
+          20549677.80066445,
+          63085682.06
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "71dce15d-317c-4308-99c2-844a42f0c03e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          5452.79,
+          673487.5033333333,
+          5314.606532454479,
+          860833.3444776458,
+          8014.6079734219265,
+          12811252.786666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "720815cb-ce30-4b4e-9818-208222110af9"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          725.52,
+          1041154819.08,
+          859.7077606414414,
+          986916818.9132596,
+          1839.0066445182724,
+          2077761589.5757575
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "720dfded-cc6b-4e48-a329-f9e3c74f840c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "72773e5b-763d-4f3f-8e60-4575b36f087a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          76.99,
+          134.25333333333333,
+          73.37949355289182,
+          125.86556465320709,
+          95.0,
+          162.22666666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "72952176-9420-446b-8894-b079d5dc74ff"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          257.27090301003346,
+          436.6655518394649,
+          353.52320740800985,
+          465.2634781148603,
+          4984.109634551495,
+          1597.9066666666668
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "72a1f92b-2bee-442f-901f-f81453ff37fc"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "72c6493f-90b6-4619-946f-e59b46d869e8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "72e24bdb-782b-4fb0-a15d-33d0b1a6011c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          213.41471571906354,
+          90.40802675585284,
+          10120.449570926945,
+          223.45849885187695,
+          2045357.78,
+          27659.793333333335
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "731660e9-1e8b-4b0e-84fb-889015fb1020"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          375.80333333333334,
+          140.76333333333332,
+          356.70705811722087,
+          136.67235239512124,
+          441.3222591362126,
+          145.43853820598008
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7335cfb2-1b8d-4b70-a35b-9bbd2f3bfc02"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "737bd449-f9f5-49bf-9368-45a5e85623cd"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          633785624.2866666,
+          1456765019.9966667,
+          474076386.117174,
+          1305805594.3123207,
+          4353506467.1694355,
+          9893417543.67774
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "738bfc76-896a-491b-a4fd-f76dab21920d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          25.233333333333334,
+          32.11666666666667,
+          25.665518726671845,
+          32.1836427652226,
+          26.495016611295682,
+          33.04347826086956
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "739c70df-82c4-4216-9a50-5390c0db8575"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          25477.853820598008,
+          13183.970099667775,
+          23832.710280172047,
+          653283.7747446919,
+          173069.58471760797,
+          28921110.51162791
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "74016d70-cf1f-496a-ac93-cd1feb2df4f1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          384464.09,
+          3920684.6133333333,
+          650061.4011551491,
+          3191014.0490471004,
+          4383847.299003323,
+          14695563.53
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "74366bdf-758d-43e7-b872-bbd58ef08ac8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          438035478.43,
+          10725522.103333334,
+          358268621.7298877,
+          7670808.466567323,
+          769484587.7408638,
+          15918567.026578072
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "749085e3-6229-4e49-8d0c-3a3c3e872765"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          112.35880398671097,
+          15.56810631229236,
+          93.83637893643827,
+          15.544441970775386,
+          115.14950166112956,
+          21.37123745819398
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "74f08b13-cef5-404f-9e9d-d20a0ae93159"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          85.01,
+          6053.213333333333,
+          84.65747382779372,
+          10880.731022740287,
+          92.31893687707641,
+          217942.96989966556
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7548ce69-f9c1-4f23-81c7-ee465eb3997c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          213718516.72,
+          22630496.55666667,
+          150680301.024536,
+          17718923.003587317,
+          269272246.6,
+          148361427.71666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7564273b-1cd7-4903-827a-221a9ad786cf"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          199.3,
+          426.46666666666664,
+          1489.7604667839603,
+          443.7064225372564,
+          47606.87707641196,
+          992.1233333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "757a54ac-3f3f-45da-ac14-1382d6763b1e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          818442.4866666667,
+          142.58666666666667,
+          7568840.523837478,
+          129.4755809925726,
+          59407940.90728477,
+          160.75083056478405
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "758b1445-4391-4bff-813a-6938f2b97c95"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1580.1887417218543,
+          23305.135761589405,
+          1492.2083842702477,
+          593265.3331472707,
+          1764.395,
+          9020793.196013289
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7621166e-7d9b-4218-a0a2-a6bf198901f9"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "769a1057-0d9a-4498-93a5-7e1be6d01f32"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          33463.78476821192,
+          29434.725165562915,
+          35310.32722538955,
+          30873.840391626753,
+          45655.455149501664,
+          47208.14617940199
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "76f20bf6-8554-4e0f-8f86-f02139d41841"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          78.24666666666667,
+          93.62666666666667,
+          78.47088276976517,
+          93.51317590886188,
+          80.72666666666667,
+          117.79333333333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "76f816fc-aa96-496c-b5ad-cba93e6b0129"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1691815419.8903654,
+          853965860.8604652,
+          1250432322.9005625,
+          702183349.9393053,
+          2195876372.208609,
+          1168274376.049505
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "77371b44-1826-445b-944c-2641a042c66e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          6.177257525083612,
+          1190.0969899665552,
+          6.520256124045445,
+          1220.350944830003,
+          8.38255033557047,
+          1569.8266666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "776c933d-84f9-47f1-a566-44c0969a3dd5"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1495.25,
+          3840.346666666667,
+          1095.3730376692831,
+          1353.9578850822436,
+          37245.55149501661,
+          26008.393333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "777ed6fa-60a3-40e0-9302-279d2a797746"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          86510499.60132891,
+          14271111.026578072,
+          93124749.22216767,
+          11653647.64535535,
+          224867151.61333334,
+          28727464.392026577
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "77c38cd3-f042-4275-acc1-e640419ab8bf"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          98510615.64,
+          338099343.8666667,
+          102999617.18278065,
+          192399344.66566256,
+          183505954.29333332,
+          381217909.50666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "77cfebb2-a92a-4fcd-9efe-235d9e9065f7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "784ab6cf-9efb-4dec-94f7-231c3a2cc04f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          4669506669.980132,
+          6344017312.135761,
+          3831338868.4235334,
+          3826052057.012943,
+          10638054622.415974,
+          8936543730.589018
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "789c62ae-17a7-4884-b568-0921e5c638d1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          27150.460264900663,
+          13172.692052980132,
+          30157.222215756632,
+          15855.815673482237,
+          42098.53488372093,
+          26908.631666666668
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "79f6436e-0b9d-4cd7-a886-b63a2d5fb3ec"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          11148862.441860465,
+          4209857.15282392,
+          10455190.151045742,
+          5768213.216280714,
+          26977193.784053154,
+          13121067.676666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "79fc266a-7cc1-4be6-abf0-45f6332ae4d4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          5057419143.626667,
+          1804269460.63,
+          3643544505.5363684,
+          1399184675.8138,
+          5916945822.368771,
+          3622558817.0066447
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7a260ace-c8dc-4aa9-871f-bb850f35476d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          89.22591362126246,
+          381.0863787375415,
+          95.96004530233579,
+          586.0241460408689,
+          568.59,
+          23986.383333333335
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7a528025-c883-4b84-8682-506beae8de8e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          131307232.62207358,
+          704715290.2675586,
+          108069383.62610392,
+          436046879.9768827,
+          258715943.7707641,
+          822391675.3887043
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7a72e854-71ee-4674-a11b-4fefb1451e99"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          8026318616.882943,
+          8361026292.602007,
+          6451860503.540799,
+          9759433006.730396,
+          16995048120.933332,
+          18136321005.53846
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7ae8bd27-b3ef-42c4-8ba1-4fa84fa52076"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          18713.286666666667,
+          2766.73,
+          15348.926911433302,
+          2488.9816756117875,
+          45032.28,
+          4032.3993288590605
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7b155e69-a005-4e44-92f0-75e9fbb5f314"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          38.32890365448505,
+          29.225913621262457,
+          38.8400219291534,
+          31.162179896203405,
+          41.68666666666667,
+          42.20265780730897
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7b596828-68b9-4f61-a528-86a41fa0e06e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          7.983388704318937,
+          293.4983388704319,
+          8.294387006916242,
+          391.27832880097293,
+          8.96345514950166,
+          1119.04
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7b7c6053-e5aa-40d7-93a4-b6a460006d94"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          5.618729096989966,
+          0.0,
+          5.270199905767597,
+          0.0,
+          5.866220735785953
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7c17b242-19a2-46f9-a398-1c5f4601faf7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7c637317-27ad-4664-a891-07b87e18bf2b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3076.64,
+          23645572.14,
+          2350.7657484680385,
+          25911411.61323653,
+          4022.4119601328903,
+          50645749.846666664
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7c799a24-20a7-4f6b-8790-cfe023a70265"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          34.0,
+          0.0,
+          33.99736080414154,
+          0.0,
+          34.33887043189369,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7d1c5626-a05f-426e-9d37-21d2192a7467"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.9966555183946488,
+          1.8929765886287626,
+          1.118264598410265,
+          2.1539397049619455,
+          1.6308724832214765,
+          3.335548172757475
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7d6a39ca-0ca5-4440-8976-8e8213974c7f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          211625.40666666668,
+          182628.16666666666,
+          212643.9363396006,
+          180921.67965054227,
+          226938.72757475084,
+          201407.23588039866
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7d6b2364-5249-48a4-9276-8bd63d76fb94"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          178.07666666666665,
+          71.19,
+          178.1417170706737,
+          70.71165362897382,
+          179.95348837209303,
+          72.0066889632107
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7d97dff1-2b69-4b59-9322-bec626fa48da"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          124.88372093023256,
+          15.56810631229236,
+          107.83218425905058,
+          15.53416450127018,
+          129.6039603960396,
+          22.64451827242525
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7db186a5-68cc-4d34-bbe1-848a8b4e5a1f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7e2e07a7-374e-462b-8140-5ad184a71bfd"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7e755e02-c2ab-4ce9-ab3a-62f115c30632"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          194246159.9,
+          202412.09333333332,
+          469160874.1169774,
+          5578674.371014233,
+          1180862089.8662207,
+          80158121.47666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7ea43b05-0983-4b9b-b7cd-aea816792e0a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7f01dc1e-40d1-46e8-93b4-09936fb7b1eb"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7f2fbdd3-4fc7-41fb-83f8-d0bd73a31373"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2610382982.6308722,
+          9847041275.597315,
+          1762858490.3661246,
+          8884390566.748861,
+          4176420096.847682,
+          16446021809.165564
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7f3748e7-5b19-4335-8d0d-479fe054cb24"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          388417963.59,
+          644223.23,
+          238509400.9418725,
+          904437.4441507541,
+          388417963.59,
+          5917054.65
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7f37a9cd-5b31-4271-a180-3597bbc505d8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2033.7966666666666,
+          3012.213333333333,
+          1678.871871297432,
+          3018.7782044397027,
+          3231.1966666666667,
+          5793.883333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7f87c2ff-d735-47da-b710-5b3bfcf5f6f7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          28359.39,
+          3683.923333333333,
+          251949.3322124286,
+          15816.231346866982,
+          2822156.150501672,
+          430137.29333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7f93759e-916e-4aaa-a2de-bbfccd7f0726"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          254581344.33,
+          773699283.0933334,
+          185562215.89878973,
+          486407236.81071645,
+          657801974.7242525,
+          950817172.6433333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7f99f83b-4ce6-4168-8671-5918d557d8fe"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3299.79,
+          2457.26,
+          22289.64330539099,
+          7780.727737415727,
+          2573266.13,
+          381077.5149501661
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7fadc83e-cee2-4288-88f8-07fe110fdfe2"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3970967.13,
+          8367414.3133333335,
+          6067827.900653415,
+          7521575.225118523,
+          35166945.343333334,
+          76129913.03654484
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "7fe192d4-ecab-4382-9730-643794f8e21d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2.2666666666666666,
+          0.0,
+          2.3064325933322425,
+          0.0,
+          2.729096989966555,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "802da75d-9d40-41dd-8680-770942d47b8b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          129584928.72240803,
+          701128479.896321,
+          103279798.50436592,
+          428627533.85593414,
+          249698022.35215947,
+          810520619.5448505
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "80302663-1ba2-4077-ae12-b40ecbaa450e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          295.18729096989966,
+          114.67224080267559,
+          468.1454271121464,
+          141.3033778469262,
+          1666.485049833887,
+          333.66889632107024
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8081ca8f-a9a0-4698-b5b5-bc23a8fbbb13"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          423251.4451827243,
+          271155.71760797343,
+          660423.6425463146,
+          1197064.1272096657,
+          50310477.86046512,
+          53685220.60666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "80de734d-161a-4d9f-9dde-8f23d04df002"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          122774623.089701,
+          1385299001.6744187,
+          67432262.24289109,
+          1252727392.0669978,
+          1054769021.8233334,
+          1727744928.3066666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "810b158c-2010-45e0-9124-0cc2372542ef"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          62.013333333333335,
+          208.59666666666666,
+          62.81678916233229,
+          211.36284327263635,
+          92.09,
+          1512.9166666666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "813352cd-ae30-49d4-b589-60c56a4aceb1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          328.92,
+          330.53333333333336,
+          909.6586073164259,
+          5656.7411001621085,
+          4674.983388704319,
+          26208.16611295681
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8134740b-7497-4398-ac94-7c1ba8564303"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          129.7086092715232,
+          880181.8013245033,
+          130.86692386771642,
+          821737.52885333,
+          150.91694352159467,
+          1038823.285
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "81673258-0f12-44c4-b5bb-4b7fb25761a9"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          12.059800664451828,
+          1818.6578073089702,
+          12.369039031092736,
+          21496.414556225285,
+          15.886666666666667,
+          639226.16
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "816b7cf6-9aea-4717-b053-1027251e2aed"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          91610.41196013289,
+          94671.95348837209,
+          823451.2050974442,
+          872421.9533082695,
+          33102453.049833886,
+          33519652.19601329
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "819988f7-c21a-4aa4-afab-ca4249174180"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          573356860.3866667,
+          1538080982.3433332,
+          543397236.8830086,
+          691151797.9896299,
+          3216974341.887043,
+          4835090280.996667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "81e28a44-51a9-4147-a14e-da736ab89266"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          28408582.703333333,
+          193476379.00333333,
+          54923426.96784754,
+          288196319.2563193,
+          243201408.76079735,
+          718937575.2259136
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "81edaf42-703d-4eaf-a043-00e6e52b0bbc"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          527744837.8729097,
+          2239748181.0434785,
+          221565801.75321847,
+          730587877.951012,
+          971900311.6989967,
+          3199460920.207358
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8225dec7-027c-41c0-94a4-0d24eb5214f7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          5102.826666666667,
+          161.3,
+          3076.952172860819,
+          147.6809614417358,
+          5470.259136212625,
+          3328.906976744186
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "822aec85-d3c6-4d0a-94a0-230f31b967f7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "822e2451-8daa-4786-a150-c2840385d01f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          40699129.153333336,
+          651.2933333333333,
+          38591391.77050645,
+          637.788542745735,
+          117741353.33443709,
+          1225.84
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "825f9ca7-1d86-432c-a268-3e04e24f2ba9"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          30123446.78,
+          25851210.66,
+          38373551.60425851,
+          37389855.22431127,
+          324440562.63787377,
+          126821666.99003322
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "827acbd6-7a54-4605-a645-4d5ff4e8e618"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          147220697.38,
+          104855228.11,
+          114948453.1116144,
+          75670016.92011788,
+          246523969.1395349,
+          166608692.30564785
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "82821bae-91ef-400c-87e0-43008fd38005"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          12.842809364548495,
+          0.0,
+          13.837849437420154,
+          0.0,
+          15.36
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "82eba9c4-6ad2-476e-b76b-4c9a8fb75974"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          12916.1926910299,
+          1225.5847176079735,
+          13459.7613924837,
+          1273.2063037855385,
+          27841.556666666667,
+          4025.0033333333336
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "83025ba4-4006-4e68-b646-340840256434"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          110254.12,
+          517.8166666666667,
+          733555.2342104645,
+          517.5630502221009,
+          31632867.141430948,
+          537.7171381031613
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8354ba35-2896-49d8-9835-fdd00ef3c5fe"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          240236883.63333333,
+          821.9666666666667,
+          247757274.4072335,
+          829.1108142313184,
+          801273593.2358804,
+          972.4266666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "835770d2-6495-48db-b20e-adb021d580c7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          88820.87375415282,
+          63981.900332225916,
+          83388.23438903742,
+          58517.3886003662,
+          96738.99666666667,
+          80730.68
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "837678ea-80c6-4770-a213-31e4e76dc100"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          8168.220735785953,
+          2657.1371237458193,
+          10580.77063569187,
+          2753.848729299038,
+          18781.344370860927,
+          3603.6225165562914
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "83847c9b-4410-4ae9-844f-fa4f24f1d012"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1066.1066666666666,
+          1066.4633333333334,
+          1067.698961980651,
+          1067.4414404137758,
+          1120.6366666666668,
+          1103.3166666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "83e725fb-28c5-4cf4-b7a4-da09b96ccd46"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          147383323.37458193,
+          34417729.973244146,
+          61660103.16767306,
+          23985231.738800876,
+          487914834.53511703,
+          120075866.43189369
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "83f1f939-e914-456e-9170-0f88335c7019"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          6397.66889632107,
+          835404.6287625418,
+          5902.282802084977,
+          782037.777886264,
+          7746.843853820598,
+          869832.8633333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "83f7a1e5-7ad0-433f-9841-f8b72286767c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          7555875.0,
+          14195681.006666666,
+          13771747.110606337,
+          18597973.18526576,
+          147721199.84333333,
+          164996426.48333332
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "841a43e5-7bf9-417f-94f0-27ebacd071a2"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          277.40133779264215,
+          137.8829431438127,
+          280.49919179530843,
+          137.0087888793068,
+          312.94612794612794,
+          145.79
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "843c1da0-49e7-47ff-823e-12955c336e10"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          176.35548172757476,
+          483.69102990033224,
+          176.43277220527403,
+          866.1322919527646,
+          180.0,
+          17933.872909698995
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "845c8c48-949a-4d95-8afb-8b0e1ffd7b05"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          458.4916387959866,
+          542.9698996655518,
+          554.374806862608,
+          556.0477655863507,
+          5185.604651162791,
+          1729.8
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "84aea626-8928-4959-a0dc-5c153c17cb5c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          2.7242524916943522,
+          0.0,
+          3.0173295310376083,
+          0.0,
+          4.74
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "84cd86c9-63bc-422c-907f-6b9b4896000b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "84d8b53e-8337-4044-bc02-60a111eb20ac"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          10.019933554817277,
+          0.18443134772291547,
+          25.6045022056565,
+          2.5514950166112955,
+          46.07333333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "851d5330-924d-4e40-ac64-033e077afee4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3699.9163879598664,
+          3823.4347826086955,
+          3738.9818376311787,
+          4181.71678751351,
+          6305.082781456954,
+          7308.917218543046
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "853f0c33-24fc-491d-9e62-2680657113b5"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          145815.62458471762,
+          2438010.106312292,
+          467510.6440567434,
+          1366629.90427456,
+          5257270.314381271,
+          16807496.508361205
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "856b4cd2-49dc-480b-9c68-d795fe3cd58b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          241.15,
+          269.3933333333333,
+          243.80186273895598,
+          270.69267657503394,
+          278.3720930232558,
+          274.29
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "85813ab7-6ef9-43ed-846b-7ea903a71b74"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1152680.8996655517,
+          485264.88963210705,
+          11055322.709545912,
+          2027672.2324132412,
+          35543180.73089701,
+          11377131.56
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "85afcdd4-6536-41fb-b1f4-606089b144b7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          327652222.87333333,
+          227018978.33333334,
+          305947781.4509728,
+          143652002.16271278,
+          755586313.1495017,
+          367838130.53333336
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8621135c-0ecb-4968-8c69-4f871ff9560b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          579.6266666666667,
+          253.33666666666667,
+          3945.1598546492987,
+          298.0677747592237,
+          23334.91304347826,
+          554.6722408026756
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "862588c4-e0cd-459a-9b2d-15ddec230fb4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1191172773.2733333,
+          951099700.2533333,
+          1059397838.7453481,
+          717133892.4324782,
+          1685859020.1960132,
+          1371826082.5
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "862d832f-f24b-4b65-9c98-6611d980af8c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          331.6291390728477,
+          1049420.2582781457,
+          338.1473518408906,
+          1019892.6360001747,
+          407.7183333333333,
+          1977360.390728477
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "86397a41-6ca8-4da8-9381-1995a90aeb23"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1621335315.5366666,
+          47132501.35,
+          1143070939.3198802,
+          90080416.49709314,
+          3283558955.65,
+          3447861099.39
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "86684d3e-9313-4f58-9997-94935d72bb72"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          250.62790697674419,
+          232.24584717607974,
+          1407.7569276539098,
+          244.54233112002026,
+          16176.0,
+          353.01661129568106
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "86ba43f3-8267-4f28-9d71-3ea838f87436"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          112718.29,
+          24391.806666666667,
+          444435.6067171693,
+          601486.5090079563,
+          10436836.724252492,
+          17588194.966666665
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "86f708d9-b46e-4a66-bf38-5b21f2a85b51"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          537718.09,
+          860811.1433333333,
+          323624.10170666385,
+          654226.0971183466,
+          1002836.1733333333,
+          1575286.4512396695
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "871a8735-441a-45dd-8e51-b8301f9574a5"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          610.1036789297659,
+          723.1170568561873,
+          12752.442968758403,
+          3722.216099560553,
+          132221.37,
+          22480.773333333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "874145d3-c8bc-47dc-b4d0-9938acded641"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8785501b-61c0-4b90-8bf3-e81f266c1a2e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          79.17056856187291,
+          94.09364548494983,
+          60.98132111013192,
+          72.1452496065192,
+          82.46,
+          97.3
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "87cc0d51-5aa3-430b-9bfa-971da7f4dac3"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          251687.45333333334,
+          601791.5866666667,
+          252559.71037883655,
+          611635.1108305528,
+          311927.33666666667,
+          1000973.9136212624
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "87d24d3e-1355-400f-9563-b0c9f5c2194c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2993.806666666667,
+          3833.4133333333334,
+          3175.9842518555374,
+          4242.89112487529,
+          5380.196013289036,
+          7856.58803986711
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "87d940f2-109f-4227-ab60-b9fdd5fad208"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          70.74,
+          40.77333333333333,
+          68.67520107170415,
+          36.89468528176459,
+          82.4983388704319,
+          55.733333333333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "881bb349-3edf-449d-8289-cd17c2b2cfdb"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1096260056.0802677,
+          6588155708.200669,
+          1277742939.5406044,
+          6764167876.047639,
+          3627125938.8039865,
+          12510338611.733334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "881d13f0-688a-40f3-83cf-487b2736fadb"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          77.25581395348837,
+          76.78073089700996,
+          76.85303936739543,
+          76.36982420983713,
+          78.31,
+          77.84
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8856e1cf-135a-458b-b3f7-42bf9622aacf"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          14017.03,
+          185.98,
+          2043.4540752920293,
+          180.62372472877286,
+          407348.9166666667,
+          596.8733333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8875d1b6-8980-4862-a0a7-9f36675817ac"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          13869.376666666667,
+          6588.696666666667,
+          11792.321335627426,
+          6553.1653966190825,
+          14172.88,
+          9738.252491694353
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "889e2ed8-43d6-42b2-b14c-4e634a625915"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          16.626666666666665,
+          8873306.073333334,
+          13.302499543380213,
+          44821361.502966,
+          25.036544850498338,
+          588016602.2842809
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "88d17665-1901-4efc-aadc-3a1750cc4582"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          547.7926421404683,
+          556.2441471571906,
+          476.6663415869538,
+          1005.3985298555291,
+          4146.0,
+          91519.8127090301
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "88df9c5e-1866-4a07-9012-846e2192d7ca"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          155962064.59666666,
+          906022985.6166667,
+          122215210.77338825,
+          673858571.2051812,
+          229547622.08666667,
+          1363796214.9866667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "89192920-9efd-4f50-9f0d-48abcf8863d3"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          86510499.60132891,
+          14271111.026578072,
+          93124652.25979319,
+          11653639.578053534,
+          224867151.61333334,
+          28727464.392026577
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "898c618e-da1d-45d6-9b04-82f0b37bcdab"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          54.50333333333333,
+          153.04,
+          52.32388350667024,
+          187.25659823160942,
+          56.820598006644516,
+          514.9466666666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8997b807-296d-4f5a-8a74-24f55020dd51"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1598800.5066666666,
+          2369086.6933333334,
+          1368973.9238298347,
+          1973731.3845005685,
+          19749802.256666668,
+          16345112.64548495
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "89b10159-9590-4fcb-a9e7-a4f807f63b44"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "89f10438-66ad-4e5b-9f64-2112af2904ed"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "89f49535-510b-44b1-8222-c36fb794b6fa"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          149.27814569536423,
+          91.13245033112582,
+          2076.3830345631573,
+          205627.43750049526,
+          24646.469115191987,
+          6060936.388981636
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8a48c70f-4c71-4bf8-956d-d2f4874bdffc"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          14.333333333333334,
+          15.173333333333334,
+          14.336059240902362,
+          15.455748717607296,
+          15.819397993311037,
+          18.189683860232947
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8a5756bb-5876-4315-9b54-c187b504dbc4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          29.51839464882943,
+          147.0735785953177,
+          68.46819629949022,
+          168.4253138200597,
+          10639.906666666666,
+          4336.285714285715
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8a66b8d4-2a6f-4e15-93f5-085efdff7a6a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          69.83333333333333,
+          103.83666666666667,
+          70.84847192985055,
+          91.87468239945717,
+          78.09966777408638,
+          111.56521739130434
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8aafc220-da5f-4290-a9e7-d5df1f0e49cc"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          171.9271523178808,
+          1159750.2582781457,
+          181.1687205336128,
+          1092150.6931485895,
+          337.658940397351,
+          1936478.5099337748
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8ab264f8-51f9-47c8-9233-6f2b71a15048"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          592263.35,
+          648658.0666666667,
+          427376.3146940453,
+          481694.5817065979,
+          870653.2566666667,
+          3341215.7570247934
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8ab91ec7-b126-4c2b-807b-d400b95072a9"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          67.09966777408638,
+          66.10963455149502,
+          180.67752207872613,
+          71.95372674515814,
+          1389.9169435215947,
+          191.37873754152824
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8ac85ffe-60b7-48a5-885e-59b85b069e1d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          13.501661129568106,
+          449.578073089701,
+          15.03428361345579,
+          3008.9575084716894,
+          18.976666666666667,
+          16980.976744186046
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8b10fe6f-4af5-4592-b093-845b809ba60e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          169.54,
+          24.243333333333332,
+          170.13190865688256,
+          25.325160822496958,
+          715.05,
+          30.74418604651163
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8b2ca47a-8bff-4407-90cc-623b5427f95d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          778044.4566666667,
+          1778144.0966666667,
+          6723175.233658203,
+          6068236.443632926,
+          77557839.03666666,
+          75785586.96666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8b4bebc7-1ed7-4d06-8860-0484f21276f5"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          53796.208609271525,
+          338315.03973509936,
+          703997.5899591987,
+          327934.15923091455,
+          79746035.05980067,
+          5170385.617304493
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8bd8b9b3-6985-4201-ae90-c95456fee925"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1280657173.8833334,
+          326832507.71,
+          514250465.4593553,
+          290817037.50268507,
+          2931166056.5091515,
+          1032894681.2212979
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8cc820be-62a1-4682-a42b-5193743aeabb"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          216.83612040133778,
+          107.3076923076923,
+          455.72540670657855,
+          102.77292672059761,
+          68394.6046511628,
+          184.42333333333335
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8ccb1cd8-5e4e-4015-b264-4732c5eb5028"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8ceca1cd-f5a1-483b-b2ab-756ab0da26f1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          213718516.72,
+          22630496.55666667,
+          150680301.024536,
+          17718923.003587317,
+          269272246.6,
+          148361427.71666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8cf48638-518e-4f78-8dd4-5546c1d3d94b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          108287088.32666667,
+          56820533.98,
+          194477139.9305255,
+          65790132.947697446,
+          1707404725.4481606,
+          639840976.5233333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8d25144c-32f2-40ee-b627-6aca9d1fd0cc"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          17026.31,
+          17344.31333333333,
+          21700.515989315867,
+          1651341.5387109388,
+          113683.55960264901,
+          7335194.623333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8d52a5da-2212-4696-b4c6-f5f1f35ebf5b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          680.86,
+          697.0333333333333,
+          557.8530908254663,
+          438.74925959924354,
+          874.6312292358804,
+          856.358803986711
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8d703367-935c-4c79-a13c-38e861d2861a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8de489a7-3153-4167-8c4a-e6beaaab2653"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          522695536.43521595,
+          90246524.77408639,
+          471336783.3134108,
+          83545852.17371897,
+          752853036.9666667,
+          153638043.641196
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8e577713-0de2-453f-a4dd-4f17d153ada6"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          106990440.28903654,
+          722921.096345515,
+          364259465.53939676,
+          1777255.858334048,
+          644477396.5866667,
+          3837520.8013245035
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8e731536-f401-4ae7-8044-13cecf8d24f2"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8e944086-e92f-4d59-beee-3970a6f7278a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          4989483.215946844,
+          92679.69767441861,
+          4077780.7109676576,
+          70840.37752363327,
+          11849826.363333333,
+          193592.02666666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8e9d94a9-6bbf-4e83-aba4-49d4891c944a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          172.94,
+          17.503333333333334,
+          133.47856170699416,
+          18.193927066751602,
+          956.2259136212624,
+          23.90728476821192
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8eab03c0-40f2-4b92-a699-a5d392a53048"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          5981655811.454849,
+          1360822730.561873,
+          6390762524.128601,
+          1546459345.79439,
+          11928620937.02,
+          4011254821.2159467
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8ec5c1d7-fa53-4ee4-900b-cd8a37e4de0a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8ed7798c-34f0-4e0f-8c77-1389086c961c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          44784701.24333333,
+          10900368.6,
+          39890792.36678244,
+          7105954.709462985,
+          82137773.4768212,
+          15903009.312292358
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8ef1b7bc-c825-4f7b-82b6-405c2b7ae2c8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          35.880398671096344,
+          3.142857142857143,
+          36.12654961369435,
+          4.656782096060861,
+          41.16,
+          5.395973154362416
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8f046b8b-a734-4422-b426-d21a16282266"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          386836.98333333334,
+          398722.61333333334,
+          503707.9493278212,
+          2734485.0130550372,
+          897433.0132890366,
+          50784323.09
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8f36dfef-9675-4fee-99ef-9c7de29e1627"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          72269016.26,
+          223716652.48,
+          69548554.21888298,
+          160464867.53768054,
+          293301763.5566667,
+          534458845.6020067
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8f385fb8-9070-4944-81cf-1fdc0117ffd1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          15421624.873333333,
+          372680281.14666665,
+          3707080.2513494175,
+          203445230.65744236,
+          89432402.7090301,
+          978896306.5233333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8f498cb0-f916-4847-9f30-77a9a7f0974d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          30.976588628762542,
+          92.1571906354515,
+          30.566615637600442,
+          90.73991524408797,
+          48.64451827242525,
+          497.5282392026578
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8f70add2-850b-404a-b5ac-0459957c3d09"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          23.337792642140467,
+          188.03678929765886,
+          97.88664384309122,
+          360.81421882851487,
+          1808.3758389261745,
+          27613.950166112958
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8f7f92c5-6968-4369-aa3b-dc23445bc0a1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          30601.066225165563,
+          4623.549668874172,
+          21180.807289547236,
+          4604.554178300632,
+          39862.79598662208,
+          6403.983388704319
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8f80b196-5332-40b2-a35b-2ce2133e5f29"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          5284.466666666666,
+          1436.7566666666667,
+          10284.462827076542,
+          1450.0996527940395,
+          1409492.1627906978,
+          12070.57142857143
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "8fead412-5c89-4ddf-88ce-caa11fd6a796"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          44.41860465116279,
+          1640142.6212624584,
+          44.66778880233072,
+          1432794.713906899,
+          45.56622516556291,
+          2192096.996677741
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "90723412-846b-48ee-8ed5-4bf72c225dc0"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          425311840.57,
+          723024108.1266667,
+          668644781.7158966,
+          503280941.7521885,
+          1642869326.511628,
+          1311326399.1433334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "90e775c1-c48d-426c-b9a4-6c412ddff754"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          5928819698.675586,
+          9498314727.277592,
+          3869549346.1696267,
+          10553393633.847181,
+          10207223093.209303,
+          15865724917.76
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "91008b81-04a7-43d4-89cc-1140244d2487"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "9107e4f3-cb9d-4c23-a356-2aecf0974f4a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          869285.8127090301,
+          994.3745819397993,
+          1253799.8441422095,
+          984.1125450595779,
+          15684522.12374582,
+          1104.3488372093022
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "915247f2-026d-407e-bdb5-e5d272de411b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          6069.6033333333335,
+          15889.47,
+          6107.216472493764,
+          16051.66514348908,
+          8812.229235880399,
+          24518.750830564783
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "916d1762-c571-4dbf-baf4-6a28c2f691ad"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2831.8344370860927,
+          1921.632450331126,
+          2391.9549343918875,
+          1716.5342792385698,
+          3275.093023255814,
+          2170.817275747508
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "917627fa-d842-4216-b637-a60d4ffee805"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          73.56666666666666,
+          105.31333333333333,
+          72.79758142536454,
+          105.30961624752533,
+          78.77333333333333,
+          109.63973063973064
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "917bf593-fd77-47e3-84cf-cf95cefe96da"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          16423.66,
+          3576.536666666667,
+          14951.548226910227,
+          3048.4603190060816,
+          30531.521594684385,
+          7912.3920265780735
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "91ec5940-45f6-4372-9f88-0b8dbf90b5af"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1495.25,
+          3840.346666666667,
+          1095.3730307627914,
+          1353.957866017423,
+          37245.55149501661,
+          26008.393333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "923321c4-d3d9-4e95-9b63-d60f897bf720"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          9.827242524916944,
+          501.4717607973422,
+          10.246366607164136,
+          1251.3225251744227,
+          19.1,
+          4696.132450331126
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "924d8f89-e625-408c-9c00-4f98283d6911"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          25.377926421404684,
+          34.247491638795985,
+          29.389682302390845,
+          34.6458307560988,
+          229.90697674418604,
+          80.45514950166113
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "92512f10-1f81-4902-bbb6-09242f8bbb82"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          41392.613333333335,
+          13117.12,
+          44174.68446024784,
+          18496.27162490372,
+          122852.02341137124,
+          65476.32
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "92cbb48c-6658-4a43-8d41-114d0f4f489a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1358.9166666666667,
+          433.9766666666667,
+          931.6062071812272,
+          428.64999101939827,
+          3126.3433333333332,
+          1590.8145695364237
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "92ddf792-8433-4c93-9168-87bc6a314426"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          201211.19601328904,
+          683.2524916943522,
+          535874.8100533566,
+          674.1356502412735,
+          10709235.558139535,
+          1609.4233333333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "93055442-d0a4-4fd5-b62e-b618140d5d7f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          7303.269102990033,
+          2537.5913621262457,
+          14635.176814622797,
+          2444.939184763108,
+          42394.956666666665,
+          4080.528239202658
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "93138f6d-c0f7-403e-b3ea-faa694106c5d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          48196.09333333333,
+          10121.22,
+          4933015.702558926,
+          1319754.2007095444,
+          116997392.98671097,
+          47950466.73754153
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "9315df0b-3984-4e2a-b3de-77df4720efaf"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          31442.822742474917,
+          9979.481605351171,
+          434399.59491998825,
+          14076.762512668758,
+          20237464.24,
+          214078.76666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "931ba49d-f849-4277-9820-bc22a7719a6f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          8278677.466666667,
+          42636804.14,
+          12242469.527098317,
+          81615991.8601678,
+          38231955.80398671,
+          713088316.55
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "933cbcbd-11ed-4e5a-9d19-78d122cfa02b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          121093.88666666667,
+          33321.816666666666,
+          190617.87176453212,
+          38010.80996281945,
+          1526074.8133333332,
+          86431.07666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "9344e3d4-0995-4dee-8ee9-e70ed3e738e1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          7321309.664451827,
+          935557401.8438538,
+          8952557.618733738,
+          427697283.13996804,
+          24601381.707641196,
+          1537709611.4
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "934b5710-520d-4c56-968d-8476eb301870"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          583015905.5466666,
+          140337458.40333334,
+          279578090.97948915,
+          81594884.26945521,
+          796877904.7475083,
+          158408908.5
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "935b6fd4-14e0-4faa-ab4c-4bdf120fade2"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          55.95333333333333,
+          1396580.63,
+          64.88435488355206,
+          1220001.0500382867,
+          1655.7574750830565,
+          2429465.723333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "938b2901-6630-4f0b-8c1f-5e00b66ebb7c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          636819154.06,
+          481087219.83,
+          535459560.36347914,
+          758219055.1006409,
+          822131333.968386,
+          1460386081.4700997
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "93eebe3a-4fdd-4d4a-9e81-ca23690ee5ed"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          338193994.13712376,
+          98839022.6923077,
+          192350315.68398517,
+          102992703.58345409,
+          382073372.68,
+          183465583.82333332
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "940cf557-39dc-4140-a2e5-df9871cca828"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          127.54333333333334,
+          161.37333333333333,
+          116.9206219223831,
+          158.49832353581706,
+          141.3594009983361,
+          183.11627906976744
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "9448d35b-055a-4c9a-9e93-c62b4d0753e6"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          26.830564784053156,
+          157.73089700996678,
+          205.48040912142463,
+          174.36855272338423,
+          1929.7466666666667,
+          479.68666666666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "94d4cda8-8527-4e9d-bb01-9769c302f118"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          10.973333333333333,
+          13.573333333333334,
+          11.57158783310831,
+          14.205492520823205,
+          31.199667221297837,
+          16.717138103161396
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "952a8701-3ca0-45ee-9b6a-a2890581bc23"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          217.44147157190636,
+          331.3411371237458,
+          218.41702009018493,
+          337.41008323296984,
+          229.2923588039867,
+          368.05387205387206
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "9535fce0-e586-420b-a044-f24df712a585"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          34602727.28428093,
+          5192798.488294315,
+          24112037.949932862,
+          6481235.286098382,
+          120484515.65116279,
+          48547000.55183946
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "95433ca9-9978-4791-844a-64e3f8e2296b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          256231882.9003322,
+          16669461.53820598,
+          193303894.082358,
+          20053348.05779345,
+          309062476.4385382,
+          60249818.04
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "954f1e38-cabb-4cf8-aa16-32fa65314c32"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          326083655.07,
+          27405647.116666667,
+          323788433.65223765,
+          52029512.53819024,
+          1303023268.5282393,
+          1559402753.0562913
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "9562b13c-43a3-4e63-8b59-77a18b7e8602"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          9223.421404682274,
+          5044.598662207358,
+          4709.770362980409,
+          7175.286269519547,
+          24323.138613861385,
+          30763.283333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "957ef638-c8c8-41cb-a2db-26a431b253c9"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          28.526666666666667,
+          79.24333333333334,
+          28.511097734272795,
+          72.06431569297754,
+          29.723333333333333,
+          90.69333333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "95d88f6d-70d5-4c17-8f0b-38c15c6aa57d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          113310207.80666667,
+          241396097.99666667,
+          126697068.3217054,
+          221726781.92032948,
+          264993868.41196012,
+          334675918.3089701
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "95ed5990-332b-49eb-87e8-beafde03260a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          53.90635451505017,
+          51.585284280936456,
+          13522.46514477156,
+          131.68801982217917,
+          3287763.66,
+          20866.29
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "9622bc35-cc9c-4c41-8b12-cfef77399a13"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.020599644820473276,
+          0.0,
+          0.24749163879598662,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "968d6d88-88b8-4238-a46b-d927fc259148"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1777936714.4466667,
+          617971626.9233333,
+          3304318052.088608,
+          532939567.5481133,
+          7048187689.566667,
+          1002662860.7781457
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "96fb0fd8-3a12-409d-99fa-c50dd0d3aea9"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "9704ae6b-f7d1-458a-b07f-3e44409e1e34"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          121.47682119205298,
+          241.76490066225165,
+          122.08964548002253,
+          246.94902207708714,
+          126.54817275747509,
+          281.32890365448503
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "973c5570-4763-413f-910d-76aa459b8ccd"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          4348.296666666667,
+          20031.05,
+          3757.48448603519,
+          20189.98548277734,
+          6888.023411371238,
+          36892.136666666665
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "975af3bd-a397-49cc-8065-88e13f9f800a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          54347.44370860927,
+          63269.93046357616,
+          67858.63372734706,
+          253069.2513765067,
+          314251.8073089701,
+          5821686.31281198
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "975d5c74-2359-4e29-81f7-34397dbee8e7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2291268581.92,
+          3484685700.4266667,
+          1382513770.535688,
+          3545455545.6307516,
+          4662492225.6,
+          12710012411.88
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "977c1df1-97f8-4e9b-a373-59f68fc961cb"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          11773939.27090301,
+          63221216.44481605,
+          13986659.948948754,
+          38727400.570689924,
+          49747381.48,
+          127720424.37583892
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "97c84b65-35e7-4bb3-8302-937ea8918d3e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          992.5217391304348,
+          868878.3545150502,
+          984.1456513286574,
+          1254094.2905033461,
+          1095.2757475083056,
+          15628980.62
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "97d2f1b1-a483-4737-a2f5-a42a803e6bd1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          680.225165562914,
+          50.65562913907285,
+          470.8517305515556,
+          68.07195475845373,
+          707.8205980066446,
+          107.24584717607974
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "981b4457-5638-489b-b34d-bc90993efcff"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          221252.02341137125,
+          745614.4414715719,
+          236865.57684255153,
+          704631.5637463793,
+          2626258.073578595,
+          1315641.2441471573
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "983bd0c5-b104-4588-9883-63090595a48d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          205.2,
+          0.0,
+          205.10922684415357,
+          0.0,
+          207.6,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "9872666b-3b5c-431f-ac3e-42d979418bcb"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          488.10033444816054,
+          412.6488294314381,
+          439.16229789168574,
+          444.9839052479718,
+          524.8,
+          9866.936666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "987c3d30-3dde-4ea3-8fd0-946278c26264"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1923321.5033333334,
+          710111.76,
+          908073.9132396157,
+          1245877.3188176749,
+          3205817.9033333333,
+          13959321.605657239
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "98b9312c-12e8-4ffd-a1b5-adabb93dd1cd"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          12331472.314381272,
+          75347054.05016722,
+          24253342.31391088,
+          61089711.37471218,
+          159794926.77483442,
+          235283292.50166112
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "98d4b8ea-6b9d-44a0-be08-96b26cfbe6ac"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          197.71333333333334,
+          96.55,
+          1300.3005552709722,
+          91.59887908484566,
+          314929.38666666666,
+          183.09
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "999bff17-ee62-4159-b308-f628b969d11c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          12683.983277591973,
+          47754.4983277592,
+          10877.438396745998,
+          38479.01064096798,
+          34635.73,
+          72693.56666666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "99b3ff19-c603-4bb9-b3f9-baa332d17668"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          638986.92,
+          133806.53666666665,
+          525243.5082256398,
+          99246.43257752883,
+          649483.2933333333,
+          318499.4053156146
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "99cad702-0337-407d-8ee8-99944be56e9f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1295676787.3133333,
+          1765867936.4466667,
+          534504973.0684066,
+          2185607617.7861447,
+          2964037459.3377705,
+          5428952401.9401
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "99fae9f9-ebd0-4249-b514-debd4f8c53c7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          627677966.6666666,
+          1190985324.0133333,
+          1051569402.0633118,
+          818518158.0288177,
+          5001311543.6120405,
+          2438152983.3377485
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "9a256c19-4882-49c8-981e-cf901d29049c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3650401865.35,
+          1683812592.86,
+          2211405647.4543653,
+          2075947068.8338084,
+          7253989031.1262455,
+          11154550871.892977
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "9addc483-3867-425e-b25d-095b96d2ceaf"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "9affe5a5-f371-4a4e-8ecc-610008067eb7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          161841621.71571907,
+          157269096.15050167,
+          193825162.88529748,
+          236627468.77359748,
+          604484738.3754153,
+          793935279.1438127
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "9b10ab6d-ac6a-4999-ab32-b81bd54413fd"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          171.78476821192052,
+          768478.3476821192,
+          186.5713484390293,
+          748122.2117557905,
+          516.1066666666667,
+          1005399.2266666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "9bedca61-682b-4dc8-822d-a643f0b39986"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          147771829.97,
+          4433281.506666667,
+          59246516.24805423,
+          3643235.794725384,
+          486320299.23333335,
+          31905846.786666665
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "9d127fd3-05d2-40a9-9eea-0a236f1ee65f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          9190890.491694352,
+          0.0,
+          4979040.907159922,
+          0.0,
+          10793583.183333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "9d24ca58-1eb8-4465-89d7-b1b6ab69e62c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          13.631229235880399,
+          14.215946843853821,
+          13.4532275537546,
+          14.028198022046674,
+          14.92,
+          15.56
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "9d8d7def-8883-4db7-8d7a-34b17ad0efff"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          231.13,
+          93.83333333333333,
+          394.3638062381432,
+          119.60793722680815,
+          1515.0233333333333,
+          331.4314381270903
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "9dd89ef5-b26a-4f63-aa08-ab3a3b0b9de1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3799042495.68,
+          1902483947.96,
+          2669008667.231608,
+          2285833029.630927,
+          9419244627.696667,
+          11283711335.307692
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "9df568bd-ca1a-4c27-b183-f1d4fbfb178b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "9e0297f7-e544-48f7-97f3-f3476967ff78"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          8671697.186666667,
+          7177295.91,
+          26099399.79638085,
+          13948227.596831406,
+          43311837.7,
+          48955943.843853824
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "9e27aae3-41f4-4bc5-8159-718a51569501"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          51736509.14,
+          172696334.89,
+          59151502.89265515,
+          56813508.79384636,
+          251068579.58139536,
+          1052935538.3733333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "9e6e1a2a-afb6-47d2-a9c8-0a4828adac66"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          312783157.07666665,
+          20286668.673333332,
+          196641799.64046466,
+          10832558.074317051,
+          312783157.07666665,
+          22527778.19933555
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "9e8a8143-bdee-431e-80e8-6b8d01d9ba82"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          613.64,
+          411.0733333333333,
+          608.8816619270816,
+          421.75215508049354,
+          703.15,
+          450.91
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "9eac97b5-b3a8-4031-9a50-6925259a3cbf"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3740545168.448505,
+          3860364518.548173,
+          5362868408.222372,
+          1517817950.9387872,
+          13319238402.24,
+          5403469525.416667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "9ee39dd4-eb34-41f1-a4bd-6de95361aca8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          8.651162790697674,
+          9992634.401993355,
+          8.312962834148662,
+          13399685.23366413,
+          9.82,
+          21619552.182724252
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "9efecc9d-f8d5-4fcb-8d4d-8e8b9e864fa5"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          266098372.04347825,
+          147328508.04013377,
+          224115335.21738356,
+          173264474.46366227,
+          2925086680.4180603,
+          351239300.70469797
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a0335d99-4571-4769-8377-590ce191c564"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          155557341.85666665,
+          156408083.76,
+          127243469.65251845,
+          202508582.58372587,
+          257753225.0564784,
+          781538856.19
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a0728b5d-5a68-4b81-8c38-6360a1b0ff62"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          6638786.55,
+          19618721.80666667,
+          12005501.695801165,
+          14900689.248992305,
+          94517108.60132891,
+          99815312.55813953
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a09dda66-6143-4e0a-a4b9-deb8db939104"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          6588431740.36,
+          1086555839.1366668,
+          6674239469.852709,
+          1254355398.3495095,
+          12266235595.126667,
+          3432781099.1433334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a0b6b955-bdc4-4170-a324-6af417268420"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2.9,
+          16.536666666666665,
+          2.9095239408571043,
+          16.232580090878294,
+          3.19,
+          17.980066445182725
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a0d133c9-4497-4d9d-bf01-3993cb69217e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1277.5933333333332,
+          17315815.373333335,
+          1261.172481143469,
+          12953202.563973201,
+          1390.4784053156145,
+          54032610.81727575
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a0f039ab-d90d-4271-bcb8-ab4a96687db6"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          592.0033112582781,
+          538.4039735099337,
+          640.6882303321341,
+          841.0824088346957,
+          2101.91,
+          24762.64
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a0f73cb8-d5bf-4b4f-baf7-2cd94ff3acac"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          116.38333333333334,
+          104.79,
+          115.70038908888445,
+          104.71709226011117,
+          117.89333333333333,
+          105.73
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a1015a70-0db4-4c21-bc9b-b4dcb63771a9"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          85.14,
+          166.32333333333332,
+          90.98030306821397,
+          166.8476674696091,
+          111.36544850498339,
+          172.841059602649
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a11214f3-cb4f-47fe-a55f-85877a35cc58"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          5662.55,
+          232.83,
+          394.0656726917515,
+          249.17310877413243,
+          24721.64,
+          851.68
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a13b95b3-aa03-496e-9c8b-acc50fbacb99"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2499152531.003322,
+          1958348585.066445,
+          2522406240.0553675,
+          2218684762.260567,
+          6631762296.95,
+          6983070977.039735
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a13bc58d-b6d4-4356-9583-96669d1ad485"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1322552300.7458193,
+          1350075528.6789298,
+          790149185.9500716,
+          413540007.8699744,
+          1354512945.3222592,
+          1861651053.013289
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a14205cc-9bb6-421c-a796-2b1195f41e56"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          4.053333333333334,
+          0.0,
+          4.28124423185483,
+          0.0,
+          4.693333333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a147c6bc-88ae-41f3-8a49-93083ef267a8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1749740.3533333333,
+          5891907.31,
+          33507780.08777961,
+          65071322.720083065,
+          300535473.48333335,
+          354410582.84615386
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a1518382-42c3-4387-ad7b-070f2b02a342"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          45516912.132890366,
+          105714814.00996678,
+          51962891.56354591,
+          118530976.46897076,
+          111720172.06,
+          251747676.5
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a181a454-92a0-4415-887a-f88e829e9778"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          18.566666666666666,
+          594.4833333333333,
+          20.706110713274963,
+          137.48897435742646,
+          53.50830564784053,
+          1868.3011647254575
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a1bfe136-6c25-4349-8ba3-46d23c2e76e1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          303768269.44481605,
+          1185930626.9698997,
+          210831524.83887464,
+          716917301.1398193,
+          331485567.7558528,
+          1257328291.8239202
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a1cdca5b-85e1-45a0-85dc-688ffdacc959"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          16.91390728476821,
+          73.23509933774834,
+          13.181704501069389,
+          54.41819150501806,
+          58.89036544850498,
+          664.04
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a1e14ab7-d48d-444b-99ff-9357dd028650"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          18.100334448160535,
+          86.94648829431438,
+          17.958827348821725,
+          86.60047139226559,
+          35.85382059800664,
+          493.8139534883721
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a240aa5d-cc1d-4b60-9f7a-11637797c670"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3.508361204013378,
+          69.92642140468227,
+          3.5673667826943722,
+          60.83089401205061,
+          4.04,
+          103.18729096989966
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a26cad83-788b-441d-a3d8-aa5efd763613"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          42442.05333333334,
+          63237123.623333335,
+          17014834.11095718,
+          20694705.48277306,
+          419866019.85,
+          191019337.99
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a2d826bf-fe04-48a3-b0e2-36fa514d77dc"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          2.7682119205298013,
+          0.0,
+          2.060496313590108,
+          0.0,
+          2.7959866220735785
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a2ec23d0-56dd-4896-84df-c01501760271"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          39011.87333333334,
+          9974.936666666666,
+          37521.63520116055,
+          10872.514609046682,
+          71454.86956521739,
+          30997.371237458196
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a3005403-d0de-4025-b0dd-1e8a35ac3962"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1749713.5433333332,
+          5893184.763333334,
+          33507755.187963605,
+          65071359.49000943,
+          298683104.53333336,
+          354409520.50501674
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a322c093-b337-4680-a25a-1f0465b080ff"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          70594.10333333333,
+          8055963.3133333335,
+          9675573.084034514,
+          7971994.7729075225,
+          377222960.8666667,
+          29273942.866666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a33c7189-776e-4d9d-897c-9add7ed7e206"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          4.656666666666666,
+          9880960.313333333,
+          6.104340820089305,
+          4714371.428527337,
+          153.35108153078204,
+          116861829.87853578
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a3af7ce3-592e-4fd4-a0a2-91dd653e174e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          13077.638795986622,
+          4511.414715719064,
+          11858.72211395636,
+          57421.98402123052,
+          938110.4119601329,
+          1012770.7086092716
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a3ee647f-7a30-461f-af23-e5c3a74ea6d9"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2306.576666666667,
+          53096238.64666667,
+          2241.53815037052,
+          53853194.63836687,
+          3059.485856905158,
+          74118167.26666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a4109552-ba22-4eb4-b8dd-05245f4e8497"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          211.96688741721854,
+          0.0,
+          214.31701389669527,
+          0.0,
+          217.14
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a4bb6f71-c439-4238-8305-2c490249c613"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          203.7391304347826,
+          3962.8260869565215,
+          239.46653121271805,
+          8683.337516771968,
+          5320.581395348837,
+          53921.78
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a4eeaed6-709e-4797-ac64-ab1c83a0af32"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          353.9202657807309,
+          8264652.9966777405,
+          365.5149112120135,
+          13609640.846402884,
+          524.0365448504983,
+          18676215.097315438
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a4f32340-4b35-4b4a-b1b3-7b15bf515bb4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          12.059800664451828,
+          14.435215946843854,
+          12.542040293500769,
+          14.243130727931243,
+          14.332225913621263,
+          15.747508305647841
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a4f4719c-a4fc-417f-b0df-545dd950111d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          731823992.4086379,
+          33308056.212624583,
+          607564530.655692,
+          40773285.51358543,
+          1286630683.7209303,
+          89462837.67558528
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a53344f7-59bc-40f0-84a8-9602bf99098d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          183154.5050167224,
+          212825.66555183945,
+          147670.98944068758,
+          761079.1237533,
+          3122870.263333333,
+          20800412.123333335
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a5534a2b-2df7-414c-aa73-fd4d75992a68"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a558186a-95f8-4346-88c0-f155536f10f8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          436838.16,
+          3394.4533333333334,
+          957490.0625328519,
+          292428.3098451595,
+          11158382.837209303,
+          724372.04
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a5a37a30-24f5-44f2-976e-61eb41565abf"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1223062.7692307692,
+          50628.260869565216,
+          1697077.762711654,
+          194154.06712910373,
+          19145657.827814568,
+          4823028.536666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a5ceb962-4a11-43a5-b568-ce9b94899a0a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a644191f-4b58-4549-8bef-d6ff8c40f226"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          71.96666666666667,
+          109.80666666666667,
+          73.06985360082129,
+          100.54664273132603,
+          76.46179401993355,
+          182.2923588039867
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a6a14251-41a4-4b8d-95d5-b6537c5b3348"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          435.66889632107024,
+          444.8595317725752,
+          323.0097260005485,
+          332.0586074524723,
+          438.9066666666667,
+          453.72
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a6bf1f39-68b7-4d24-8a2f-22f6548e48c9"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          28648.486666666668,
+          4272.77,
+          24393.766834577702,
+          5431.770416052853,
+          54441.75415282392,
+          22354.093333333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a6eb401d-8a68-42d2-8158-6119257850e8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3384412554.2350993,
+          2065721730.1225166,
+          652466069.0818251,
+          1412281332.624934,
+          6367202240.322259,
+          3283284442.856905
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a7509de9-1932-4c0b-a413-e24a4b7e68e7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          15482.729096989966,
+          46345.434782608696,
+          21957.83041930665,
+          46390.176992672365,
+          67682.75,
+          128538.31
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a78018dc-65d8-458d-86c8-d2f821983bf8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          82.81605351170569,
+          80.22742474916387,
+          84.75565120940412,
+          82.22184212346565,
+          89.88666666666667,
+          89.54666666666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a7a623f6-90f0-4997-b9f7-2b1de49e23ae"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          34.8,
+          34.8,
+          34.934614341370256,
+          34.93503870578488,
+          36.90728476821192,
+          36.93377483443709
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a7b7c01b-f359-470b-afa9-69c9f236d7f6"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          48.46333333333333,
+          55.01,
+          44.87257873313583,
+          53.80339378309634,
+          66.1,
+          71.53333333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a8302418-4619-41bf-9c31-9182e70709eb"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          91.78405315614619,
+          90.03986710963456,
+          225.04257055425444,
+          100.05264923052466,
+          1042.9036544850499,
+          221.21
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a8ca2183-dd11-4476-b725-c35e6c640a95"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          4964.98,
+          838023.35,
+          4492.07546505641,
+          782452.2267831921,
+          6007.07,
+          875066.7666666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a8d29b87-062a-47ad-be96-c114c1cd6fde"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          7.166112956810632,
+          7282.8671096345515,
+          6.6766630668597875,
+          6137.454167096056,
+          8.481848184818482,
+          46186.65666666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a90abebc-5c17-4fe9-8d23-31712fb9e2e0"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1247004.8862876254,
+          1756211.9832775919,
+          4782368.246270878,
+          7402536.556789084,
+          73186535.0166113,
+          56417079.75415283
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a928a705-e4aa-456e-a3e3-ea6ecd698db6"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          718.4648829431438,
+          406.4113712374582,
+          288.3746297219929,
+          274.8551031504688,
+          9404.681063122924,
+          894.51
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a9382674-1185-4571-b783-45564390b5fe"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          19374059.77,
+          9503324.516666668,
+          22235799.12393643,
+          21732980.726220686,
+          51856164.88704319,
+          84403879.41
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a9785dd1-f731-41b7-8ca9-08d520d4f7b9"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a98466d5-82c1-4359-98ab-d3b050eb58b0"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          11.656666666666666,
+          14.17,
+          12.003511109984615,
+          14.755661108632081,
+          30.53156146179402,
+          75.9468438538206
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a9e64dc1-a71c-4818-aaf4-9272bf61f66f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          7926891753.0,
+          10698187509.681063,
+          4901559335.007272,
+          11683745402.484144,
+          10548640391.481606,
+          19348845164.406666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "a9ff049e-d47c-4063-a72f-c360bcab9870"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2340782535.4666667,
+          4093498267.04,
+          3268624435.8925133,
+          3094880099.1775165,
+          11032755939.614618,
+          7513799333.706667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "aa8edd2c-9e45-4b24-9a72-6bdaecdf5614"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          464237402.49333334,
+          965593995.07,
+          516294421.3295351,
+          285880563.83222693,
+          1951169145.2966666,
+          1495036586.8266666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ab39ba80-4b82-45d6-b9e7-223277434c1f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3895194207.6633334,
+          3737687929.6,
+          5178013800.470847,
+          3811887970.39695,
+          9555156195.466667,
+          9527213346.582363
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ab75ebca-c7cb-4c7c-8519-f2c6a3a51c6d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          365638.07947019866,
+          9828.387417218542,
+          454885.79421012604,
+          9916.862409368052,
+          6972465.495016611,
+          184408.6953642384
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ab91e089-80e9-467e-87ce-8c6f017ddd0d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          903203232.4418604,
+          155310945.8936877,
+          673809730.1225896,
+          122099542.91825189,
+          1356785790.8870432,
+          228277019.76744187
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "abb1d5dc-6b67-4747-9dd4-5459a56710bc"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1322889093.5953178,
+          1292683789.645485,
+          395834611.763503,
+          774091383.2703753,
+          1854434624.3754153,
+          1341450175.8106313
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "abc51e3b-812b-40d8-b7d3-20f41b255d32"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          575190557.62,
+          480769810.72333336,
+          854054910.1744534,
+          622943337.217075,
+          3582514236.2624583,
+          4211138974.87
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "abdc166d-3307-4e19-afe7-b1021a32168b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          31728.726666666666,
+          6513.616666666667,
+          2977893.000088135,
+          341964.7879513544,
+          46398780.4,
+          27929471.66889632
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ac0304e0-00a2-498a-9d5a-7465209de37a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          279174422.9633333,
+          20269252.83,
+          177283392.14286077,
+          10824497.140374558,
+          290146481.8803987,
+          22499004.51333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ac2034f1-4d6d-42b4-bddd-f1c49e399d22"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ac276944-85ac-4d5b-be6a-d32e66f55964"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ac33812b-305f-410c-992c-4fc6ef3dd83e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ac537ea8-8eab-4e83-96fb-29a03bb6b176"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1025076005.01,
+          1114934727.81,
+          923492433.3323388,
+          1591540984.2995334,
+          2235155829.19,
+          4505517289.353333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ac540183-b1ff-476a-b605-5ce8aecc527a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          8540470.5,
+          11861154.836666666,
+          4475516.762894539,
+          6795389.056003225,
+          22374031.55666667,
+          16196302.053511705
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ac74f2ce-e7ae-4296-8f64-05e3f171218d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          23101.123745819397,
+          4597.341137123746,
+          3838.391414275135,
+          3455.853473191491,
+          23101.123745819397,
+          4973.454849498327
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "aca4be6f-7d5a-48d0-8d3b-b94dc8e5cd94"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          9152235.495016612,
+          0.0,
+          4384348.572708475,
+          0.0,
+          10456017.15282392
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ad1c671f-deb6-47ce-9ed3-984663ee7c65"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          447.47157190635454,
+          435.4916387959866,
+          332.0711478759855,
+          323.03109541896066,
+          451.36333333333334,
+          437.75666666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ad57018a-3fa1-491e-827a-b843124c62a9"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          38.1,
+          5.3,
+          38.30550798542347,
+          5.539913193778535,
+          38.93666666666667,
+          7.123128119800333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ad5ac8d9-a6f1-452a-862a-cf992362cb62"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3248.8322147651006,
+          115249654.58053692,
+          3127.6738439350347,
+          113959612.110502,
+          49632.813953488374,
+          155275377.00332227
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ad65cd41-e1ff-4618-9526-c210fdbafa74"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          279174422.9633333,
+          20269253.73,
+          177283392.14286077,
+          10824498.071222823,
+          290146481.8803987,
+          22499005.633333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ad8287ff-0a1e-44fd-9f90-26c0ad5a56ad"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          119298259.32,
+          416939922.38,
+          198699829.9867842,
+          429873526.6193445,
+          1841259255.05,
+          1329713096.6414473
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ad9488d1-f973-4301-81ac-25d690ddeef7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1301.2966666666666,
+          3102.4,
+          2850.2471502842773,
+          3376.14948851765,
+          10559.747088186356,
+          4005.85690515807
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ae0df7b5-31d2-407d-817a-3a5a7907886e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          250497.70666666667,
+          200302.11333333334,
+          926464.8216523867,
+          1138568.283047231,
+          19071358.795379538,
+          12271797.33
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ae137ca3-c132-4c9e-902e-231ff0dc511b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          288.2633333333333,
+          838931.5166666667,
+          288.49904145979855,
+          1186908.8956826953,
+          292.4139072847682,
+          12141126.644518273
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ae20d05c-36bd-4a38-afd4-e15377b69d9d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2199.1666666666665,
+          53504180.663333334,
+          2027.8468800546032,
+          52580518.05882409,
+          2767.562913907285,
+          69252438.24080268
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ae2605a4-a078-4811-8800-2b2d4412c3e7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          44.39867109634552,
+          110.24252491694352,
+          45.225545243606966,
+          100.00193396564167,
+          46.54333333333334,
+          146.26666666666668
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ae305595-159b-46ee-b7ca-fe1bb8d7c17f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          262022972.53820598,
+          13546828.013289036,
+          192170730.01153713,
+          19686014.05141339,
+          312876628.2086093,
+          91969178.66777408
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ae684268-ad51-4ffd-a1c0-b7aa5b4cdd90"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "aec58254-b34a-4e82-83b3-dadacf9e49a1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          16423.66,
+          3602.056666666667,
+          14951.561910908707,
+          3074.08122348533,
+          30531.521594684385,
+          7937.9601328903655
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "af143114-ae97-469b-a33f-fcf643bb1c76"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          21820076.733333334,
+          57020524.57,
+          56881060.04961005,
+          86833900.41365792,
+          132262123.49666667,
+          161951471.55149502
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "af59171b-0ecc-4b67-ac16-8fbe30589afd"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          210166035.0735786,
+          2010565955.7257526,
+          232707773.26899776,
+          1813998370.8634603,
+          1179848654.1533334,
+          2445746615.1409397
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "afa8ca87-db65-4b19-8514-b5345abef9bb"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          607293249.8266667,
+          43378729.02666666,
+          519673235.1022077,
+          136472198.2088803,
+          2402217749.9368773,
+          2321777079.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "afe48180-19e0-48c5-8c92-eac23febfab1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3147509125.1066666,
+          3541994473.0466666,
+          2136594572.1079469,
+          2621112504.0243745,
+          6022401088.65,
+          5283005588.511628
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "afeb63dd-fcfd-49db-9e87-29e537e6fd6b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          629.5813953488372,
+          27570830.14285714,
+          553.9503323415963,
+          19893254.90828476,
+          1264.0033112582782,
+          61157593.95
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b00c9ff4-6a3f-4475-af17-32042185da5f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          32293.383333333335,
+          11433.22,
+          336079.0106207829,
+          10225.822498022337,
+          19319018.4551495,
+          175095.00664451826
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b0250d18-e8de-406c-9956-851ecd2dc0f6"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1322552284.4247491,
+          1350076108.5183947,
+          790148941.2197919,
+          413540186.11984587,
+          1354512929.1096346,
+          1861651965.1162791
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b031653d-0746-4a53-bcb0-17735a60d939"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          952.7324414715719,
+          372.5819397993311,
+          1078.6484813649429,
+          407.59346946206716,
+          2639.358803986711,
+          1315.345514950166
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b0cc2e3b-9f09-446e-a960-6a62abcdff7f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1881601378.1533334,
+          7902578347.263333,
+          2511100174.0132685,
+          4252877993.772178,
+          12785869094.94,
+          9325632545.85
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b0d6ff8f-f763-4b11-a0ec-767db94a4cdc"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          9468803123.15719,
+          5907223614.394649,
+          10553457510.882214,
+          3869668886.859511,
+          15890483523.006712,
+          10342757185.020134
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b14195c8-ccd2-4095-bba9-1e1e04760574"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          165.90033222591362,
+          249.93355481727573,
+          176.64103783810913,
+          452.21028740608085,
+          1038.8266666666666,
+          23520.533333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b1710dc3-6b76-4402-8d76-24af9e21a0c4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          50725402.74,
+          577626.97,
+          20451821.500839997,
+          271841.4610290982,
+          50725402.74,
+          704172.6
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b19d79ee-cffd-44d7-8792-604caf241411"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          22807403.54,
+          4968.966666666666,
+          16389999.358493838,
+          94735.44285610573,
+          236588706.20265782,
+          1892464.6666666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b1ba457f-ff1c-439e-ba25-1e52076bec93"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          30951017.664451826,
+          0.0,
+          26407113.783252433,
+          0.0,
+          43709623.22591362
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b1da962b-0830-4706-a89c-2b2ca82faa2a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1191879387.4006622,
+          1240722057.4536424,
+          1601272837.2161646,
+          1123033248.386184,
+          4957537178.152823,
+          5560371646.880199
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b1e2393e-5749-4bb8-b9c3-6dbcdfa78557"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          684690850.1533333,
+          39130054.906666666,
+          394318069.8629565,
+          39886604.253349535,
+          1212383589.7906976,
+          154630085.85333332
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b2003241-e0bd-4734-93d6-92fc0f6ac4fe"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          13151.83,
+          1947.92,
+          10361.061208222769,
+          1730.55356302682,
+          25743.023294509152,
+          2684.9632107023413
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b2918a27-23fc-4fb0-ba9e-6d32f63977b2"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          252.56,
+          98.87,
+          421.1101268835171,
+          126.34325567408808,
+          1535.797342192691,
+          302.00666666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b31af1ef-77a7-4cca-a6e8-e0d50787917f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1564523.6589403974,
+          3831499.738410596,
+          1019290.839548195,
+          10957407.704756534,
+          12003583.701666666,
+          35524163.876666665
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b37e10c4-9552-4d63-8f06-79ff83c0a439"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3743.724252491694,
+          5883.09634551495,
+          3737.028627741876,
+          5461.102896486549,
+          5405.779264214047,
+          7024.959866220735
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b3a1ede6-d417-4aad-9294-211de943fdd6"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          56.033222591362126,
+          0.0,
+          44.21999357272675,
+          0.0,
+          76.25827814569537
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b3c9b555-7f1d-47d7-9031-079edac22f85"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          9219403.284280937,
+          3487030.551839465,
+          13699279.787904901,
+          3674396.2546177036,
+          134498740.48675495,
+          12922437.866220735
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b3edecf3-f344-40c7-87cf-be30385dbaf8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          48040657.7641196,
+          0.0,
+          48441561.477283806,
+          0.0,
+          65648331.62458472
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b44df27c-8312-4673-81a8-bd68413992ba"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1007.9333333333333,
+          19575.533333333333,
+          677.5372008734706,
+          589373.0212074394,
+          1816.3687707641195,
+          20325097.203333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b44eaa26-0f7a-4874-af94-b81b003264e4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1074211744.5266666,
+          313668005.1666667,
+          637677644.5206776,
+          352559265.4545714,
+          2216609037.7391305,
+          510091280.42524916
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b4738f69-42a7-46e7-8356-663cf725bff5"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1777951.7866666666,
+          1009479636.52,
+          1163111.271362509,
+          871031036.0705466,
+          4729748.322147651,
+          1806174089.2
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b478a077-1a79-4471-b3e5-7e888197fa2e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          15787620.139534883,
+          16573.50166112957,
+          15125935.167960584,
+          1852.86335635693,
+          23575569.637873754,
+          65995.87666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b4a0784c-deb6-4edb-9975-70274b9e33cd"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          4139944516.0733333,
+          3838915839.92,
+          4696264644.513926,
+          3145080561.0336275,
+          10133803861.255814,
+          14355133193.593334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b4a38235-7e8e-4579-9cc7-88f6a5fe4d8f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          37.87290969899666,
+          5.418060200668896,
+          38.131659734705956,
+          5.511392794407922,
+          41.063545150501675,
+          6.192691029900332
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b4b0a9cb-9224-4923-abb3-7415fe8a6dbd"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1444.7748344370862,
+          734081.6456953642,
+          1319.4394010787496,
+          667648.9089804367,
+          1629.6883333333333,
+          6419573.209302326
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b5139f6c-0614-46b5-abba-d489a12c5020"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          18097.92,
+          69686.48,
+          80630.51292017089,
+          4821162.420435299,
+          444320.6605657238,
+          17208705.76
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b51879d5-99bd-476f-b051-1c194b76cfb2"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2830491264.71,
+          2819682617.69,
+          3128334470.8460283,
+          2370239258.188307,
+          8584881917.262459,
+          11359822505.79
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b55e4183-a474-4485-9823-3be4651c46e2"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          6.4,
+          14.483333333333333,
+          6.419483888969128,
+          14.23415692077392,
+          7.063545150501672,
+          15.8
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b576a90f-5beb-4ec8-83a5-c0bebd0b6533"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          144109639.84666666,
+          273935171.57,
+          173261302.2989078,
+          224096859.81641883,
+          343564856.7133333,
+          2923938355.471572
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b5963593-0b98-4b89-adf4-1023cc4c72a4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          11.549668874172186,
+          14.07615894039735,
+          8.92235148624579,
+          11.26268788830018,
+          13.727574750830565,
+          54.745
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b5aa5e1a-55c3-4693-a519-d4031a2e52fe"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          30332.976666666666,
+          139166.29,
+          1801939.1333504594,
+          300529.9433551509,
+          12125791.11,
+          1947158.0282861898
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b6b872c2-a7e2-4665-ad89-795f61bc48ea"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          4104287.66,
+          235504.63666666666,
+          1361426.6462957119,
+          2456258.461523288,
+          9515389.18,
+          11510502.996655518
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b6dc006e-5cfd-4c21-b576-6a954177c050"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          311741.43333333335,
+          435699.4033333333,
+          360982.9416722325,
+          3000076.2052529473,
+          746899.292358804,
+          52932062.1627907
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b7b741da-5847-4bcb-8dc3-179e3a3dd54b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          23.14950166112957,
+          0.9036544850498339,
+          14.825710148856361,
+          0.9107598010319639,
+          47.45333333333333,
+          1.3554817275747508
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b7b8f440-5e5f-4b31-b1d9-d5a598ab5415"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          107.95317725752508,
+          5225.846153846154,
+          107.09482976911269,
+          5572.731219584214,
+          109.31333333333333,
+          8181.593333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b7e1373e-17b5-4561-80c9-b5a0fbab0d33"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          481079070.65,
+          280943934.27666664,
+          381584952.0658225,
+          387055447.805146,
+          5835864433.557047,
+          3510713159.665563
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b7f8dc8d-7fd7-415f-8daa-44d16e05403e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3966538770.8,
+          2339848598.133333,
+          3094589674.6580396,
+          3268371366.618864,
+          7520665116.493333,
+          11210436187.335548
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b80a4c95-1b57-450c-a86d-25de68a303b9"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          10.834437086092715,
+          13.506622516556291,
+          9.02556710421888,
+          11.213903459602973,
+          33.475083056478404,
+          56.23833333333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b85d9136-670a-4bdb-b877-ee0c376bac30"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          208.9202657807309,
+          86.22591362126246,
+          209.63428170688695,
+          89.70123246916184,
+          212.67333333333335,
+          340.78145695364236
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b86df08f-c9d5-48f8-9256-24d04e3b845f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          20211190.534883723,
+          19093642.451827243,
+          17468876.69517852,
+          7710591.198011662,
+          26890870.295681063,
+          21234597.973244146
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b8a9b384-a396-4877-8981-eb1681863166"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2.9,
+          15.876666666666667,
+          2.90953099222838,
+          15.589696915467888,
+          3.2114093959731544,
+          17.262458471760798
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b8ae15ec-5ab1-4136-8742-d7c580c7fa17"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          33.50333333333333,
+          24.046666666666667,
+          9780017.415841537,
+          13265037.310801337,
+          279581580.641196,
+          289191420.45666665
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b8d7dbcf-4326-454e-99c6-0a4fd5af81bf"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          891545.3733333333,
+          341086.87333333335,
+          1509478.2123088082,
+          808362.2853458539,
+          18541644.953333333,
+          2193164.8733333335
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b90fce2b-7f04-4901-b025-8b46a66f6ccf"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          78.32775919732441,
+          132.45484949832775,
+          56.496991940104365,
+          187.0876022304176,
+          88.61409395973155,
+          528.9666666666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b929d646-5fcb-4818-a9a8-18e86b792c8a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2678735.1705685616,
+          1323594.7926421405,
+          2942368.9142454076,
+          1166669.2627418586,
+          70685132.50501673,
+          1923496.7133333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b966f5f6-46bf-4a8a-ac6a-a73d67cc7416"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          156.37,
+          242.54333333333332,
+          890.5709958077704,
+          497.8217526040869,
+          12600.475873544094,
+          2371.723793677205
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b9cd992f-be68-44b5-b466-c18e63d6b539"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b9f79c25-3bc2-4c59-8103-c1f496d07308"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          144931670.05315614,
+          154949651.93023255,
+          180731884.88989243,
+          166628944.3441331,
+          372834016.64,
+          366688015.65
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "b9f8f440-038d-4a4e-bb99-6afdd111d953"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3867.6345514950167,
+          3858.9169435215945,
+          3764.0965794509048,
+          4006.540672325517,
+          6107.063122923588,
+          6167.463333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ba5f76b0-1612-4e9f-bfc5-e9f5d8bbaf75"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          83928770.77333333,
+          9463023.713333333,
+          30480014.69490306,
+          3549763.4028206235,
+          110635036.03322259,
+          13366048.243333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ba9322c1-93f2-409f-9ca8-163031e89fc5"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          297062624.7033333,
+          257739457.88,
+          234441308.36083725,
+          205498788.13363984,
+          417522523.49333334,
+          324887812.8471761
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "badce9f7-75f9-4033-839b-4abf274ba34a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          117066113.35451505,
+          106341202.93979932,
+          83526365.92571951,
+          55248467.18858855,
+          465739467.44518274,
+          287446016.29
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "baf94437-b3b0-49b6-84cf-09c027e9d4f8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          10064187.216666667,
+          188.74,
+          5728081.342306856,
+          164.76111927996786,
+          32915906.19063545,
+          236.24916943521595
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "bb3aeb56-5f86-4023-acc7-557780a35424"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          19.526666666666667,
+          17.456666666666667,
+          20.31564545570855,
+          17.483587218070888,
+          24.006666666666668,
+          18.19933554817276
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "bb5ab83d-82f7-4984-8737-a10faff5e16f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "bb783906-5d3c-461a-adca-a6151b843aac"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          9488.36877076412,
+          36889.93023255814,
+          9977.981762399517,
+          44819.62270359779,
+          27252.26732673267,
+          151490.76490066224
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "bbe48914-6d1c-46c9-8086-8c328d3bafdc"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          29.385382059800666,
+          96667659.17607974,
+          32.828892019377186,
+          246874712.2636246,
+          44.87,
+          2161926571.049834
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "bbe76de0-e9b4-45e5-add5-5415245a28f7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          11923.536666666667,
+          27.203333333333333,
+          3562862.1426457562,
+          27.328123459120384,
+          123373987.54333334,
+          37.336666666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "bc06fe95-4236-4a26-b343-b1976d7f8e39"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          9.28476821192053,
+          11.079470198675496,
+          9.688209087484067,
+          11.734347056682084,
+          10.471571906354516,
+          12.777408637873755
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "bc1a44f4-7ae8-4a89-ad19-241866f73378"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          286.13666666666666,
+          110.64333333333333,
+          460.9120197163446,
+          138.33321322966484,
+          1376.1063122923588,
+          344.0066445182724
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "bc54f878-78a5-4b91-8241-3041224c3cce"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          413.59,
+          9197998.536666667,
+          368.14227687978826,
+          63109561.76312202,
+          2632.4584717607972,
+          2606133863.7109632
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "bc6ced75-3059-458a-a60f-203fa1fe4066"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          9.853333333333333,
+          12.09,
+          20010.00974029201,
+          7512931.9493323425,
+          263950.79333333333,
+          107850832.29666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "bc6d5311-3173-490e-8ea0-09d12d6518d5"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          408.85,
+          1296.99,
+          408.44200472105746,
+          1287.1323718616736,
+          431.13643926788683,
+          1316.6066666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "bc857d8e-0ceb-47fa-83e9-810b75c5aa82"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          35.87959866220736,
+          0.0,
+          36.01342771061729,
+          0.0,
+          36.96
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "bc96eb08-e225-484c-b1ff-c17a181a84b9"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          133036873.90697674,
+          6132347.38538206,
+          125351148.37301777,
+          17477302.6782695,
+          283669407.1960133,
+          78658249.91362126
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "bc9dece8-ebf6-47bb-bf46-f9971f920528"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          97900.46179401994,
+          243098.39202657808,
+          93616.56657005125,
+          239825.38655511805,
+          117816.13,
+          250088.13666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "bcd19a90-051d-4aa5-9a20-436e23c038c0"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          40562.67333333333,
+          11313.03,
+          38226.300049321435,
+          11765.234518565621,
+          73485.23666666666,
+          31579.566666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "bd04925e-e0bf-4bc0-aeed-6cbcd277660a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          674.4635761589404,
+          64.33112582781457,
+          471.4737841056783,
+          69.61562210602384,
+          707.6744186046511,
+          97.1328903654485
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "bd0b0011-52eb-452b-bd92-ee343984ce57"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "bd390604-e36a-45fe-b40a-b8bd85b6856c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          366043.2,
+          1057358.2833333334,
+          362976.512675468,
+          1064075.8337096581,
+          426793.4019933555,
+          1085582.1966666668
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "bdaeefa1-99e5-41e9-b8de-13e10264e3da"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          34.0,
+          0.0,
+          34.01477333837264,
+          0.0,
+          34.473333333333336,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "bdf51392-7991-4564-bc29-c409c4bd840b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          5099.23745819398,
+          131968.7424749164,
+          4958.99600512597,
+          102370.95517253551,
+          7508.631229235881,
+          135517.40333333332
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "be1ba63d-b53c-43ab-8d16-17b8c4517e18"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2479.4566666666665,
+          33417191.08,
+          2870.53106598023,
+          36746935.01125875,
+          3880.153333333333,
+          72762480.43333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "be2dcbf1-13e0-4c2b-822a-371c73f7ef28"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3140120797.5466666,
+          1924233155.9466667,
+          2907132798.6696944,
+          1918189608.52014,
+          7457186082.346666,
+          3152682094.564784
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "be7a90ca-1e4b-41b4-8710-042be5a070fa"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          152299539.35,
+          1022830301.7266667,
+          114915540.78365666,
+          889682823.8797771,
+          444439870.24161077,
+          1818452499.0333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "beb2d2ce-a399-406c-b323-ecd1eae09269"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          11.786666666666667,
+          168.32,
+          11.512898048007507,
+          141.67371831482558,
+          16.996666666666666,
+          178.3920265780731
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "bfc4f0d7-3852-46bb-ad3a-930bdcd1cf20"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          186.37541528239203,
+          2463.2225913621264,
+          185.881808562183,
+          2614.7621172322783,
+          189.09395973154363,
+          9046.05
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "bfff3423-7cbf-46a3-9f5a-5cfbb34cd382"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          25.367549668874172,
+          31.605960264900663,
+          25.545821303442366,
+          32.04480906161856,
+          26.232558139534884,
+          32.78
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c0130d43-abac-4dc2-9b91-4e0d39e608bd"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2.622516556291391,
+          141.4503311258278,
+          3.3763653832567657,
+          141.9263053726949,
+          12.873333333333333,
+          194.82
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c0f795da-5b2f-4652-b465-c220d662e892"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          14.215946843853821,
+          13.631229235880399,
+          14.028167795379755,
+          13.453198763560247,
+          15.56,
+          14.92
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c1671512-4f49-46ba-9264-aeb5287eaf17"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          638627095.6533333,
+          797221837.5233333,
+          635782723.0555457,
+          724704704.9736332,
+          2009881269.4433334,
+          3270100812.84193
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c1a05ef7-133c-4ba9-a46a-fad8d55c17e9"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          6948193842.604651,
+          9965595781.315615,
+          9372276761.826944,
+          9063909794.48403,
+          18120239562.312294,
+          17339047243.451504
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c1b43827-bd76-4f4a-872a-0e2ba1816e6b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          251.68106312292358,
+          251.68106312292358,
+          252.3730846558694,
+          252.71470161525076,
+          255.32441471571906,
+          255.8829431438127
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c1f65e8f-588f-4863-93e7-2b88cd228a47"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c23442f2-3e0e-4fb0-b0be-fc1f3e2ea273"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          235145822.45333335,
+          6311052.243333333,
+          120979470.67586699,
+          32662324.972556267,
+          373370085.0,
+          353610405.08
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c23e44cf-a432-4564-bac6-3eccf4b49868"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          36.16722408026756,
+          21.735785953177256,
+          33.636875016559976,
+          21.256120652036607,
+          44.785953177257525,
+          22.132450331125828
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c2535121-6f0a-44f4-bab8-ebde3099606d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          29816228.913333334,
+          282.15,
+          25294194.079696484,
+          305.8221714241519,
+          58636190.49833887,
+          859.6166666666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c26b818b-0512-4be8-9740-62f2ba60da81"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          4510.735785953178,
+          4277.645484949833,
+          3202.0248474312266,
+          3664.521957802691,
+          6477.016611295681,
+          24343.784053156145
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c29d438f-0d92-44e0-a730-1b74577463b5"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          282.72240802675583,
+          839839.2742474916,
+          280.9439660963797,
+          1222685.6798118143,
+          283.86333333333334,
+          15711192.653198654
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c2a86c96-75ac-4bd4-a540-52acdb190e82"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          72.12,
+          52.803333333333335,
+          71.56988462638449,
+          52.445183191502004,
+          73.29617304492513,
+          54.597337770382694
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c2af009b-d919-4ead-b5d4-f4d1e05318e0"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c2b1e809-0e87-438e-a0f4-ee1e3b09f831"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          67194.51666666666,
+          41083223.71333333,
+          37125.5698195706,
+          38862741.21810904,
+          105379.75167785234,
+          117963780.06953642
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c2d5f624-3636-4670-9954-62760ed1c293"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          28641.478405315615,
+          2595.6744186046512,
+          39221.306733043515,
+          20195.45321349718,
+          949308.6677852349,
+          957304.9197324414
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c310cf90-0422-4e84-8cf0-47ba377cff1c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          39.990033222591364,
+          460.7906976744186,
+          63.59965391955972,
+          468.2012166414026,
+          4121.261589403974,
+          1442.3666666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c335e87a-a00f-48c9-9e5a-71693e8ea6c0"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          13035.936877076412,
+          830030.9667774086,
+          13391.4137496794,
+          1319362.9341964326,
+          22529.56,
+          13616045.376666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c35754f2-9b40-432e-88db-84138eb6e783"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          217.25913621262458,
+          13427152.986710964,
+          228.21477699425535,
+          16603473.119027214,
+          323.0066225165563,
+          24662821.12624585
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c39b0dd0-dfb4-4d59-90b0-0a85f2485d68"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          262022972.53820598,
+          13546828.013289036,
+          192170695.0165629,
+          19686010.44904957,
+          312876628.2086093,
+          91969178.66777408
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c3e109c3-4e36-4cf4-a5c9-d91e2f8648a5"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c417031b-98e1-4dc9-a737-f7d75f8604ad"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          93008898.34883721,
+          29965036.551495016,
+          89233808.72002031,
+          31880137.44192911,
+          136992048.72757477,
+          49597550.89333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c41c5af1-6375-4f4b-aec0-a89444b6b527"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          53.013333333333335,
+          55.32,
+          52.62400843241025,
+          54.87634260856452,
+          54.46666666666667,
+          56.74
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c4385623-973b-425f-978e-f1e67fbacc85"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1625.23178807947,
+          2306.1887417218545,
+          1882.8984046867977,
+          3499.735930333477,
+          3706.7740863787376,
+          9045.451827242525
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c4419bc4-2cbf-4bc8-9260-0cda17a00970"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          45152.44039735099,
+          50878.23841059603,
+          47199.1301108635,
+          52103.88944591693,
+          57686.38870431894,
+          69472.52491694353
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c48751f8-34ad-439c-ac75-a1a04b5ed972"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          174382247.5,
+          50506844.11666667,
+          165441726.65266216,
+          51070097.219482355,
+          231199972.91666666,
+          69120490.63
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c4f0c295-1abe-4464-8089-9d7606c4c37f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          18164487.98,
+          35.406666666666666,
+          27243014.18728757,
+          44.75314750230358,
+          127763164.6156406,
+          189.540765391015
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c5169868-38fa-4809-84d3-81bfd8bd97a8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1711.103678929766,
+          17156309.337792642,
+          1594.5972974090198,
+          11568677.639475038,
+          2178.5333333333333,
+          19330426.863333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c517debb-5428-4cdf-82da-cdd396544e25"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1193249432.34,
+          947664857.1633333,
+          1055932837.0297973,
+          714737326.3535742,
+          1697088202.4833333,
+          1364746615.5382059
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c5bf4d76-6da0-44a1-afeb-6127ada78f16"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          311.0993377483444,
+          0.0,
+          138.13817396970043,
+          0.0,
+          313.7926421404682,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c5bfe097-4a36-46db-b2c3-adff4f18db66"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          30.433333333333334,
+          2500.2833333333333,
+          30.569054972552138,
+          3279.8808437342523,
+          31.345514950166113,
+          155574.89666666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c63fc8f0-7c84-43e5-9430-e2fca1bedfcb"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1992.5266666666666,
+          2381.883333333333,
+          2032.2735807073736,
+          2374.686421416913,
+          2187.708609271523,
+          2539.6026490066224
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c648e129-b7b9-4c78-bbf3-5bc66018c2f1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          66.65666666666667,
+          67.67333333333333,
+          176.9496325464711,
+          71.7513284488017,
+          1299.1233333333332,
+          190.49
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c65bd8e2-6e6a-421f-82df-edea4123a75f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          143563719.58,
+          67597503.38666667,
+          83692358.0072686,
+          130083979.77057165,
+          262741743.9003322,
+          1292438367.6533334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c662da28-422a-421a-b184-c6c246d67b6e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3.8133333333333335,
+          147.92666666666668,
+          12.804126808159147,
+          123.20188895584714,
+          68.85333333333334,
+          177.97333333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c67a3ca0-0cba-410a-8345-3dfa4a0fb559"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2.9,
+          13.7,
+          2.909675279554481,
+          14.807895059110995,
+          3.19,
+          16.385382059800666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c68d5615-2d47-4fde-b8be-bca37088df5e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          18782609.916666668,
+          19329872.086666666,
+          32593846.460382123,
+          35675835.24463649,
+          92229353.80398671,
+          189937254.7641196
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c69101bb-1942-4400-b11f-6ea34ee7e363"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3607477111.4916387,
+          3202411290.51505,
+          2669569613.100766,
+          2175113697.684665,
+          5357191563.375415,
+          6124191248.2140465
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c73589e3-fd22-4fe7-bc54-4c0ae4de7efc"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          6239700972.325582,
+          5818736883.903654,
+          7885124471.514888,
+          3736492028.215465,
+          16146277612.426666,
+          9331514730.658863
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c7af49ba-94ec-413a-b819-14b37888133e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          4.0,
+          0.0,
+          4.02921687671287,
+          0.0,
+          4.4,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c7c2ba71-7c2a-433f-b643-99d5e5b9b26d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2060919439.8966668,
+          1227082458.43,
+          1725476511.486331,
+          760986203.6012186,
+          10177055426.611296,
+          4592870666.754153
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c7f5e6de-99d1-4a67-9bf0-ae9aee46dba1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          10.666666666666666,
+          10.666666666666666,
+          592.3805011842039,
+          65.64829895041964,
+          9061.16,
+          926.8866666666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c7fe2cc8-d104-461c-82c8-81a3deca515c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          364192862.94,
+          2205117983.346667,
+          157628180.95362028,
+          716675922.6315578,
+          495997187.98,
+          3150478968.7516556
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c80fdf8c-c8b4-4dc2-a27a-ff02df72d61b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          752082.8833333333,
+          6243837.906666666,
+          1053381.5625679116,
+          16237218.694274936,
+          3642801.3866666667,
+          117964478.44518273
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c83ba1d9-bff1-4947-8585-dc997f3be6a5"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          462868.30666666664,
+          32673773.866666667,
+          349756.79411487124,
+          31659694.58338553,
+          1738013.1733333333,
+          106651532.07
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c854bca5-a89b-44aa-b307-46c4b712d592"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c8b67507-835d-47b7-b137-4bc0d1a7104d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          212223657.36,
+          264492538.52333334,
+          142541357.30418384,
+          211416282.73520434,
+          237149529.77333334,
+          381346256.19666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c8bee5bf-01ee-4d42-89fb-894e85597692"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          78.32333333333334,
+          114.98333333333333,
+          78.63724268302248,
+          107.73595493620417,
+          82.71760797342192,
+          125.59468438538207
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c90af496-4a28-4cd1-a177-b27967b34f06"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          8.893333333333333,
+          9197574.503333334,
+          9.280886034982535,
+          63109126.674758755,
+          12.259136212624584,
+          2606133395.5149503
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c94845ef-6002-45a8-98cb-a4f207e6b31b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          63322.45,
+          122.91333333333333,
+          67700.88924038383,
+          112.77766574857215,
+          165777.81697171382,
+          173.16611295681062
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c9a4f7b5-3126-4ec9-b5d0-178117a60880"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          656353886.6933334,
+          296855816.0966667,
+          514809736.7384896,
+          316861978.9838939,
+          932746154.37,
+          942535922.2376238
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c9aef082-e342-4e48-8c9a-57805a1d9d48"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          18.12,
+          185.92333333333335,
+          18.98567838050929,
+          180.55830396776133,
+          33.66112956810631,
+          259.72
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c9beda45-f721-47b9-8b22-1f6f991212e3"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          36.88,
+          330.0233333333333,
+          36.53624579215428,
+          817.9785447350826,
+          39.33774834437086,
+          5660.813953488372
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c9c70e8d-8f14-44e4-ada6-d1ba6c3e1414"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          43.54849498327759,
+          80.25752508361204,
+          43.337938634157425,
+          80.2404446561318,
+          45.07,
+          82.78
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c9d3556a-bb2d-4b13-89ae-eb626906a0f1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          51.714285714285715,
+          49.95348837209303,
+          52.2666696055496,
+          70.39794075832235,
+          54.15614617940199,
+          4131.290113452188
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c9de51c7-7e2d-4570-ac0a-a5a652237dbc"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1691815172.7142856,
+          853965874.7574751,
+          1250431086.6296616,
+          702182679.0559552,
+          2195876124.208609,
+          1168274375.6138613
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c9f58189-ad91-44df-b352-69d9ea80a002"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          331.75666666666666,
+          1.3933333333333333,
+          307.1558573481341,
+          2.3508493407390723,
+          649.5747508305648,
+          4.64
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "c9fd12ba-3ffc-4336-9d0c-a2394dfe835d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          307559.65,
+          142290.88333333333,
+          48630661.07519215,
+          77714102.99571595,
+          255597344.87853578,
+          563157667.0233333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ca2cff36-bdaf-4158-95fc-bd1bcaf41df2"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3116417.3233333332,
+          61496770.376666665,
+          5695757.7010553945,
+          25428518.303070236,
+          106566855.90365449,
+          408980845.65
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ca39e8f6-2fbd-4d04-ba99-153276b2bc99"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1025.8,
+          134713580.76333332,
+          1109.304010343837,
+          91452662.96156815,
+          2625.0733333333333,
+          159983666.18272427
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "caa54ef7-b04a-4f74-882c-889a0a57c95e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1686200409.29,
+          1270126633.4533334,
+          1873344015.3982778,
+          1206395468.2892585,
+          6003579502.176666,
+          2428135173.3590603
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "cac678e8-45d9-4472-a7b3-61d498b19b53"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          40353418.416666664,
+          161850560.66,
+          263122062.0969068,
+          144093841.55845737,
+          3021694172.4566665,
+          264974281.04666665
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "cb832ef3-f739-4bc3-b9ef-ffac677e5dd8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          31239.147157190637,
+          578.6086956521739,
+          31182.676633040504,
+          501.86860693988274,
+          62526.72,
+          4265.963576158941
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "cc5f3b04-63ee-4f93-89c2-ff9d7cec0f13"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          60.36,
+          235.21333333333334,
+          167.73791126867124,
+          259.7089117554928,
+          10992.86,
+          830.8172757475083
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "cccb78db-0584-4c94-ae86-8528f036ad77"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          9182031251.463333,
+          10680972086.913334,
+          8632234134.324621,
+          10677368749.436893,
+          16147330075.339933,
+          22023397929.46154
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "cd200521-330b-4fa8-b689-70c18e69bb67"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          10351204.413333334,
+          19302532.18,
+          791885.1140430385,
+          49921658.01711785,
+          10373933.196666667,
+          157500966.60333332
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "cd6722d5-af7f-4d81-a27b-1f111e56c5b2"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          4.76,
+          220.07333333333332,
+          4.970138278017338,
+          229.77287727927273,
+          11.593959731543624,
+          270.81333333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "cdb20727-90f0-4c2c-8e6d-6fac841703fd"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          38658.56146179402,
+          10702805.37873754,
+          202170.6976019281,
+          15645206.28142469,
+          3328630.2933333335,
+          33739984.53333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ce3c927c-fb1e-47ed-9755-4c2e5cfd0e26"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          50016.05016722408,
+          22291.5618729097,
+          46636.79122281916,
+          21672.627150026256,
+          51212.37919463087,
+          27343.61744966443
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ce8f3f15-dd6b-49f7-9815-d0f830e1704b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          34.21333333333333,
+          106.80333333333333,
+          34.149345775001635,
+          95.40304303713519,
+          34.442953020134226,
+          117.05980066445183
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "cecf64bf-c5b5-4ad0-8f42-e213434f1c8e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "cee65467-4691-475c-a62a-7271db8ff9a1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          92.97333333333333,
+          117.2,
+          78.85164142756399,
+          111.9639339282369,
+          100.00996677740864,
+          130.42857142857142
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ceecb999-0473-4a5a-bbbb-d31d27c87e5d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          399.2733333333333,
+          470.1066666666667,
+          339.4900451258416,
+          457.9508999475541,
+          579.8996655518395,
+          595.33
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "cf450d34-80f9-4d5e-96c2-423f0a3bde05"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          42313.486666666664,
+          15867.086666666666,
+          45600.36701381744,
+          17973.825401269223,
+          104538.71237458194,
+          94765.32666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "cf62a005-e362-46b9-a3a6-325028dac384"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          147771817.17333335,
+          4433240.51,
+          59246503.66340154,
+          3643192.018784158,
+          486320286.43666667,
+          31905810.403333332
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "cf86b03f-5196-4733-a09d-0224957ba9f7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          907.0833333333334,
+          669.0466666666666,
+          1715.674500235282,
+          770.5213711587315,
+          6989.558139534884,
+          1230.2466666666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "cf95c776-7c22-45e0-ad5c-004758163354"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          448.3820598006645,
+          1.149501661129568,
+          437.35648958907154,
+          4.0118951742757964,
+          1353.47,
+          15.369127516778523
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "cfab41d6-3fa5-4373-97b0-d0309b75787c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          859.33,
+          575.9266666666666,
+          961.3019191924255,
+          1354.1625238679878,
+          1735.0836120401339,
+          38390.929765886285
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "cff07a10-55b1-487f-87a6-4d1078926e5d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          6416886.663333333,
+          18149892.86,
+          43747584.21123294,
+          32991052.832479265,
+          416480373.50333333,
+          168371786.06644517
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "cff4798f-d9e2-4fc4-9da3-70632c6311ab"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          264902.5083056478,
+          1004048.4916943521,
+          373810.55795508623,
+          1084422.0951707484,
+          1181577.6478405315,
+          1970728.2666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d002e64a-83fc-4ec4-bc46-bda9f0797d80"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          42.68333333333333,
+          79.16,
+          42.829393930616504,
+          79.2374039939984,
+          43.78666666666667,
+          80.5
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d0036e59-f4c0-4d43-b044-4b7b42493af9"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          166489628.74666667,
+          41970910.45666666,
+          110823066.17106897,
+          25044009.13370463,
+          427233013.1627907,
+          95499922.71096346
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d025b23f-9550-4555-958a-47a5dcef3c39"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2951202928.0533333,
+          7929438733.28,
+          3427006928.421931,
+          3672672646.1903095,
+          8134323598.613334,
+          11000711761.913622
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d02a13a6-b710-46ef-9ee4-250e09f1a37f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          100855989.24,
+          183166558.25,
+          79666815.37101997,
+          188403045.69038883,
+          180466341.27242523,
+          795186589.5083057
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d04c73f8-db92-4732-ad93-c650e164f0f8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1476244393.5451505,
+          3114803015.2943144,
+          1274649408.5875392,
+          2643358626.988592,
+          1847106134.7019868,
+          5153433152.023179
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d04dbc76-f3cd-48a7-83ca-314b9aa5a1f7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          55062040.39666667,
+          36726939.85333333,
+          63201488.228646204,
+          38229891.13854037,
+          92011400.24,
+          162581554.11666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d0ad0d4f-2f3b-4733-934d-476639ed5cea"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          257939.4701986755,
+          145742.6059602649,
+          261125.0222710068,
+          146504.6381236577,
+          271348.816360601,
+          160126.95033112582
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d1ff1057-25d7-4793-bbe4-85df185237ce"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          193111915.49006623,
+          488785059.3509934,
+          233508455.63863105,
+          449448178.8315083,
+          1955423279.2683334,
+          4859095183.095
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d2017c5e-19b5-4de9-85db-0eba31a02c3f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2033.7966666666666,
+          3012.213333333333,
+          1678.871871297432,
+          3018.7782044397027,
+          3231.1966666666667,
+          5793.883333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d22515e7-bd25-43b0-8b03-dc2b6460b8b3"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d2546c58-d676-406d-9923-e3867bbe02d3"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          4028858.256666667,
+          11707807.843333334,
+          5296058.016915095,
+          32987323.33090806,
+          37233283.96666667,
+          155498565.3820598
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d263437d-e8a7-42e7-9a0b-e0f8edf38a5b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2296021972.9466667,
+          3489830849.08,
+          1382530345.2698672,
+          3545462990.269681,
+          4687420332.08,
+          12704224965.493334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d2990a5e-2fb9-4cf0-9bdc-eb01c39f025b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          1055.8807947019868,
+          0.0,
+          891.9066991015046,
+          0.0,
+          1384.28
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d29fbc96-5569-4ae0-9629-6068d62944e3"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1383.6843853820599,
+          1131.4186046511627,
+          9446.419628050193,
+          3970.1703860915,
+          1953352.1063122924,
+          122633.72093023256
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d2ef0373-296d-4b75-95ba-412c0846a30a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          123.17607973421927,
+          123207.21262458472,
+          123.21445005938789,
+          309042.0817334449,
+          125.15333333333334,
+          9077102.435215946
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d2f10c06-1302-481f-9195-e005b76702d7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          22612868.182724252,
+          0.0,
+          20986251.586504247,
+          0.0,
+          37712246.93687708
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d30fd7e7-9a03-4323-9fd0-14ea39d3b7e1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          216.752508361204,
+          183.48160535117057,
+          1161.6682976964084,
+          1645.8058077866008,
+          7176.826086956522,
+          72272.63879598663
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d333c55c-2e16-49a5-85a0-9f4f0502a0e4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          421867.76079734217,
+          270015.76744186046,
+          650977.2637982855,
+          1193085.0701265703,
+          50309568.6013289,
+          53684006.02333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d39aa021-dfe1-4137-9fe1-4eb7787e0571"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          6849.833333333333,
+          1534.1433333333334,
+          6780.350624345508,
+          1382.6700889816575,
+          24371.933333333334,
+          1874.778523489933
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d3bf78da-77c6-4aeb-a54c-cd2a1650186c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1605558450.9466667,
+          30.333333333333332,
+          3086604304.2181263,
+          30.71920919824241,
+          6820617547.663333,
+          32.33444816053512
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d3c58db5-4d61-421c-913c-8780c52ebc9f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          11635.013333333334,
+          198.49333333333334,
+          10377.701196920303,
+          1952.4730098618245,
+          75263.19601328904,
+          86943.25291181364
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d3ee13ff-c8f8-4dc4-85ef-b40070067ba4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          50.36,
+          115.64333333333333,
+          49.67319501223349,
+          107.67853799602872,
+          52.32225913621262,
+          129.48837209302326
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d40499de-3611-4368-b3db-1a785aaf7bf9"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          316671128.9866667,
+          147691044.01,
+          242745024.13630837,
+          195145269.496392,
+          441686574.7090301,
+          365057676.14
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d4fe7850-41a9-4f6a-a53b-7724bdcd82a2"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2618973523.09,
+          772662221.78,
+          1869208308.6427648,
+          469253871.01565087,
+          5523587830.325582,
+          1198620534.53
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d541a43c-6cbf-4e35-b9d2-fcb69ef1fb2e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2.622516556291391,
+          156.0562913907285,
+          3.3776134494777006,
+          156.35862775900486,
+          12.873333333333333,
+          209.52333333333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d5ad5c25-b1fb-4ccf-8ebd-c7960705334e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          15026999.236666666,
+          409922441.79333335,
+          15252489.052742908,
+          356263618.6710569,
+          28693347.27,
+          637732344.1133333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d5c68aa6-3af9-4eb5-857f-40580d9ab83c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1873.7980132450332,
+          41.82119205298013,
+          1208.8221693839403,
+          32.214579370702864,
+          2133.249169435216,
+          42.63333333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d5cc49df-3ef8-47fa-a409-3470a5a8171d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          8937.816053511706,
+          7764.5351170568565,
+          8671.315614193662,
+          8266.140976129973,
+          11397.453020134228,
+          12438.866220735787
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d6652088-b6e7-4635-9648-58dc87109db7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          11.518394648829432,
+          246.5752508361204,
+          11.586269925970896,
+          260.1928746762968,
+          32.67774086378738,
+          318.7142857142857
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d66ba55e-f3d1-4878-83cf-f06173877e5d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          6.4,
+          0.0,
+          4.861580675067004,
+          0.0,
+          7.64
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d6bc6414-d7c0-4730-9bda-2ff5459b326d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d6d4edc5-a3e1-4b98-a801-d11a739aeace"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          60.803333333333335,
+          75.46666666666667,
+          47.301977299254496,
+          61.141697719494495,
+          62.116279069767444,
+          106.74
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d7102178-55d0-465b-b36a-2a2af6f9edd6"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          4472878.638795987,
+          146799842.9264214,
+          3661012.312792303,
+          58945880.06532683,
+          31584008.684210528,
+          486853226.2040134
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d7135296-211f-47f8-a2a7-6674b35abf6d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          371752952.3666667,
+          124246023.10333334,
+          168394483.49237508,
+          109180282.12122095,
+          463795156.5415282,
+          220066108.98333332
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d71d0993-39c7-44af-b8fc-a8765cf66da3"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          205173454.9,
+          5279745.456666667,
+          133935046.99417746,
+          4689297.17343593,
+          271449871.2284768,
+          12358912.723333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d72de364-befd-4233-b51a-a7d8259e8aa3"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          35040019.89632107,
+          1225643972.0602007,
+          58421890.62565721,
+          1590660785.2894971,
+          253852357.5629139,
+          4833189119.036545
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d745479b-8dd4-404d-9e83-6327bce78e26"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          35.10666666666667,
+          0.0,
+          33.90039671056788,
+          0.020682127755317463,
+          36.01328903654485,
+          0.24749163879598662
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d801120f-af92-4510-b98b-206795094433"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          603459.3366666667,
+          1295983.2966666666,
+          2027457.3988713876,
+          11053673.42403091,
+          8700632.358803988,
+          32915239.01333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d8710f34-b964-4d97-8abd-67457602f202"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          85.14,
+          166.32333333333332,
+          90.98030306821397,
+          166.8476674696091,
+          111.36544850498339,
+          172.841059602649
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d8d90097-d8c8-4d6c-9934-a949bc8b0a0b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          10.273333333333333,
+          12.62,
+          10.095622788148779,
+          12.52999137601792,
+          12.850249584026622,
+          14.574043261231282
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "d9958028-de14-44ba-a5b9-845cd311d2bc"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          20235.976666666666,
+          31717.66,
+          17941.565261014104,
+          29403.560394630553,
+          21839.579034941762,
+          32492.08818635607
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "da21a8e8-0b33-41f4-8986-5d480d46fc57"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          374388699.1066667,
+          418998001.3933333,
+          866022398.7451869,
+          332041421.2501286,
+          4851769829.060201,
+          1897204202.423841
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "da55cc4d-fa1b-4fe7-a72d-70b0c0127074"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          73398.08,
+          343972085.58666664,
+          123228.83534086667,
+          166739361.5279543,
+          1665042.2933333332,
+          394399030.4166667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "da6670a5-2f66-43a6-9145-44c41ce96423"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2154084.929765886,
+          20.013377926421406,
+          4561153.413292364,
+          20.63346764515341,
+          65845787.889632106,
+          33.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "da69aace-b82a-42c0-bc68-826a089a9497"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          560.8637873754153,
+          0.0,
+          393.27630736906417,
+          0.0,
+          591.1
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "da89213d-6bcc-4ebe-874f-c3a15ebb761c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1923321.5033333334,
+          710110.84,
+          908239.1841360634,
+          1245907.9125868573,
+          3205817.9033333333,
+          13959320.597337771
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "dab9fa01-1bfd-4d5f-82e7-ed2111687afb"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          369188713.91,
+          55388952.59,
+          400306776.37074405,
+          50341906.602821015,
+          784170587.614618,
+          96982969.16053511
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "dade9050-d57b-448f-8de0-3eca131d7581"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1181537123.9533334,
+          2198335170.1866665,
+          1605384021.1414814,
+          1693248689.628951,
+          6184606307.77592,
+          3639862473.8903656
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "db0a61cb-1cca-43d3-93a8-2826192e701f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          155962088.88666666,
+          906022985.13,
+          122215235.78275366,
+          673858582.6103073,
+          229547647.53333333,
+          1363796222.8533332
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "db0bdb55-6fde-4935-866f-e139472eeeba"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1372667650.81,
+          2143991230.8766668,
+          2304616694.2077913,
+          1564479902.9211538,
+          8839977032.04651,
+          5875947383.866667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "db2fb636-4805-497c-8345-9aee1533aa70"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          84.73666666666666,
+          842.2,
+          1566.3278799678303,
+          870.9067976335376,
+          51334.651162790695,
+          4086.1564059900165
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "db6bdecb-2a64-400b-9624-1bf6e0d7a25d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3700735846.496689,
+          2831993060.5562916,
+          1012875188.7974566,
+          2130071436.93566,
+          6642427405.508306,
+          6571343501.451505
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "db889949-d2e1-4c36-a2d6-a7f3c99237ba"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          18.357859531772576,
+          45.779264214046826,
+          18.008316331897547,
+          45.56989798541623,
+          19.96,
+          46.6312292358804
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "db95aa46-1fb6-4b71-8ef6-5eb7f4e8b84b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1083723927.3233333,
+          1161113916.4066668,
+          1467008215.8209255,
+          1421004034.6874728,
+          2812915893.233333,
+          6470140633.006644
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "dbb7d237-aa90-42c2-9ef5-274bafad1937"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2.9,
+          15.216666666666667,
+          2.9095205721328052,
+          14.948838082338002,
+          3.19,
+          16.6
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "dbe21175-3203-4536-aec4-e5dc458ae83e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          687521841.5066667,
+          136653706.56,
+          520535073.54774827,
+          103669954.77719669,
+          1174872337.358804,
+          194692316.68770763
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "dc1670ff-80af-4519-9ba8-8cc53063af19"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          703297598.76,
+          165071761.75666666,
+          551548180.4765244,
+          276500893.78467584,
+          1647985217.2358804,
+          536375806.36633664
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "dc243c32-8a94-4b02-9713-5898ed9c9781"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          33955457.19,
+          74330610.02666667,
+          143034496.46055812,
+          222167849.48386514,
+          2065854490.9466667,
+          1373360469.784053
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "dc297262-1c02-464c-b38e-d0f5de232e08"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1555126015.3355482,
+          3855018070.963455,
+          1912815808.135666,
+          3423654483.4189625,
+          5238138247.28,
+          13382724290.133333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "dc37c9e0-3026-4861-9628-201ee271413a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          220201311.68333334,
+          318937515.6666667,
+          144125275.06626412,
+          305993818.29629153,
+          393999102.38666666,
+          756983951.4750831
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "dc3d5bf7-b93f-48e7-9a09-07bc5142c232"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          95859965.12,
+          1010346676.0033333,
+          64390075.10763388,
+          750080695.1329155,
+          111728805.85666667,
+          1228385369.1833334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "dc767ba4-1cfd-4a5a-b757-e72897aec5c3"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          22874867.222591363,
+          213909871.63787377,
+          17906080.29691256,
+          151200845.46716583,
+          148474299.01328903,
+          270010373.730897
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "dcae8940-de26-4555-a36b-c1914f74de52"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          49.95348837209303,
+          0.0,
+          51.5852991884246,
+          0.0,
+          53.7
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "dcb38399-ffaa-4391-a6ac-4256a81317db"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          25.28,
+          56.54666666666667,
+          26.228066277620126,
+          57.18993905244769,
+          31.26578073089701,
+          62.04983388704319
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "dcb7c9c2-2147-458d-9f45-6b6342d8295a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          550.9933110367894,
+          8806.635451505017,
+          518.0740943382946,
+          9651.888395921847,
+          589.19,
+          13349.398671096345
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "dcee4bb7-0bef-4055-9608-0a22f018fc29"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.4533333333333333,
+          199.56666666666666,
+          0.28587386521031877,
+          158.99899238577294,
+          1.1066666666666667,
+          205.42595673876872
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "dd0225f2-726c-4c49-b4ed-87d39596f571"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          419831.98333333334,
+          637863.4233333333,
+          416810.87076163746,
+          621741.6001574899,
+          485889.4533333333,
+          1078137.0766666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "dd5f21c3-82df-42df-9df9-4d09a6bf7186"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          50142844.14,
+          184150.85666666666,
+          44077659.048108764,
+          95379.94891145255,
+          110582488.33887044,
+          919871.3433333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "dd614802-09a4-46f8-9ebd-e63ae3403bd0"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          5960148.953333333,
+          8554343.176666666,
+          2991967.0325820176,
+          5345233.118818295,
+          8714931.713333333,
+          24962605.375415284
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "dd9cdfaa-465e-4acf-ba91-c2d4b4d211a0"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          193.62666666666667,
+          167.82,
+          191.49396352883636,
+          201.68715759251214,
+          196.71760797342193,
+          529.5466666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "dde4f7df-9477-438a-a506-58faf19b19f8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          560777.9335548172,
+          725377.219269103,
+          573689.0088057113,
+          1246946.936077117,
+          2642528.2483443706,
+          14219476.867549669
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ddf11fab-28ec-470f-a367-323aa6229b37"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          9055.581939799331,
+          50213.89297658863,
+          16814.88642740631,
+          707907.1036496373,
+          338972.9801980198,
+          30512652.626666665
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "de693f48-6715-4372-b3b1-b4dd9bbc87ab"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2724764478.68,
+          9464610005.573334,
+          2420850264.599855,
+          7880927468.466971,
+          5172423453.475083,
+          14260411080.106667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "de7ef2ec-4db9-4ac8-8c31-5164a2d7a686"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          88.00666666666666,
+          65.95333333333333,
+          275.15052739365575,
+          81.26956182901152,
+          1292.8609271523178,
+          216.00666666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "dee5ebab-3027-4954-9f56-ab3bb6fe8e3c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1153259790.178808,
+          551685943.4437087,
+          626189119.2984799,
+          370049594.0007564,
+          2075840503.5927153,
+          572249610.0766667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "df06578f-e3c9-4e60-8cc7-65cfb6106f46"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          49662.073333333334,
+          1227786.4866666666,
+          192312.78317501035,
+          1692304.8102558206,
+          4967649.764119601,
+          18936750.471571907
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "df171bca-dae0-4d4d-9266-89c75a64f326"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          94.5,
+          13.816666666666666,
+          93.97006065250814,
+          13.514817099495724,
+          95.29568106312293,
+          15.003322259136212
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "df802000-65cc-4229-bcad-03e61d9bd3e8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1585680213.1490066,
+          721058933.6854304,
+          1299808422.1004617,
+          668150280.2326145,
+          4463633869.483334,
+          3423656961.404326
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "dfcabdfe-a047-4027-bddb-5c0000a0a341"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          274.48,
+          226.28666666666666,
+          277.8749857135896,
+          206.42505644144663,
+          285.8803986710964,
+          299.64119601328906
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e0033954-ca83-4760-b909-67c4f71d4cea"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3.4966666666666666,
+          52.913333333333334,
+          3.551591156520396,
+          43.85239640830701,
+          4.026578073089701,
+          72.23128119800333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e022f42d-3e1d-4a5c-89cb-3fbf0a719564"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          229895166.9202658,
+          54049905.60465116,
+          233006956.3424505,
+          53239062.82027352,
+          324149824.96666664,
+          69728489.54333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e02385ac-5381-4727-bbc3-1d395cb97268"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          5349.483333333334,
+          548.1633333333333,
+          5267.785004649463,
+          569.3501889124528,
+          6658.578073089701,
+          1270.6622516556292
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e0eb1af3-5183-442b-a660-16d26d09ae6b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          4.48,
+          4338.133333333333,
+          2312238.6749208816,
+          321405.76743196876,
+          48312660.29333334,
+          59626836.29568107
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e0f36f7f-1d4e-43d6-a21d-cf9ab001f377"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1086312129.76,
+          514879071.75333333,
+          528063639.6160577,
+          1188061094.471552,
+          2467673336.749164,
+          4821558469.780731
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e12a14a3-2dd3-4b0e-8db3-01a914a33bc7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1250036224.6533334,
+          2100869199.3333333,
+          776769379.395517,
+          1749999777.403373,
+          4698955279.813953,
+          10297880052.27907
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e12c60cb-7a3b-4a8a-8637-a27124227ed0"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          536235.0533333333,
+          108084.40333333334,
+          778257.2687376038,
+          2028503.13552297,
+          5972871.086666667,
+          22794679.89297659
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e141a58f-f0c0-4323-8e6a-e6e42ba22163"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          122.7641196013289,
+          700437.2392026578,
+          123.19092816859845,
+          907000.3230288266,
+          124.41196013289037,
+          8343580.476821192
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e17a4c25-03fc-42e7-931a-9b6e22e5290a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          143.14,
+          125405.90333333334,
+          144.24208264529625,
+          596010.0721347595,
+          146.68,
+          8648555.473333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e18ee5c4-dc5b-4b94-b293-42a3de4700db"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          4414.403973509934,
+          6220.688741721854,
+          4429.969653491179,
+          6270.162719995962,
+          4506.637873754153,
+          6395.003322259136
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e1b6fb34-222a-4198-ad8a-3e0b191c8252"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          4831.74,
+          1143948.4166666667,
+          5361.37166611432,
+          1632167.30336984,
+          8436.425249169435,
+          21888766.019933555
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e2239a60-dd3e-457c-8fb8-d0373c1575fb"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3936140.220735786,
+          173920.90969899666,
+          1561379.483007148,
+          951652.3146321721,
+          15041369.859531773,
+          17587927.441860463
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e23295a1-1ca7-40e6-a7c1-0a52c19b7495"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          199021.2093023256,
+          8966.205980066445,
+          166878.35712236006,
+          12973.015267488674,
+          891691.7574750831,
+          117099.07666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e234c7ba-60bf-4682-8ee1-92d138913f38"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          22.47826086956522,
+          118.78260869565217,
+          40.55376078929455,
+          114.2176337363254,
+          5143.504983388704,
+          522.7707641196014
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e23e021c-6aa6-4266-8829-b210401838e4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          43672001.906666666,
+          4792379.916666667,
+          16144935.894225495,
+          1780886.6738702115,
+          71190320.92307693,
+          8869804.19
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e266a1a4-5beb-4a9b-b3c0-4be736eeecab"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          365.33,
+          127.06666666666666,
+          350.573076511781,
+          122.81503389806488,
+          435.2093023255814,
+          130.97674418604652
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e2d7cc89-a2f4-459f-9bc8-e2333ecca4b4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          242852046.51666668,
+          711719268.49,
+          530668931.9642615,
+          476964131.58792233,
+          1531883638.1760798,
+          1297578453.91
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e3017c47-c0ad-47ab-857c-516e4d7c4f3c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          14931448.21,
+          207315280.01333332,
+          24098570.792845357,
+          127214706.07221851,
+          345214573.4285714,
+          277760712.86287624
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e3183991-3bde-465f-ab0e-035c0b6f60fa"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          11.481727574750831,
+          57.926910299003325,
+          11.427062727230362,
+          51.656776024211126,
+          12.496644295302014,
+          71.27333333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e3203527-2489-4618-90ce-e8f0634beb4f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          12.133333333333333,
+          61.553333333333335,
+          13.092319905574557,
+          56.88758251263107,
+          15.093333333333334,
+          83.82
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e32d2136-3aad-432a-bab3-891e2dba54e4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e3641428-7c89-4e2d-b05c-0c816e5fd21e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          25211.281456953642,
+          3228.543046357616,
+          18387.86648382687,
+          2466.6618827073476,
+          26212.408637873756,
+          6351.653333333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e3afa18d-5021-4b9c-bb64-e5a892e7c749"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          26368754.186666667,
+          390624.79333333333,
+          54724227.17531538,
+          429442.9214018281,
+          123512751.73089701,
+          15281436.433333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e3c78429-10e8-4683-a22f-f01039d75e9a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          778486.2966666666,
+          6251357.09,
+          1092070.2486555222,
+          16241041.539599486,
+          6029412.8561872905,
+          117967799.72093023
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e3c97737-950f-4637-8800-f0a224eff712"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          240238290.27,
+          81726163.29666667,
+          247774182.1811637,
+          86955604.32481459,
+          801274992.9568106,
+          553780884.3521595
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e47134f7-e166-4aeb-9a49-023c40c46969"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e4774582-95b2-4806-af6b-21d7616ac13f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          26403.413333333334,
+          7483.95,
+          38688.93583442655,
+          3803.719748470071,
+          4449149.464882943,
+          37971.99665551839
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e4926619-f72f-45da-9c67-4d43f15e9b1f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2878.799331103679,
+          2051607.2508361205,
+          3317.9965804095823,
+          4412601.0722455075,
+          5774.793333333333,
+          44383610.117056854
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e4c66a81-ed98-49fa-b9b8-8f9de868171b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          34101941.373333335,
+          74048017.18,
+          143028592.3886068,
+          222186745.40541545,
+          2033966351.4766667,
+          1370294901.1129568
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e4edd0c1-7b0b-4868-9517-13cde2e351e1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          48504821.486666664,
+          203407770.10666665,
+          36653647.20272949,
+          154151268.96209043,
+          217414180.1395349,
+          532847926.69899666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e5026e53-b04b-4668-b66b-0f07e6914968"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          97855338.27666667,
+          140977043.36666667,
+          136879753.23812968,
+          234828493.7540193,
+          600839278.9433334,
+          875741668.8533334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e52d0a4b-ba6d-45d9-a4ea-d33fd940563b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          400390253.1333333,
+          470608726.8333333,
+          617498664.7076035,
+          785060137.2894533,
+          2123106581.08,
+          5800557009.700996
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e55b7515-c8b3-4530-88e4-4aac5f6f4f4e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          11373.240802675586,
+          42019.32107023412,
+          12329.879650138295,
+          40425.319692180994,
+          33220.24414715719,
+          80810.52649006623
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e55d42c0-d940-4f25-875d-c7f4b48d768e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3458.277591973244,
+          16951356.528428093,
+          42348.35102832594,
+          27936713.397420377,
+          736430.72,
+          75780895.23666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e5de065e-9e3d-40a8-b12e-4deb0b214419"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          7140.326666666667,
+          6168.38,
+          24123.068444060802,
+          12080.886531372857,
+          315727.7233333333,
+          463245.81
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e5e1b2dc-18a6-4e39-bca3-2c9837bed95d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          314529.29235880397,
+          174536.94684385383,
+          1244877.6543475657,
+          173999.34552808377,
+          120923298.51,
+          795830.74
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e61e7c7a-f832-44de-a175-db1516f16953"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          4894816.799331103,
+          385352155.5150502,
+          2974137.031555065,
+          265207841.59669468,
+          8944611.8,
+          414046205.79401994
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e6a69eba-1173-4eb8-9d81-bfbae639cf25"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          64810588.56333333,
+          304552251.20666665,
+          12946521.276537823,
+          391648457.71679753,
+          318657189.0697674,
+          1766712376.5315614
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e6ad9809-93c7-4030-8aad-34607c14d3bc"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          158626318.78333333,
+          162265925.81,
+          236690723.70863125,
+          193192153.61001247,
+          789636463.4033333,
+          608435509.0033222
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e6aec653-17f1-4ce2-ad23-4149f73e1a88"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          5.1033333333333335,
+          78.16333333333333,
+          5.064575094744671,
+          62.59267259412883,
+          5.586666666666667,
+          140.42333333333335
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e6e7d903-96b7-48e1-ba72-4905d99db1d8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          194503393.74666667,
+          129152.01666666666,
+          468830956.2774598,
+          106332.32192103913,
+          1177550894.3538206,
+          370277.80398671096
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e716f601-8562-46e4-a043-4b4bbb2bbd10"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          67182.41666666667,
+          41084921.29666667,
+          37112.49872958452,
+          38862535.13330727,
+          105366.35234899328,
+          117963639.43708609
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e739296c-d5fa-4b32-9867-03beab096b5f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          5.860927152317881,
+          0.0,
+          6.344058894475807,
+          0.0,
+          7.473333333333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e794124d-d77d-4bcb-b408-53c1c841b89a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e7b236f7-8057-4b13-aac8-f3df7a94c5f9"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          75357126.897351,
+          149381885.97350994,
+          187060644.76891634,
+          270009523.8940847,
+          2944486740.266667,
+          2872429428.5457573
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e7b8ad81-4627-43bf-9d8d-2d54d03d86bf"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          11127836.136212625,
+          1806134.6744186047,
+          10286511.156189686,
+          2689644.6769387424,
+          24877098.6,
+          9694738.893333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e7de6e36-4cae-449a-aa3a-965132b699b2"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3359.0536912751677,
+          2771744305.8791947,
+          4242.033770495227,
+          2428193200.836137,
+          10758.51655629139,
+          6953831636.093023
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e7fe8c5f-58ca-4678-9e55-ab142560642f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          56575108.56,
+          540091859.5033333,
+          38583464.77318085,
+          353195509.7347368,
+          105360512.29530202,
+          625653828.3066666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e80d7eaf-e342-4dd1-bda4-6dd08c5a2721"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          9969574181.866667,
+          14383942297.55,
+          7511022707.218145,
+          13274216748.230412,
+          16821685338.47826,
+          22443423581.26159
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e82da13d-472b-4c27-af77-1ad6ce36106c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          80078307.86046511,
+          15415003.747508306,
+          90048878.94620952,
+          11520065.875715062,
+          211538230.23,
+          26333834.576666668
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e84ab848-4ff2-422b-9941-3f3fe817c837"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1562204195.7133334,
+          1022846814.4933333,
+          1673661704.6155906,
+          968965274.3239697,
+          5898096561.146667,
+          2119545593.7449665
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e84ef210-3dc2-4599-87c7-8a4662dcb768"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          422.12333333333333,
+          160.94,
+          3528.829086387357,
+          165.2595664878195,
+          31088.15719063545,
+          283.44666666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e8db8b11-433b-4855-b52b-b214e711d57d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          53269.65,
+          50614.39666666667,
+          51328.37855204726,
+          47560.79354901674,
+          63429.12956810631,
+          73324.29235880398
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e90afa3a-cab8-48fb-9991-5dd1ce9b0c5d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          122.7641196013289,
+          803324.4053156147,
+          123.19099285075366,
+          661837.9768836143,
+          125.15666666666667,
+          8148257.61
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e921bf8f-7400-41d3-ac31-9dbbd4008d5b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          5393263.6466666665,
+          304026.25666666665,
+          5942896.650078688,
+          554545.241382122,
+          31670672.526666667,
+          3174299.6633333336
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e9515340-d66c-41ea-817d-a4ceb85cc66a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          223923052.98,
+          467458536.94,
+          703215666.3933579,
+          43458336.89513996,
+          2154458853.2766666,
+          1598701571.1166666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "e9da92b5-91f2-4f8f-81aa-d561e149ac0f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          5927993.483333333,
+          8502405.173333334,
+          2991801.071389735,
+          5344977.6705546025,
+          8714931.713333333,
+          24962605.375415284
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ea0e586f-a78e-4f07-a87f-bf3676e5c6a8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          288.73333333333335,
+          5620.303333333333,
+          268.43516144230114,
+          7620.183487160591,
+          380.15181518151815,
+          13174.206666666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ea1950b4-8772-42e0-8a28-7dc7a2b33dc4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          61.45333333333333,
+          59.57666666666667,
+          57.47762573763724,
+          56.77521887139424,
+          104.78666666666666,
+          125.03333333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ea454b4f-8a70-48f4-a281-4bdac5539225"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          26372595.993333332,
+          614595.6466666666,
+          55021120.36905192,
+          1448541.62794261,
+          124284610.9269103,
+          15624617.543333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ea71e8ac-3ad3-4ef4-bcd2-bce97b8ffe27"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1493.02,
+          3835.0133333333333,
+          1095.3443993239348,
+          1348.8387510162156,
+          37245.292358803985,
+          25999.506666666668
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "eaa71543-1004-479e-85fd-d2c076e5da61"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "eb15061d-27ef-4419-b393-fcdd9ca9c739"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          15.693333333333333,
+          0.0,
+          15.402818863492739,
+          0.0,
+          17.12
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "eb5500be-7638-4e64-b18d-42de1b0ba1b3"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "eb975263-1b2c-4d72-b757-632c347b3a6f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1530.317880794702,
+          1933.9205298013244,
+          1555.7105842266983,
+          1950.3787764477213,
+          1626.485856905158,
+          2028.2292358803986
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ebda9ed0-18f9-4c95-be0e-c27dcaf9a8c3"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          656353886.6933334,
+          296855820.65,
+          514809736.7384896,
+          316861978.8058016,
+          932746154.37,
+          942535915.2574258
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ec0f4cf4-541e-4dbc-abcc-42bb71b2c9d6"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          40557.27333333333,
+          11500.776666666667,
+          38220.9010421051,
+          11967.170561871479,
+          73479.83666666667,
+          31782.81
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ec4a8e1e-32ff-443c-8b28-7f9ad3c8f093"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ecb83bc5-1689-4323-8318-b2860279feb6"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          27.103678929765888,
+          0.0,
+          27.137794069821737,
+          0.0,
+          28.923333333333332
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ecbab82b-4027-4a3d-84ed-7863d04d1ac4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          21.39,
+          205.34333333333333,
+          21.201168920677798,
+          188.45259252337175,
+          23.774834437086092,
+          229.5953177257525
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ed902a30-88c5-426a-9633-fb9df364642c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          43048.86666666667,
+          57992.306666666664,
+          397780.21841608675,
+          52293.30915689947,
+          21271296.156666666,
+          160542.31666666668
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ed92b8d4-144b-41f7-ba07-518978f5aae1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          712355655.7866666,
+          920951594.6,
+          571845878.4447423,
+          696380456.0055567,
+          751446783.2666667,
+          1332499998.3687708
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "eda3f04a-627b-4c12-addf-e6f79a4874e8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          49675.176666666666,
+          3677.1466666666665,
+          2176472.4711562353,
+          583264.6118234377,
+          116995783.79069768,
+          42656282.22923588
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "edde8f29-8902-4910-bccf-52d81a89baa7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          212.27814569536423,
+          0.0,
+          214.33637146542807,
+          0.0,
+          217.86622073578596
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ee2e0498-e64a-4289-9ca6-6e707f54b488"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          20.113333333333333,
+          59.54333333333334,
+          20.470460717536078,
+          60.005261602979374,
+          28.162790697674417,
+          81.46843853820597
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ee59a434-203c-43af-ab5b-88a4d1c4bb50"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          9278259.983277593,
+          3590728.618729097,
+          14005499.996785834,
+          4368463.632729088,
+          134552895.63907284,
+          17285435.906666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ee6136a1-4415-41bd-ae41-74c310d61fdb"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          123989814.40666667,
+          247202246.01,
+          199592689.91029337,
+          237420590.26472113,
+          1230677102.4059405,
+          524018240.60535115
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ee8e9d0e-867a-46a1-8d49-901875729caa"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          4373221683.799331,
+          9847704106.381271,
+          5582269721.605991,
+          7276579263.098959,
+          12705269065.311037,
+          20098538469.0301
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "eefb6b1a-1428-4fe1-ab88-eb12ef559d40"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2922.208609271523,
+          2928.099337748344,
+          2906.840050403588,
+          2912.817739042632,
+          2950.375415282392,
+          2956.7574750830563
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ef3258fd-4a9c-4db3-beab-48034d35a97f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          468.1,
+          43.57666666666667,
+          81.17633871271863,
+          2632.081286555258,
+          2273.1627906976746,
+          116843.87707641195
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ef6d0b4e-63ab-4246-8bce-77c3e112a557"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2.9,
+          14.573333333333334,
+          2.909554461076785,
+          15.182043372896146,
+          3.19,
+          16.72
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ef9fffda-6c0e-4b59-9086-62bc5c023df8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          37744822.84,
+          617670811.0966667,
+          19058548.52790596,
+          399227880.93080276,
+          40189414.28333333,
+          830697018.0598006
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "efd624af-131e-4757-9c38-7690a2df7219"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          163.54,
+          23.503333333333334,
+          86.36686059371988,
+          23.896201749797104,
+          235.80467445742906,
+          30.893687707641195
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f0119914-5aac-454f-9958-22213fb635c5"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          7977046.96,
+          118259057.91666667,
+          8287834.610789111,
+          59020473.0089309,
+          24116528.893333334,
+          135446353.76079735
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f02ffb81-3020-4fa1-a96f-390ea23feb5c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          43.175496688741724,
+          28.271523178807946,
+          35.80299113023517,
+          25.6988259472731,
+          141.20333333333335,
+          683.2816666666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f038ad2a-c095-4cc7-b98d-c6e86822fc87"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          649382216.277592,
+          105087516.84280936,
+          566551505.5676428,
+          173795698.78773484,
+          911528348.3053691,
+          968131986.3333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f0642514-1e8d-4243-927f-115a3f08482b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          3.9867109634551494,
+          0.0,
+          4.0308610927871555,
+          0.0,
+          4.414715719063545
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f07ec522-739d-4ddd-a06d-a8f1e205273f"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          6418741.628762542,
+          110018854.42809364,
+          7145262.8783498565,
+          115727932.69558601,
+          37433694.60465116,
+          143799678.50666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f0af1eae-65d1-4d6e-b8da-c758c0ee84e2"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          125.64666666666666,
+          10449076.616666667,
+          120.80263383387594,
+          7340884.109610206,
+          127.37541528239203,
+          12608332.543333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f0b9d099-3730-4a91-a0be-26173d5300b1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          93066738.05960265,
+          250032819.71523178,
+          101884702.0163094,
+          245521781.27301916,
+          178555898.77483442,
+          373145275.1613977
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f0c12044-1853-4385-bfb4-d19c274bb1ff"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1422.2666666666667,
+          106457.10666666667,
+          1324.1302445500323,
+          314105.8782163912,
+          1767.9397993311036,
+          11703688.14
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f0ea36c3-7971-4d61-a6fe-052f7604f4eb"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          128026.20666666667,
+          5283.883333333333,
+          641159.2679433203,
+          4903.610953547686,
+          8618127.352159468,
+          6521.484949832776
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f12ed2bd-deb6-4ecc-8f23-7ecb437daaff"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          182459523.72666666,
+          11304814.34,
+          137975102.09337857,
+          26316369.4209125,
+          473448464.1594684,
+          174709300.5548173
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f15da16d-ef35-44a9-897d-0cad24d1001a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          14.642140468227424,
+          13.799331103678929,
+          15.020966792920857,
+          14.338021137123535,
+          16.293333333333333,
+          17.196666666666665
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f16a928a-98d9-48e4-81e3-9187fd4f77ff"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          137.78,
+          15.603333333333333,
+          138.99262361115206,
+          16.18753256060767,
+          140.25913621262458,
+          16.60797342192691
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f1afd29a-e811-40a2-a7aa-fcf5b9b42d22"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          5.857142857142857,
+          42.67109634551495,
+          6.2426920779326345,
+          43.12001102749032,
+          7.444444444444445,
+          44.51495016611295
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f1c4b902-9034-4227-80a7-e84efefb5ed4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1879624325.9233334,
+          1783377344.76,
+          968633639.9978354,
+          2139005497.1401038,
+          3939241260.75,
+          8619436070.292358
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f209045e-927f-41f9-a227-dca0c6a70dfc"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f2251c9b-6c06-4730-a366-580194782d92"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          14.796666666666667,
+          66.11,
+          43.44359482091786,
+          56.44529691082772,
+          2559.2495840266224,
+          73.02666666666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f228fab6-5e86-498b-bb6f-423a99012c00"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          456.80066445182723,
+          320.74418604651163,
+          1727.5985180843613,
+          338.60298364491445,
+          16600.34219269103,
+          467.0863787375415
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f22c031d-b72d-4a1b-8efc-b8a8c5447d32"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          11300.56146179402,
+          41137.86710963455,
+          12409.484119723757,
+          39499.03008299561,
+          32324.453333333335,
+          72676.84280936455
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f2351756-f873-418b-87dc-b00617db56c4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          668701.9766666667,
+          268282.69333333336,
+          600865.5711868957,
+          2779595.0522372345,
+          1168267.5681063123,
+          56503722.91694352
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f24ed56e-40d7-4e52-950c-e87997f38af7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          37884.933333333334,
+          8932.446666666667,
+          4472421.0701863095,
+          1279118.7826398478,
+          53756387.04983389,
+          116950242.52159469
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f262053e-6b35-4a7d-a601-4f74b453f8f7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          13.668874172185431,
+          148.07615894039736,
+          13805792.176258609,
+          42233661.09940565,
+          111192607.91666667,
+          386905481.19
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f2c69e20-8d1a-4f06-a8a7-fb5c532f91d2"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          10756.993333333334,
+          1624745.2466666666,
+          203109.08315337557,
+          1684113.1128189634,
+          17127897.313333333,
+          4120151.511627907
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f30044b6-7d96-45e1-a3c8-ed91badcf8a6"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          477865083.3466667,
+          1326601224.1833334,
+          927505606.1908884,
+          341860799.4954007,
+          5679312016.893333,
+          1346177473.9169436
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f34249c0-f1d0-44dc-9a1c-39ff73a9de14"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1678525.5533333332,
+          1310227.9133333333,
+          1801767.570961451,
+          10957679.448648686,
+          3312855.388704319,
+          112303057.36
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f35011c1-e830-4a04-9146-734c49f1167b"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          37818.47666666667,
+          9215.05,
+          37203.06333973355,
+          10457.914614930281,
+          70554.57142857143,
+          29742.326666666668
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f3adaf16-f049-40aa-9bd0-26c54b3c7334"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1433639594.7508307,
+          2974324743.142857,
+          1239133237.009698,
+          2362835503.886395,
+          1811496595.4701986,
+          3730852430.2933335
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f3cb4467-e5e6-4dc8-aa4d-04f6535900c6"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          5478.787375415282,
+          4442.395348837209,
+          1252.3761940732572,
+          313.7529877639288,
+          7421.175496688742,
+          6363.8311258278145
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f425bf68-5c6f-453c-9566-767b640d8b95"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          369188713.91,
+          55388952.59,
+          400306864.0482577,
+          50341922.511067994,
+          784170587.614618,
+          96982969.16053511
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f46b8482-e0b5-4471-a75f-6e673d0358a8"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          5210582001.632107,
+          10954610398.849499,
+          5044285459.378634,
+          9978011389.77976,
+          11702973022.469799,
+          16239551063.760798
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f4f539f7-2b9d-4c15-acb0-b7d24a39b815"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          16.213333333333335,
+          70.53666666666666,
+          16.585778595926545,
+          61.08000059731164,
+          19.493333333333332,
+          107.965
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f54aa0dc-def2-48a6-b0cc-8a9c4d9cebac"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          32824520.707641196,
+          89690651.63787375,
+          35789398.28077216,
+          77354262.68704772,
+          93334557.53488372,
+          224575999.09666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f56b5af4-866d-478e-a73f-178314524ae6"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          626886716.44,
+          1008503670.05,
+          802992737.5362041,
+          1358892988.3499777,
+          2517354726.5633335,
+          2697323006.0466666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f573c67a-ee66-43cc-b7f5-60c3ae4a4658"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          21.119601328903656,
+          60966.35880398671,
+          21.38450939196076,
+          5641909.988757952,
+          23.086666666666666,
+          47789182.52491695
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f5ab9f38-4e28-4211-b171-8273576fd4e7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3537.0529801324506,
+          3783.3079470198677,
+          1211.0801255549418,
+          1274.7048099586268,
+          3886.863787375415,
+          4153.955
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f5bba7dc-072b-46df-ace7-1b04840dd749"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          383.2591362126246,
+          1122.5647840531562,
+          401.1371883919862,
+          1135.41291940234,
+          425.9202657807309,
+          1209.3820598006644
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f5ef2dd1-3afb-47a4-bd3a-44d84298df21"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          298.1,
+          209.5,
+          295.3650111754715,
+          205.68278999881298,
+          375.25581395348837,
+          229.85049833887044
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f5fdfd1e-565f-459a-a594-1984940278d0"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          85.46822742474916,
+          622.6889632107024,
+          99.07865807676072,
+          790.134785245116,
+          1145.5215946843855,
+          2068.521739130435
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f6173209-5041-4a7a-9a7e-2b40155b5aa5"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          296.16333333333336,
+          29521.463333333333,
+          295.72251263253975,
+          30333.96941003819,
+          321.7076411960133,
+          47089.806666666664
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f658994d-83be-4666-90c2-3e3eb2b75bc5"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1653388.67,
+          53850125.86666667,
+          1664934.771835656,
+          54157761.87250363,
+          8627201.62126246,
+          220954052.21262458
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f66c70fe-969b-4c98-b9b7-6f065b169c05"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          190.9235880398671,
+          703.4352159468439,
+          217.36271507549787,
+          712.6902854193137,
+          4273.05298013245,
+          1704.0433333333333
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f672dea8-743e-47c9-a43c-92be651d92d4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          4499375599.696667,
+          1579970976.06,
+          2670958799.7445965,
+          2227462940.155935,
+          6160426849.036667,
+          9332632508.830564
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f6a996f9-d35a-460e-8903-a27a8378f015"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f6bcb143-6e53-4a71-bd87-e3e73ad062cd"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          50831131.88333333,
+          542010683.8366667,
+          112828239.6422345,
+          506954355.84348816,
+          566641040.8106313,
+          1840314429.1204014
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f6cf441f-e381-4b14-a29e-fedc8bb4c241"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          12949.516666666666,
+          43122.29,
+          13316.590816316279,
+          40496.85145833174,
+          33918.573333333334,
+          78817.8774834437
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f6df960c-f512-48ca-a4e1-bf5834c3f821"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          834393.75,
+          2999.903333333333,
+          1225761.3768736152,
+          2966.653725388168,
+          15523224.059800664,
+          4040.63
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f7548313-efaf-4a72-96f5-9c6db0e697be"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          15029593.206666667,
+          206362390.38,
+          24100172.268520676,
+          127226866.05708627,
+          341099374.5016611,
+          278869784.2909699
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f78c3575-5951-4190-bdf2-53d35c1542de"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3683.8633333333332,
+          1258322408.22,
+          1533.5006542702097,
+          1747946862.8546033,
+          70066.20833333333,
+          4991996382.753744
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f7adf2fc-4f30-4f4e-a4d2-9fcf609bdb4d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f8167375-b1b3-4abe-ac48-c53a833ad881"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          117.21666666666667,
+          234.31,
+          70.13086937310325,
+          247.84016983215122,
+          2334.2724252491694,
+          848.95
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f8277d8d-67be-4ce4-bc17-66f4696beb57"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1732645.2033333334,
+          39565926.43666667,
+          2425372.1778522255,
+          32809780.416538212,
+          12890435.913907284,
+          127715967.42666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f83d6d92-aad8-4eb9-85e2-f9aaddf96225"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          9.003322259136212,
+          21414.41196013289,
+          9.188504031809643,
+          20898.51385192834,
+          9.936666666666667,
+          25348.21476510067
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f846cb8e-2491-481e-9ed9-c556e0cc97c6"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3.96,
+          6171.906666666667,
+          2756885.953240424,
+          736490.8167271999,
+          41238676.486666664,
+          47882648.28571428
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f8930a4b-cca7-48f7-8274-0370f769561c"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          53.57333333333333,
+          3.526666666666667,
+          51.96758161407127,
+          2.987942866332984,
+          55.17056856187291,
+          4.3076923076923075
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f8fc738e-c033-4a4a-b9c1-7c186e444416"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          36216.318936877076,
+          329766.6611295681,
+          56866.82752195409,
+          485065.9978967876,
+          1902197.9366666668,
+          13067397.08
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f955b83c-c563-406a-9688-f5f230fa05b4"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          9.346666666666666,
+          11.153333333333334,
+          9.87266732183151,
+          11.950170578061483,
+          12.299003322259136,
+          14.498338870431894
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f956be7a-8206-49f9-ae4b-12e7a56f41db"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3158.82,
+          3283.786666666667,
+          3190.218818003197,
+          3315.3006660471906,
+          3334.0996677740864,
+          3371.38
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f95b2228-2df8-42c4-927f-3d022cc5b428"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          64392.64333333333,
+          4548.776666666667,
+          9570.152495564062,
+          223885.3732355112,
+          118098.58803986711,
+          2598353.086522463
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f961e496-923b-41cf-9f65-a42f2164aab6"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "f9fd088a-f1ee-4336-a3bf-f5247eb05541"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1558550.54,
+          6095.5233333333335,
+          5163199.478108989,
+          17169.81069194773,
+          23096168.773333333,
+          159634.2657807309
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "fa298bd7-e2ae-42b2-82ad-866166619478"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          521546953.1666667,
+          1021412540.1433333,
+          484122556.0151512,
+          467598801.0635403,
+          3197138279.0066447,
+          3697129592.44
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "fa73a1c1-2042-4185-8cc2-0388a1244603"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          1541.5233333333333,
+          61833.073333333334,
+          1196.6804594637265,
+          391173.31084913027,
+          2157.3,
+          13969693.52
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "fae175fc-efdf-48cc-876f-c89628447334"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          145.12333333333333,
+          713089.7666666667,
+          144.25556053283282,
+          590916.439485795,
+          146.13245033112582,
+          9749232.066666666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "fb0adcdb-e6df-4798-a1f1-ab10afa6f4ee"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          653.6454849498327,
+          503.685618729097,
+          1407.3808119438138,
+          741.994838802979,
+          96498.55629139073,
+          7889.903333333334
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "fb1e4e6a-4d1e-4be3-b49c-91ab6dc05d9d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "fb84c1c2-2f52-4339-ae9e-6f59f303d44a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          6.357615894039735,
+          13.079470198675496,
+          6.419008462928964,
+          14.220871560151226,
+          7.063545150501672,
+          15.852842809364548
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "fb90570a-c35c-40e7-bf39-d45377bd9a6d"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          8167.56146179402,
+          1834.5647840531562,
+          15087426.664980998,
+          1911863.7607913734,
+          137024813.51986754,
+          35479627.823920265
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "fba33f59-fd72-4fad-8734-797026a568d0"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          198.94314381270902,
+          101.21404682274247,
+          200.6828590149984,
+          86.48011816680643,
+          207.03666666666666,
+          211.47826086956522
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "fba9ffd7-382b-4ac3-9e3c-c44e59b18805"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "fbe0e8a2-4c98-4fd3-b812-b16d82d5edc1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          121.82666666666667,
+          72.82666666666667,
+          114.89059578936202,
+          73.80954495059164,
+          146.03333333333333,
+          89.62728785357737
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "fbf3cb93-ffa0-4e71-8ac2-d5a16b1637a5"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          4669506669.980132,
+          6344017312.135761,
+          3831271067.119672,
+          3825918954.9972463,
+          10638054622.415974,
+          8919363748.908485
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "fc0eb57c-f68e-4db2-9e65-1450e5ac6861"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          15.693333333333333,
+          0.0,
+          15.440082466832687,
+          0.0,
+          15.851851851851851
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "fc785c6a-395a-4474-800f-ee4436d29406"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          251.9468438538206,
+          251.68106312292358,
+          252.64541624115438,
+          252.711769552287,
+          255.4046822742475,
+          255.68227424749165
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "fcad7d0f-ff49-4edb-a851-e2073420df99"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          122.7641196013289,
+          19935.913621262458,
+          123.21995298801615,
+          554253.6376804399,
+          124.41333333333333,
+          9018873.122923588
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "fcb0f98c-efec-48e7-9239-a2197356b4a1"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          159675937.20666668,
+          105449074.06,
+          129862512.20041357,
+          176749068.88745385,
+          477571720.61461794,
+          715075868.4766667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "fccd843e-0eb5-4282-aebb-7db32f4392be"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          379.3,
+          199.51333333333332,
+          12040.370225472647,
+          8298691.026650209,
+          87054.32833333334,
+          77937297.10666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "fd008ee8-98b3-452e-867d-843e2bc7c987"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          221190532.60535118,
+          2007415447.9531772,
+          240637054.3196806,
+          1818978849.8899586,
+          1171786123.78,
+          2438911438.8791947
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "fd261bd8-bb9c-40b8-85e1-e8678821917e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          3116294.5633333335,
+          61496778.11,
+          5695634.565469204,
+          25428532.9045123,
+          106566731.49169435,
+          408980842.77
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "fe064cbb-2076-46d2-a7fa-d0a333af6d99"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          41856.68,
+          9880.553333333333,
+          38316.16313759829,
+          10819.598069470061,
+          75466.68874172185,
+          31175.652173913044
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "fe0abcb1-3bcf-4d4d-9ef5-ecff0d4a9c05"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          179.7391304347826,
+          491.6254180602007,
+          293.8902035890242,
+          689.3408423696744,
+          11202.906666666666,
+          29621.89700996678
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "fe65d966-d66e-4072-b3d0-ca80df00255a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0,
+          0.0
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "fe9c7dfc-1ca4-4331-a87c-b56bf15ba48a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          7482788187.076923,
+          3843576581.7792645,
+          3928317707.432841,
+          3902536113.3639393,
+          9550148570.89701,
+          11975945902.818792
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "fec1613c-bb68-47b5-8e44-740ebeeadc45"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          206258.84280936455,
+          48542.79264214047,
+          51434.768135862774,
+          369965.2745810198,
+          298860.7591973244,
+          6797334.916666667
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "fede0008-fb31-44e9-9121-180924c67589"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          100856003.94333333,
+          183166586.16333333,
+          79666753.35795233,
+          188402911.0001415,
+          180466355.9269103,
+          795186616.0132891
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "fefa7cc7-f886-4721-a2aa-18500bffb51a"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          141918492.4,
+          14.1,
+          99980537.36074667,
+          36394.80024533444,
+          421833637.46666664,
+          7936032.8966666665
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "fefcc04b-862e-4552-9024-2aa6a13d4925"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          94.5,
+          0.21333333333333335,
+          93.97006065250814,
+          0.15842884958170583,
+          95.29568106312293,
+          0.4280936454849498
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ff161312-c6a3-462d-a201-b242cdca6b18"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          2831310800.1066666,
+          3661361771.6266665,
+          3886387519.148822,
+          5272675100.446718,
+          10137274073.386667,
+          11783264606.826666
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ff4d0787-984f-4e1a-ae63-9a2cac28adb3"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          0.0,
+          4.013377926421405,
+          0.0,
+          4.034084224329668,
+          0.0,
+          4.429530201342282
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ff9cd230-7657-4885-bf23-174e0e8bb4d7"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          253.22333333333333,
+          252.23333333333332,
+          252.94216135232082,
+          252.33989242681218,
+          255.03333333333333,
+          254.51666666666668
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ffc82d25-4f04-4434-86b8-6bd9f73adafa"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          10570.006666666666,
+          40398.43,
+          11669.640215004973,
+          38375.022674085616,
+          31844.70099667774,
+          73485.43521594684
+        ]
+      ]
+    },
+    {
+      "name": "scid_rates",
+      "tags": {
+        "scid": "ffeaacca-e6dc-448c-8fdb-056a4a49085e"
+      },
+      "columns": [
+        "time",
+        "latest_ingress",
+        "latest_egress",
+        "mean_ingress",
+        "mean_egress",
+        "max_ingress",
+        "max_egress"
+      ],
+      "values": [
+        [
+          "2025-05-24T18:38:02.095917Z",
+          184500170.90666667,
+          4107928.553333333,
+          132417884.47956584,
+          4638266.117443851,
+          259153813.89,
+          9418450.852348993
+        ]
+      ]
+    }
+  ]
+}
diff --git a/test/data/inprov-equipment.json b/test/data/inprov-equipment.json
new file mode 100644
index 0000000000000000000000000000000000000000..101934177ab5f367898685d0a83a4aba82e50129
--- /dev/null
+++ b/test/data/inprov-equipment.json
@@ -0,0 +1,9297 @@
+[
+  {
+    "name": "GENERIC PEER ROUTER DE",
+    "pop": "DE-CIX FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "GENERIC PEER ROUTER FR",
+    "pop": "DE-CIX MARSEILLE",
+    "status": "operational"
+  },
+  {
+    "name": "GOOGLE ROUTER DE",
+    "pop": "GOOGLE-DE",
+    "status": "operational"
+  },
+  {
+    "name": "INTERXION CPR EQUIPMENT-1",
+    "pop": "INTERXION CPR",
+    "status": "operational"
+  },
+  {
+    "name": "INTERXION CPR EQUIPMENT-3",
+    "pop": "INTERXION CPR",
+    "status": "operational"
+  },
+  {
+    "name": "INTERXION CPR EQUIPMENT-12",
+    "pop": "INTERXION CPR",
+    "status": "operational"
+  },
+  {
+    "name": "INTERXION CPR EQUIPMENT-10",
+    "pop": "INTERXION CPR",
+    "status": "operational"
+  },
+  {
+    "name": "INTERXION CPR EQUIPMENT-13",
+    "pop": "INTERXION CPR",
+    "status": "operational"
+  },
+  {
+    "name": "INTERXION CPR EQUIPMENT-11",
+    "pop": "INTERXION CPR",
+    "status": "operational"
+  },
+  {
+    "name": "INTERXION CPR EQUIPMENT-14",
+    "pop": "INTERXION CPR",
+    "status": "operational"
+  },
+  {
+    "name": "T-SYSTEMS INTERNATIONAL A-END",
+    "pop": "INTERXION CPR",
+    "status": "operational"
+  },
+  {
+    "name": "INTERXION CPR EQUIPMENT-9",
+    "pop": "INTERXION CPR",
+    "status": "operational"
+  },
+  {
+    "name": "INTERXION CPR EQUIPMENT-8",
+    "pop": "INTERXION CPR",
+    "status": "operational"
+  },
+  {
+    "name": "INTERXION CPR EQUIPMENT-7",
+    "pop": "INTERXION CPR",
+    "status": "operational"
+  },
+  {
+    "name": "INTERXION CPR EQUIPMENT-6",
+    "pop": "INTERXION CPR",
+    "status": "operational"
+  },
+  {
+    "name": "INTERXION CPR EQUIPMENT-5",
+    "pop": "INTERXION CPR",
+    "status": "operational"
+  },
+  {
+    "name": "INTERXION CPR EQUIPMENT-4",
+    "pop": "INTERXION CPR",
+    "status": "operational"
+  },
+  {
+    "name": "INTERXION CPR EQUIPMENT-2",
+    "pop": "INTERXION CPR",
+    "status": "operational"
+  },
+  {
+    "name": "T-SYSTEMS Z-END",
+    "pop": "VIX",
+    "status": "operational"
+  },
+  {
+    "name": "GENERIC PEER ROUTER AT",
+    "pop": "VIX",
+    "status": "operational"
+  },
+  {
+    "name": "T-SYSTEMS A-END",
+    "pop": "VIX",
+    "status": "operational"
+  },
+  {
+    "name": "BUD02-GRV1",
+    "pop": "BUDAPEST 2",
+    "status": "operational"
+  },
+  {
+    "name": "BUD02-MTC6-1",
+    "pop": "BUDAPEST 2",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.BUD2.HU.GEANT.NET(OPENGEAR)",
+    "pop": "BUDAPEST 2",
+    "status": "operational"
+  },
+  {
+    "name": "SINET (AOA) ROUTER",
+    "pop": "SINET (AOA)",
+    "status": "operational"
+  },
+  {
+    "name": "ACONET EQUIPMENT",
+    "pop": "ACONET",
+    "status": "operational"
+  },
+  {
+    "name": "ACONET.OLO.01",
+    "pop": "ACONET",
+    "status": "planned"
+  },
+  {
+    "name": "ALGERIA TELECOM Z-END",
+    "pop": "ARN",
+    "status": "operational"
+  },
+  {
+    "name": "ARNES EQUIPMENT",
+    "pop": "ARNES",
+    "status": "operational"
+  },
+  {
+    "name": "BELNET EQUIPMENT-1",
+    "pop": "BELNET",
+    "status": "operational"
+  },
+  {
+    "name": "BREN EQUIPMENT",
+    "pop": "BREN",
+    "status": "operational"
+  },
+  {
+    "name": "CERN EQUIPMENT",
+    "pop": "CERN",
+    "status": "operational"
+  },
+  {
+    "name": "GARR A-END",
+    "pop": "CERN",
+    "status": "operational"
+  },
+  {
+    "name": "CESNET EQUIPMENT-2",
+    "pop": "CESNET",
+    "status": "operational"
+  },
+  {
+    "name": "CESNET EQUIPMENT-1",
+    "pop": "CESNET",
+    "status": "operational"
+  },
+  {
+    "name": "COGENT - DE ROUTER",
+    "pop": "COGENT - DE",
+    "status": "operational"
+  },
+  {
+    "name": "GENERIC PEER ROUTER ES",
+    "pop": "DE-CIX MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "DFN EQUIPMENT-1",
+    "pop": "DFN",
+    "status": "operational"
+  },
+  {
+    "name": "DFN PRACE EQUIPMENT-2",
+    "pop": "DFN",
+    "status": "operational"
+  },
+  {
+    "name": "DFN EQUIPMENT-2",
+    "pop": "DFN",
+    "status": "operational"
+  },
+  {
+    "name": "DFN PRACE EQUIPMENT-1",
+    "pop": "DFN",
+    "status": "operational"
+  },
+  {
+    "name": "EUMETST BUCC ROUTER",
+    "pop": "EUMETSAT BUCC",
+    "status": "operational"
+  },
+  {
+    "name": "GARR-Z-END",
+    "pop": "GARR",
+    "status": "operational"
+  },
+  {
+    "name": "GARR-A-END",
+    "pop": "GARR",
+    "status": "operational"
+  },
+  {
+    "name": "GRENA ACCESS ROUTER-2",
+    "pop": "GRENA",
+    "status": "operational"
+  },
+  {
+    "name": "INEX RC",
+    "pop": "INEX",
+    "status": "operational"
+  },
+  {
+    "name": "GENERIC PEER ROUTER IE",
+    "pop": "INEX",
+    "status": "operational"
+  },
+  {
+    "name": "NY-MANLAN-BROCADE",
+    "pop": "INTERNET2 NY",
+    "status": "operational"
+  },
+  {
+    "name": "GEANT Z-END",
+    "pop": "INTERNET2 NY",
+    "status": "operational"
+  },
+  {
+    "name": "INTERNET2-ROUTER",
+    "pop": "INTERNET2 NY",
+    "status": "operational"
+  },
+  {
+    "name": "NISN WASH ROUTER",
+    "pop": "INTERNET2 WASHINGTON",
+    "status": "operational"
+  },
+  {
+    "name": "INTERNET2 WASH MX960",
+    "pop": "INTERNET2 WASHINGTON",
+    "status": "operational"
+  },
+  {
+    "name": "JISC EQUIPMENT-6",
+    "pop": "JISC",
+    "status": "operational"
+  },
+  {
+    "name": "JISC EQUIPMENT-2",
+    "pop": "JISC",
+    "status": "operational"
+  },
+  {
+    "name": "JISC EQUIPMENT-3",
+    "pop": "JISC",
+    "status": "operational"
+  },
+  {
+    "name": "JISC EQUIPMENT-1",
+    "pop": "JISC",
+    "status": "operational"
+  },
+  {
+    "name": "JISC EQUIPMENT-5",
+    "pop": "JISC",
+    "status": "operational"
+  },
+  {
+    "name": "JISC EQUIPMENT-7",
+    "pop": "JISC",
+    "status": "operational"
+  },
+  {
+    "name": "JISC EQUIPMENT-8",
+    "pop": "JISC",
+    "status": "operational"
+  },
+  {
+    "name": "KIFU Z-END",
+    "pop": "KIFU",
+    "status": "operational"
+  },
+  {
+    "name": "KIFU EQUIPMENT",
+    "pop": "KIFU",
+    "status": "operational"
+  },
+  {
+    "name": "KAU.LITNET.OOB.ACCESS.ROUTER",
+    "pop": "LITNET",
+    "status": "operational"
+  },
+  {
+    "name": "GENERIC PEER ROUTER IT",
+    "pop": "MIX",
+    "status": "operational"
+  },
+  {
+    "name": "NORDUNET EQUIPMENT-3",
+    "pop": "NORDUNET",
+    "status": "operational"
+  },
+  {
+    "name": "NORDUNET EQUIPMENT-1",
+    "pop": "NORDUNET",
+    "status": "operational"
+  },
+  {
+    "name": "NORDUNET EQUIPMENT-2",
+    "pop": "NORDUNET",
+    "status": "operational"
+  },
+  {
+    "name": "PIONIER EQUIPMENT",
+    "pop": "PIONIER",
+    "status": "operational"
+  },
+  {
+    "name": "TELMAD.SW1.MAD (REDIRIS)",
+    "pop": "REDIRIS",
+    "status": "operational"
+  },
+  {
+    "name": "SWITCH EQUIPMENT",
+    "pop": "SWITCH",
+    "status": "operational"
+  },
+  {
+    "name": "TEIN3-BJ-ROUTER",
+    "pop": "TEIN2 BJ",
+    "status": "operational"
+  },
+  {
+    "name": "TEIN3 BJ ROUTER",
+    "pop": "TEIN2 BJ",
+    "status": "operational"
+  },
+  {
+    "name": "TEIN2 SG ROUTER-1",
+    "pop": "TEIN2 SG",
+    "status": "operational"
+  },
+  {
+    "name": "TEIN2 SG ROUTER-2",
+    "pop": "TEIN2 SG",
+    "status": "operational"
+  },
+  {
+    "name": "TEIN3 IN ROUTER-1",
+    "pop": "TEIN3 IN",
+    "status": "operational"
+  },
+  {
+    "name": "TEIN3 IN ROUTER-2",
+    "pop": "TEIN3 IN",
+    "status": "operational"
+  },
+  {
+    "name": "ARELION Z-END",
+    "pop": "TELIA - HU",
+    "status": "operational"
+  },
+  {
+    "name": "URAN ROUTER",
+    "pop": "URAN",
+    "status": "operational"
+  },
+  {
+    "name": "WIX BROCADE-4",
+    "pop": "WIX",
+    "status": "operational"
+  },
+  {
+    "name": "WIX BROCADE-2",
+    "pop": "WIX",
+    "status": "operational"
+  },
+  {
+    "name": "WIX ROUTER",
+    "pop": "WIX",
+    "status": "operational"
+  },
+  {
+    "name": "WIX BROCADE-3",
+    "pop": "WIX",
+    "status": "operational"
+  },
+  {
+    "name": "GENERIC PEER ROUTER UK",
+    "pop": "LINX",
+    "status": "operational"
+  },
+  {
+    "name": "TAMARES Z-END",
+    "pop": "IUCC",
+    "status": "operational"
+  },
+  {
+    "name": "MAD01-GRV2",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.MAD.ES_COPERNICUS",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.MAD.ES_GTS_VPLS-NEUTRON",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.MAD.ES_MDVPN",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.MAD.ES_TAAS-CONTROL",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.MAD.ES_JRA1-SDN-BOD-CONTROL",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.MAD.ES_JRA1-SDX-L2-CONTROL",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "MAD01-GRV3",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "ALGERIA TELECOM A-END",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "MAD01-GRV4",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.MAD.ES.GEANT.NET(OPENGEAR)",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.MAD.ES_SNM_SWITCH_MGMT",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.MAD.ES_ROUTER_FABRIC",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "MAD01-GRV1",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "MAD01-MTC6-1",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.MAD.ES_CORIANT-MGMT",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "SW2.MAD.ES_ROUTER_FABRIC",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.MAD.ES",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "MAD.EQUINIX.OOB.ACCESS.ROUTER",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "SW2.MAD.ES",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.MAD.ES_SWITCH-MGMT",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.MAD.ES_IAS",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "MAD REDIRIS SPECTRUM 1 (FACING BILBOA)",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.MAD.ES_LHCONE-L3VPN",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.MAD.ES_IAS",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.MAD.ES_MGMT-L3VPN",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.MAD.ES_GEANT_GLOBAL",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "MAD01-GRV5",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.MAD.ES",
+    "pop": "MADRID",
+    "status": "operational"
+  },
+  {
+    "name": "MICROSOFT ROUTER AT",
+    "pop": "MICROSOFT AT",
+    "status": "operational"
+  },
+  {
+    "name": "CANARIE ROUTER-3",
+    "pop": "CANARIE",
+    "status": "operational"
+  },
+  {
+    "name": "GEANT A-END",
+    "pop": "CANARIE",
+    "status": "operational"
+  },
+  {
+    "name": "CANARIE ROUTER-1",
+    "pop": "CANARIE",
+    "status": "operational"
+  },
+  {
+    "name": "CANARIE ROUTER-2",
+    "pop": "CANARIE",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.ATH2.GR_SNM_OPTICAL_MGMT",
+    "pop": "ATHENS 2",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.ATH2.GR_LHCONE_L3VPN",
+    "pop": "ATHENS 2",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.ATH2.GR_SNM_SWITCH_MGMT",
+    "pop": "ATHENS 2",
+    "status": "operational"
+  },
+  {
+    "name": "ATH2.TIS.OOB.ACCESS.ROUTER",
+    "pop": "ATHENS 2",
+    "status": "operational"
+  },
+  {
+    "name": "TS2.ATH2.GR.GEANT.NET(OPENGEAR)",
+    "pop": "ATHENS 2",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.ATH2.GR_GEANT_GLOBAL",
+    "pop": "ATHENS 2",
+    "status": "operational"
+  },
+  {
+    "name": "SW2.ATH2.GR",
+    "pop": "ATHENS 2",
+    "status": "operational"
+  },
+  {
+    "name": "SW2.ATH2.GR_ROUTER_FABRIC",
+    "pop": "ATHENS 2",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.ATH2.GR",
+    "pop": "ATHENS 2",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.ATH2.GR_IAS",
+    "pop": "ATHENS 2",
+    "status": "operational"
+  },
+  {
+    "name": "GENERIC PEER ROUTER NL",
+    "pop": "AMS-IX",
+    "status": "operational"
+  },
+  {
+    "name": "AMS-IX SWITCH-1",
+    "pop": "AMS-IX",
+    "status": "operational"
+  },
+  {
+    "name": "AMS-IX SWITCH-2",
+    "pop": "AMS-IX",
+    "status": "operational"
+  },
+  {
+    "name": "ASREN Z-END",
+    "pop": "ASREN",
+    "status": "operational"
+  },
+  {
+    "name": "GENERIC PEER ROUTER CH",
+    "pop": "CIXP",
+    "status": "operational"
+  },
+  {
+    "name": "CHINA MOBILE A-END",
+    "pop": "CNGI-6IX",
+    "status": "operational"
+  },
+  {
+    "name": "CNGI-6IX ROUTER",
+    "pop": "CNGI-6IX",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.DENV.US.GEANT.NET",
+    "pop": "EUMETSAT US",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.CLPK.US.GEANT.NET",
+    "pop": "EUMETSAT US",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.CLPK.US",
+    "pop": "EUMETSAT US",
+    "status": "operational"
+  },
+  {
+    "name": "KREONET ROUTER",
+    "pop": "KREONET",
+    "status": "operational"
+  },
+  {
+    "name": "NETHERLIGHT EQUIPMENT-7",
+    "pop": "NETHERLIGHT",
+    "status": "operational"
+  },
+  {
+    "name": "NETHERLIGHT EQUIPMENT",
+    "pop": "NETHERLIGHT",
+    "status": "operational"
+  },
+  {
+    "name": "NETHERLIGHT EQUIPMENT-6",
+    "pop": "NETHERLIGHT",
+    "status": "operational"
+  },
+  {
+    "name": "NETHERLIGHT EQUIPMENT-5",
+    "pop": "NETHERLIGHT",
+    "status": "operational"
+  },
+  {
+    "name": "NETHERLIGHT EQUIPMENT-3",
+    "pop": "NETHERLIGHT",
+    "status": "operational"
+  },
+  {
+    "name": "NETHERLIGHT EQUIPMENT-2",
+    "pop": "NETHERLIGHT",
+    "status": "operational"
+  },
+  {
+    "name": "NETHERLIGHT EQUIPMENT-1",
+    "pop": "NETHERLIGHT",
+    "status": "operational"
+  },
+  {
+    "name": "OMREN EQUIPMENT",
+    "pop": "OMREN",
+    "status": "operational"
+  },
+  {
+    "name": "PSMP.POZ.PL.GEANT.NET",
+    "pop": "POZNAN 2",
+    "status": "terminated"
+  },
+  {
+    "name": "POZ.ORANGE.OOB.ACCESS.ROUTER",
+    "pop": "POZNAN 2",
+    "status": "terminated"
+  },
+  {
+    "name": "POZNAN RETN SPECTRUM 1",
+    "pop": "POZNAN 2",
+    "status": "operational"
+  },
+  {
+    "name": "POZNAN RETN SPECTRUM 2",
+    "pop": "POZNAN 2",
+    "status": "operational"
+  },
+  {
+    "name": "POZ ALMA SPECTRUM 1 (FACING KAU)",
+    "pop": "POZNAN 2",
+    "status": "operational"
+  },
+  {
+    "name": "PSMP-POZ.PL.GEANT.NET NEW",
+    "pop": "POZNAN 2",
+    "status": "terminated"
+  },
+  {
+    "name": "RENAM  ROUTER",
+    "pop": "RENAM",
+    "status": "operational"
+  },
+  {
+    "name": "SINGAREN ROUTER-2",
+    "pop": "SINGAREN",
+    "status": "operational"
+  },
+  {
+    "name": "SINGAREN ROUTER-1",
+    "pop": "SINGAREN",
+    "status": "operational"
+  },
+  {
+    "name": "T-SYSTEMS INTERNATIONAL Z-END",
+    "pop": "T-SYSTEMS DE",
+    "status": "operational"
+  },
+  {
+    "name": "TWAREN ROUTER",
+    "pop": "TWAREN",
+    "status": "operational"
+  },
+  {
+    "name": "CETIN Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "MICROSOFT EXPRESSROUTE A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "MICROSOFT EXPRESSROUTE Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CRA CESKE RADIOKOMUNIKACE DC TOWER A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CRA CESKE RADIOKOMUNIKACE DC TOWER Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "PCCW Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "MEDNAUTILUS Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TELECOMS4U A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SIDN EQUIPMENT",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "EXELERA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "BULGARTEL AD A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "LATTELCOM Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "WACREN A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "WACREN Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "EXELERA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "BULGARTEL AD Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ALIEN_WAVE Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "PEERINGDB A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ETISALAT A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ETISALAT Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "MAEEN Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "PEERINGDB Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ALIEN_WAVE A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "LATTELCOM A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "MAEEN A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ORANGE MA (MEDI TELECOM) A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TELXIUS A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TELXIUS Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "AR TELECOM Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "DAIL TELECOM A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "DAIL TELECOM Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "AR TELECOM A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SETCOR A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SETCOR Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "LIBNOVA-NOC A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ELLALINK A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ELLALINK Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ALMA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "OPTIMA-TELEKOM Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "AZERTELECOM A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "EPIC Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "BITE A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "BITE Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "EPIC A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "AMRES A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "GO PLC MALTA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "GO PLC MALTA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NIKS A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "VIVACOM Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "AMRES Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "OPTIMA-TELEKOM A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "IPKO A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "IPKO Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NIKS Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "VIVACOM A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ALMA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "BH TELECOM A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "BH TELECOM Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "PCCW A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "AZERTELECOM Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "EUMET-SVALBARD-RESOLVER GROUP A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "HAWE TELEKOM A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CD-TELEMATIKA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "A1 TELECOM BG A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CETIN A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "HAWE TELEKOM Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CD-TELEMATIKA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "APPLE A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "EUMET-SVALBARD-RESOLVER GROUP Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "A1 TELECOM BG Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TELENOR A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TELEVORK Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TELKOM SOUTH AFRICA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TENET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TENET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TSL Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TWAREN Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "UNIVERSITY OF VIENNA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "WIGNER Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "K-SYS A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SINGTEL Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TIFR Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "BTS Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CSTNET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CTI A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ETIC A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SINCRON Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "FTEL A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "FTEL Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ICT Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "INFONET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "INFONET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "INNOVO CLOUD A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "INNOVO CLOUD Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "JUNET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "JUNET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "LLNW A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "LLNW Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "MELITA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NEAAR A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NII A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NIX Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SHERN Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TELENERGO A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TELENOR Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TELEVORK A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "UNIVERSITY OF COPENHAGEN A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "UNIVERSITY OF COPENHAGEN Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "WIGNER A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "UNIVERSITY OF MUENSTER A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "BTS A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CSTNET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "GRENA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "GRENA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "KREONET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "LINX A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "LINX Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "MELITA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NII Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NIX A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "REFER TELECOM A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "REFER TELECOM Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SHERN A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SUNET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TELKOM SOUTH AFRICA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TSL A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TWAREN A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "UNIVERSITY OF BRISTOL A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "UNIVERSITY OF BRISTOL Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "UNIVERSITY OF MALTA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "K-SYS Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NERATEL Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "BNL A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "BNL Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CLOUDFERRO A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CESCA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CNAF Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CODEX Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CYNET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "LEASEWEB A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "LRZ A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "LRZ Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NASA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NASA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NTUA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "RESTENA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "RESTENA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NOVATEL A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NOVATEL Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "OPTIMA TELEKOM A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SUNET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NSCC SINGAPORE A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CHINA UNICOM Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CLARA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "RETINA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "RETINA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "UNIVERSITY OF STUTTGART A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NAS RA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SINGTEL A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ICT A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "INTELNET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "KREONET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "UNIVERSITY OF MALTA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "UNIVERSITY OF MANCHESTER A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "UNIVERSITY OF MANCHESTER Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "UNIVERSITY OF VIENNA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "REDCLARA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "REDCLARA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NSCC SINGAPORE Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SINCRON A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "UNIVERSITY OF MUENSTER Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "KDDI A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "KDDI Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "OMREN A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "OMREN Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TELECOMS4U Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NAS RA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TIFR A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CIXP A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CIXP Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "FZU A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "FZU Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NEAAR Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TAMARES A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NERATEL A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "MEDNAUTILUS A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "REUNA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "REUNA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "UNIVERSITY OF STUTTGART Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CTI Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ETIC Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "INTELNET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SZTAKI A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SZTAKI Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TELEGLOBE A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TELEGLOBE Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TELENERGO Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "AZSCIENCENET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CABLENET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CABLENET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "IN2P3 A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "IN2P3 Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ERNET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "IUCC Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "HR-CERT A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CSC A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CSC Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "STUBA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "STUBA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "PIC A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "DARS Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "DEIC A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "GLOBAL CLOUD XCHANGE Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "RENAM A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "T SYSTEMS A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TI SPARKLE GREECE  S.A. A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "VERIZON DIGITAL A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "VERIZON DIGITAL Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "UNIVERSITY OF GENT A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "UNIVERSITY OF CYPRUS A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CERNET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "IUCC A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "PRIME TELECOM Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "DATAKOM Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "EBONE A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "EBONE Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ELISA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ELISA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "FAU Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "FNAL Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "FZ JUELICH A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "FZ JUELICH Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "LIBNOVA-NOC Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "HBKU A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "HBKU Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "I2CAT A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "IMINDS Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ERNET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CERNET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CYNET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "DARS A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "DEIC Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "EXOSCALE A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "EXOSCALE Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "I2CAT Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "INDIGO BELCOM A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "INDIGO BELCOM Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "IRANET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "IRANET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "IPTRANSIT Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "INWI A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "INWI Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "FZK Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "JIVE A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "JIVE Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "K-NET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SILK A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "K-NET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SILK Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "VODAFONE - CH Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "IPTRANSIT A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "FZK A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NTUA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "OPTIMA TELEKOM Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ORACLE A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ORACLE Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "OVH A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "OVH Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "RASH A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "RASH Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CLARA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "KAUST A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "KAUST Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NYSERNET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NYSERNET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ROEDUNET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "RENAM Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "RENATER A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "RENATER Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SANET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "BT IRELAND Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "BREN A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "BREN Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NKN NOC A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TWITCH Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "VIX Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "T SYSTEMS Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "MREN A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "MANLAN A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "MANLAN Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "URAN Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "UNIVERSITY OF CATANIA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "UNIVERSITY OF CATANIA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "MARNET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "MARNET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "UNIVERSITY OF GENT Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "UNIVERSITY OF CYPRUS Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "UBUNTUNET ALLIANCE Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "AZSCIENCENET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CESCA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CLOUD DISTRIBUTION A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CLOUD DISTRIBUTION Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CLOUDFERRO Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "COMMVERGE Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "PIC Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "PRIME TELECOM A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "DA-RZ A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "DA-RZ Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "DATAKOM A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "E-ARENA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "E-ARENA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ENSTINET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ENSTINET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "KIAE A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "KIAE Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ROEDUNET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SANET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NEOTEL A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "BT IRELAND A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TEIN NOC Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NKN NOC Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "LINZNET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "LINZNET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "UNINETT A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SINGAREN Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CENTURYLINK A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "AMS-IX Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SWITCH Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "DIGITAL REALTY Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "A1 TELECOM AUSTRIA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TELECOM ITALIA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ASGC Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "GRNET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "BEZEQ INT Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "COLT Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "BIX A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TELECOM ITALIA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "OTEGLOBE A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "AMAZON Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ZAYO Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "BELNET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "BELNET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "MAGYAR TELEKOM NYRT A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TELEKOM SERBIA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CAREN Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CIXP NOC A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CIXP NOC Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CHINA MOBILE NOC Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "DE-CIX A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "UNKNOWN A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "UNKNOWN Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "HEANET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "HEANET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "JISC A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "JISC Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SRCE A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TEIN Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ESNET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "INTERNET2 A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TELIASONERA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "GLOBAL CROSSING A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "GLOBAL CROSSING Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CAUCASUS ONLINE A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "T-SYSTEMS INTERNATIONAL GMBH (CLOUD) A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "GLOBAL CLOUD XCHANGE A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NEOTEL Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TEIN NOC A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TWITCH A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "VIX A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "HR-CERT Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CNAF A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CODEX A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "COMMVERGE A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "Q ASSOCIATES A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "Q ASSOCIATES Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "UNIVERSITY OF SOUTHAMPTON A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "UNIVERSITY OF SOUTHAMPTON Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "IMINDS A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "LEASEWEB Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "MREN Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "UNINETT Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "UBUNTUNET ALLIANCE A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "PT PRIME A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "PT PRIME Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "FAU A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "FNAL A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "GUOMAITECH A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "GUOMAITECH Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "BEZEQ INT A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ZAYO A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TELEKOM SERBIA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "VIRGIN MEDIA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "VIRGIN MEDIA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "COGENT A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ACONET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SINGAREN A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ARNES Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ASGC A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TRANSTELEKOM A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "OTEGLOBE Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CARNET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "PIONIER A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "PIONIER Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "DANTE / GEANT A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CANARIE Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CAREN A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "DE-CIX Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "GLOBALCONNECT A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "GLOBALCONNECT Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "DIMENSION DATA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "EENET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "INTERNET2 Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "FACEBOOK Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TELIASONERA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "GOOGLE A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "GOOGLE Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "MIX A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CAUCASUS ONLINE Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NORDUNET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NORDUNET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "T-SYSTEMS INTERNATIONAL GMBH (CLOUD) Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "LITNET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "PORTUGAL TELECOM Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "REDIRIS A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "REDIRIS Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CHINA UNICOM A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "EUNETWORKS A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "EUNETWORKS Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "RETN A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "RETN Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "HIBERNIA ATLANTIC A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "HIBERNIA ATLANTIC Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TRANSBALKAN A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TRANSBALKAN Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "DFN-COLT *FOR DFN-AP2 ONLY! * Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "JAGUAR NETWORK A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "JAGUAR NETWORK Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "VIRTUS A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "VIRTUS Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ATU A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ATU Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SINET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SINET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ASNET-TW Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NREN A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NREN Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NETHERLIGHT A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NETHERLIGHT Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CESNET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "DFN A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "DFN Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "EQUINIX A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "DFN-COLT *FOR DFN-AP2 ONLY! * A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NOKIA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TI SPARKLE GREECE  S.A. Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SYNAPSECOM THESSALONIKI A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SYNAPSECOM THESSALONIKI Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "HARNET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CDT-HAWE *FOR POZ-PRA2 ONLY!* Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "VODAFONE - CH A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ISLALINK HOUSING Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "HARNET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "APPLE Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CDT-HAWE *FOR POZ-PRA2 ONLY!* A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "OTHER A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "OTHER Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "WIOCC A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "WIOCC Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "BRITISH TELECOM A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "BRITISH TELECOM Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ASNET-TW A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "NOKIA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ACONET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "GTT Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CESNET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "EQUINIX Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "AKAMAI A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "AKAMAI Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CENTURYLINK Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SURF Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "A1 TELECOM AUSTRIA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CERN Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TRANSTELEKOM Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "COLT A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "DANTE / GEANT Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "BIX Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "RNP A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "RNP Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TELEKOM ARMENIA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TELIA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SURF A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ARNES A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CERN A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CARNET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "AMAZON A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "MAGYAR TELEKOM NYRT Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CANARIE A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "COGENT Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "CHINA MOBILE NOC A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "DIMENSION DATA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SRCE Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "EENET A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TEIN A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "FACEBOOK A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ISLALINK HOUSING A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "LITNET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "LATTELEKOM A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "LATTELEKOM Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "LAT A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "LAT Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "PORTUGAL TELECOM A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "GTT A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "AMS-IX A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "SWITCH A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "DIGITAL REALTY A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "GRNET Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TELIA Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "TELEKOM ARMENIA A-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ORANGE MA (MEDI TELECOM) Z-END",
+    "pop": "UNKNOWN",
+    "status": "operational"
+  },
+  {
+    "name": "ESNET ROUTER-3",
+    "pop": "ESNET",
+    "status": "operational"
+  },
+  {
+    "name": "ESNET ROUTER-1",
+    "pop": "ESNET",
+    "status": "operational"
+  },
+  {
+    "name": "ESNET ROUTER-2",
+    "pop": "ESNET",
+    "status": "operational"
+  },
+  {
+    "name": "PSMP.SOF.BG.GEANT.NET",
+    "pop": "SOFIA",
+    "status": "terminated"
+  },
+  {
+    "name": "SOF.BREN.OOB.ACCESS.ROUTER",
+    "pop": "SOFIA",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.GEN.CH_IAS",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "PSMP.GEN.CH.GEANT.NET",
+    "pop": "GENEVA",
+    "status": "terminated"
+  },
+  {
+    "name": "MX1.GEN.CH_MGMT-L3VPN",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.GEN.CH_LHCONE-L3VPN",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.GEN.CH_CORIANT-MGMT",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.GEN.CH_MDVPN",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "CERN ESNET EQUIPMENT",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.GEN.CH",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.GEN.CH_MGMT-BRIDGE",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.GEN.CH_SWITCH-MGMT",
+    "pop": "GENEVA",
+    "status": "planned"
+  },
+  {
+    "name": "RT0.GEN.CH",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "GEN-MIL FILTER",
+    "pop": "GENEVA",
+    "status": "terminated"
+  },
+  {
+    "name": "GARR-GEN1-SPECTRUM EQUIPMENT",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.GEN.CH",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "GEN-PAR FILTER",
+    "pop": "GENEVA",
+    "status": "terminated"
+  },
+  {
+    "name": "GEN01-GRV10",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "CERN_OOB - CID:  513-E/513-G/9",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.GEN.CH_ROUTER_FABRIC",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "GEN01-GRV2",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "GEN01-GRV1",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "PSMP-LHC-DRAC-GEN-CH.GEANT.ORG",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "GEN01-GRV4",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "GEN01-MTC6-1",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.GEN.CH_SCION",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "GEN01-GRV5",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "SCION2ILO.GEN.CH",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "SCION1ILO.GEN.CH",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "GEN01-GRV7",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "GEN01-GRV3",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "GEN01-GRV6",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.GEN.CH_SCION_INTERNAL",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.GEN.CH_SNM_SWITCH_MGMT",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.GEN.CH.GEANT.NET(OPENGEAR)",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "GEN01-GRV9",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.GEN.CH_SCION_L3VPN",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "GEN01-GRV8",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.GEN.CH_GEANT_GLOBAL",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.GEN.CH_IAS",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.GEN.CH_ROUTER_FABRIC",
+    "pop": "GENEVA",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.GEN2.CH.GEANT.NET(OPENGEAR)",
+    "pop": "GENEVA 2",
+    "status": "operational"
+  },
+  {
+    "name": "GEN2.OOB.ACCESS.ROUTER",
+    "pop": "GENEVA 2",
+    "status": "operational"
+  },
+  {
+    "name": "GEN02-GRV-2",
+    "pop": "GENEVA 2",
+    "status": "operational"
+  },
+  {
+    "name": "GEN02-MTC6-1",
+    "pop": "GENEVA 2",
+    "status": "operational"
+  },
+  {
+    "name": "GEN02-GRV-1",
+    "pop": "GENEVA 2",
+    "status": "operational"
+  },
+  {
+    "name": "GARR Z-END",
+    "pop": "GENEVA 2",
+    "status": "operational"
+  },
+  {
+    "name": "MIL01-GRV1",
+    "pop": "MILAN 1 LANCETTI",
+    "status": "operational"
+  },
+  {
+    "name": "MIL01-MTC6-1",
+    "pop": "MILAN 1 LANCETTI",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.MIL1.IT.GEANT.NET(OPENGEAR)",
+    "pop": "MILAN 1 LANCETTI",
+    "status": "operational"
+  },
+  {
+    "name": "ATLAS.LON.UK.GEANT.NET",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON.UK_GEANT-IT",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "LON01-GRV7",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON.UK_CORIANT-MGMT",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "SINET-SD-WAN LON - EDGE",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "SINET-SD-WAN LON - HOST",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "LON EXA SPECTRUM 1 (FACING DUB)",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON.UK_MDVPN",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON.UK_LHCONE-L3VPN",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.LON.UK",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON.UK_MGMT-L3VPN",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON.UK_IAS",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.LON.UK_IAS",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "OCVM.LON.UK.GEANT.NET",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "PSMP.LON.UK.GEANT2.NET",
+    "pop": "LONDON",
+    "status": "terminated"
+  },
+  {
+    "name": "PSMP-LHC-DRAC-LON-UK.GEANT.ORG",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "LON-C2960",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "LON.EQUINIX.OOB.ACCESS.ROUTER",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "TTI LON ROUTER",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "SW5.LON.UK_ROUTER_FABRIC",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON.UK_ROUTER_FABRIC",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "DTNLON.LON.GEANT.NET",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.LON.UK.GEANT.NET(OPENGEAR)",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "LON01-MTC6-1",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "LON01-GRV4",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "LON01-GRV3",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "LON01-GRV1",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "LON01-GRV2",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "FLOWMON2.GEANT.NET",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "PSMP-GN-DRAC-LON-UK.GEANT.ORG",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON.UK_JRA1-SDN-BOD-CONTROL",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON.UK_COPERNICUS",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON.UK_TAAS-CONTROL",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON.UK_GTS_VPLS-NEUTRON",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "LON01-GRV6",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "DATADOMAIN-01",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "SW5.LON.UK",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "LON01-GRV5",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "EXAINFRA Z-END",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "EUMETSAT SERVER LONDON",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "SURF-LON1-SPECTRUM EQUIPMENT",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.LON.UK_SNM_SWITCH_MGMT",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.LON.UK_GEANT_GLOBAL",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON.UK",
+    "pop": "LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "LIS01-GRV-1",
+    "pop": "LISBON",
+    "status": "operational"
+  },
+  {
+    "name": "MX2.LIS.PT_IDRAC-MGMT",
+    "pop": "LISBON",
+    "status": "planned"
+  },
+  {
+    "name": "LIS01-MTC6-1",
+    "pop": "LISBON",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.LIS.PT_ROUTER_FABRIC",
+    "pop": "LISBON",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.LIS.PT",
+    "pop": "LISBON",
+    "status": "operational"
+  },
+  {
+    "name": "MX2.LIS.PT_LHCONE-L3VPN",
+    "pop": "LISBON",
+    "status": "operational"
+  },
+  {
+    "name": "PSMP-GN-DRAC-LIS-PT.GEANT.ORG",
+    "pop": "LISBON",
+    "status": "operational"
+  },
+  {
+    "name": "PSMP-10G.LIS.PT.GEANT.NET",
+    "pop": "LISBON",
+    "status": "terminated"
+  },
+  {
+    "name": "MX2.LIS.PT",
+    "pop": "LISBON",
+    "status": "operational"
+  },
+  {
+    "name": "MX2.LIS.PT_SWITCH-MGMT",
+    "pop": "LISBON",
+    "status": "operational"
+  },
+  {
+    "name": "FCCN-LIS-SPECTRUM EQUIPMENT",
+    "pop": "LISBON",
+    "status": "operational"
+  },
+  {
+    "name": "LIS01-GRV3",
+    "pop": "LISBON",
+    "status": "operational"
+  },
+  {
+    "name": "MX2.LIS.PT_MDVPN",
+    "pop": "LISBON",
+    "status": "operational"
+  },
+  {
+    "name": "MX2.LIS.PT_IAS",
+    "pop": "LISBON",
+    "status": "operational"
+  },
+  {
+    "name": "FCCN Z-END",
+    "pop": "LISBON",
+    "status": "operational"
+  },
+  {
+    "name": "MX2.LIS.PT_CORIANT-MGMT",
+    "pop": "LISBON",
+    "status": "operational"
+  },
+  {
+    "name": "FCCN A-END",
+    "pop": "LISBON",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.LIS.PT.GEANT.NET(OPENGEAR)",
+    "pop": "LISBON",
+    "status": "operational"
+  },
+  {
+    "name": "MX2.LIS.PT_ROUTER_FABRIC",
+    "pop": "LISBON",
+    "status": "operational"
+  },
+  {
+    "name": "LIS01-GRV-2",
+    "pop": "LISBON",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.DUB.IE_GEANT_GLOBAL",
+    "pop": "DUBLIN CITY WEST",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.DUB.IE",
+    "pop": "DUBLIN CITY WEST",
+    "status": "operational"
+  },
+  {
+    "name": "DUB01-GRV2",
+    "pop": "DUBLIN CITY WEST",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.DUB.IE",
+    "pop": "DUBLIN CITY WEST",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.DUB.IE_ROUTER_FABRIC",
+    "pop": "DUBLIN CITY WEST",
+    "status": "operational"
+  },
+  {
+    "name": "EXAINFRA A-END",
+    "pop": "DUBLIN CITY WEST",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.DUB.IE.GEANT.NET(OPENGEAR)",
+    "pop": "DUBLIN CITY WEST",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.DUB.IE_IAS",
+    "pop": "DUBLIN CITY WEST",
+    "status": "operational"
+  },
+  {
+    "name": "DUB.HEANET.OOB.ACCESS.ROUTER",
+    "pop": "DUBLIN CITY WEST",
+    "status": "operational"
+  },
+  {
+    "name": "DUB EXA SPECTRUM 1 (FACING LON1)",
+    "pop": "DUBLIN CITY WEST",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.DUB.IE_SNM_SWITCH_MGMT",
+    "pop": "DUBLIN CITY WEST",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.DUB.IE_SNM_OPTICAL_MGMT",
+    "pop": "DUBLIN CITY WEST",
+    "status": "operational"
+  },
+  {
+    "name": "DUB01-MTC6-1",
+    "pop": "DUBLIN CITY WEST",
+    "status": "operational"
+  },
+  {
+    "name": "DUB01-GRV3",
+    "pop": "DUBLIN CITY WEST",
+    "status": "operational"
+  },
+  {
+    "name": "DUB01-GRV1",
+    "pop": "DUBLIN CITY WEST",
+    "status": "operational"
+  },
+  {
+    "name": "DUB HEANET SPECTRUM 1 (FACING COR)",
+    "pop": "DUBLIN CITY WEST",
+    "status": "operational"
+  },
+  {
+    "name": "PROD-DBOARD01.GEANT.ORG",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "UAT-DBOARD01.GEANT.ORG",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.AMS.NL_SNM-IDRAC-MGMT",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.AMS.NL_SWITCH-MGMT",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.AMS.NL_SERVER-MGMT",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "SW3.AMS.NL",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "SW2.STORAGE.AMS",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "ESX1.AMS",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "ESX2.AMS",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "HV03.AMS",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "AMS.STORAGE",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.AMS.NL_SNM-SWITCH-MGMT",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "QFX1.AMS.NL_ROUTER_FABRIC",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "SINET-SD-WAN AMS",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.AMS.NL_TOOLS-ACCESS",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.AMS.NL-CHASSIS-2",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "IT-INFRA_BACKUP-AMS",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "RARE BMS SERVER",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.AMS.NL_GEANT_GLOBAL",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.AMS.NL_COPERNICUS",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.AMS.NL_ROUTER_FABRIC",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.AMS.NL_LHCONE-L3VPN",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "SPLUNK-AMS-PEER02",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.AMS.NL_FW1-SNM-EXT",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.AMS.NL_SNM-CORIANT-MGMT",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.AMS.NL",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.AMS.NL_IAS",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.AMS.NL_SNM-SERVER-MGMT",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.AMS.NL_IDRAC-MGMT",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "FW1-SNM.AMS.GEANT.NET",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.AMS.NL_GEANT-IT",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "NTP6.GEANT.NET",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.AMS.NL_RARE_P4_MGMT",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "AARNET ROUTER",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "NETHERLIGHT 100G GEO EQUIPMENT",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "MICROSOFT ROUTER NL",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.AMS.NL_SNM-TOOLS-ACCESS",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "AMS01-GRV7",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "QFX1.AMS.NL",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "AMS-C2960",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "AMS.INTERXION.OOB.ACCESS.ROUTER",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "TS1-NEW.AMS.NL.GEANT.NET(OPENGEAR)",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "RT2.AMS.NL_IAS",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "SURF-AMS-SPECTRUM EQUIPMENT",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "RT2.AMS.NL",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "RT2.AMS.NL_ROUTER_FABRIC",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "SPLUNK-AMS-PEER01",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "AMS01-MTC6-1",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "AMS01-GRV4",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "AMS01-GRV3",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "AMS01-GRV2",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "AMS01-GRV1",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "RT2.AMS.NL_LHCONE-L3VPN",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "ORANGE A-END",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "PF1-RARE.AMS.NL.GEANT.NET",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "RT2.AMS.NL_CORIANT-MGMT",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "PSMP-GN-DRAC-AMS-NL.GEANT.ORG",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "ESX0.AMS",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "SW3.AMS.NL_ROUTER_FABRIC",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.STORAGE.AMS",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "ESX3.AMS",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "HV01.AMS",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "HV02.AMS",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "FW2-SNM.AMS.GEANT.NET",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "AMT1.AMS.NL_ROUTER_FABRIC",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "AMT1.AMS.NL",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "EUMETSAT SERVER AMSTERDAM",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "AMS SURF SPECTRUM 1 (FACING BRUSSELS)",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "AMS01-GRV8",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.AMS.NL",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.AMS.NL_CORIANT-MGMT",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.AMS.NL_IAS",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "AMS SURF SPECTRUM 1 (FACING HAM)",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "AMS01-GRV5",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "AMS01-GRV6",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.AMS.NL_SNM_SWITCH_MGMT",
+    "pop": "AMSTERDAM",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_SUPERPOP-NAGIOS-TAAS",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_SUPERPOP-PS-LATENCY",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_MDVPN",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_GTS_VPLS-NEUTRON",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_LHCONE-L3VPN",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.PAR.FR",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "SW2.PAR.FR",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "PAR01-GRV6",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "PAR01-GRV7",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.PAR.FR_IAS",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "FLOWMON-DDOS-PAR (OLD)",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_SUPERPOP-IMS-TAAS",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_ROUTER_FABRIC",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "TS2.PAR.FR.GEANT.NET(OPENGEAR)",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "SW2.PAR.FR_ROUTER_FABRIC",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_RARE_P4_MGMT",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "QFX.PAR.FR_ROUTER_FABRIC",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "PAR01-GRV1",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_SUPERPOP-NMAAS-ISIS",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "PAR01-MTC6-1",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "SCION2ILO.PAR.FR",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "(TNMS) NE-ESXI-PROD-PAR-1.GEANT.NET",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_SCION",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "SCION1ILO.PAR.FR",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "DTNPAR.PAR.GEANT.NET",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "PAR01-GRV2",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "PAR01-GRV4",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "PAR01-GRV3",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "PSMP-GN-DRAC-PAR-FR.GEANT.ORG",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "PSMP-LHC-DRAC-PAR-FR.GEANT.ORG",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_SCION_INTERNAL",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "TEST-DEV.NEMO",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "PAR EXA SPECTRUM (FACING LON2)",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_SCION_L3VPN",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "INFOBLOX.PAR.FR",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_SERVER-MGMT",
+    "pop": "PARIS",
+    "status": "planned"
+  },
+  {
+    "name": "PAR01-GRV5",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "PAR01-GRV10",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_SUPERPOP-CORIANT-MGMT",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "SECONDARY.NEMO",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "PAR01-GRV8",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "PAR01-GRV11",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "PAR01-GRV9",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.PAR.FR_SNM_SWITCH_MGMT",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "R730XD-SPLUNK.PAR.FR.GEANT.NET",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.PAR.FR_GEANT_GLOBAL",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_SWITCH-MGMT",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "QFX.PAR.FR",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_TOOLS-ACCESS",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_MGMT-BRIDGE_ROUTER_FABRIC",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_JRA1-SDX-L2-CONTROL",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_CORIANT-MGMT",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_TAAS-CONTROL",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_COPERNICUS",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "TS2.PAR.FR-CHASSIS-2",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_SUPERPOP-RANCID-TAAS_ROUTER_FABRIC",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "PAR BMS SERVER 4",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_SUPERPOP-RANCID-TAAS",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_MGMT-BRIDGE",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_MGMT-L3VPN",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_JRA1-SDN-BOD-CONTROL",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_SUPERPOP-PS-THROUGHPUT",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_SUPERPOP",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.PAR.FR_IAS",
+    "pop": "PARIS",
+    "status": "operational"
+  },
+  {
+    "name": "PSMP-GN-DRAC-VIE-AT.GEANT.ORG",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "VIE01-GRV1",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "VIE01-MTC6-1",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "VERIZON A-END",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.VIE.AT_CLEAN_IAS",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "PRIMARY.NEMO",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "VIE01-GRV4",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "VIE01-GRV5",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "STAGE.NEMO",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "MT-TEST-DEV01-VIE-MGMT.NEMO",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.VIE.AT_GEANT_GLOBAL",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.VIE.AT_IAS",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.VIE.AT_SNM_SWITCH_MGMT",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.VIE.AT.GEANT2.NET",
+    "pop": "VIENNA",
+    "status": "terminated"
+  },
+  {
+    "name": "MX1.VIE.AT",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "SW2.VIE.AT.GEANT2.NET",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "TS2.VIE.AT.GEANT.NET(OPENGEAR)",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "GRV01VIE",
+    "pop": "VIENNA",
+    "status": "terminated"
+  },
+  {
+    "name": "C1N2.VIE.AT.GEANT2.NET",
+    "pop": "VIENNA",
+    "status": "terminated"
+  },
+  {
+    "name": "RT0.VIE.AT",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.VIE.AT_MDVPN",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.VIE.AT_MGMT-L3VPN",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "VIE01-CESNET-GRV-RIBBON-APOLLO",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.VIE.AT_LHCONE-L3VPN",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.VIE.AT_IAS",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "GRV02VIE",
+    "pop": "VIENNA",
+    "status": "terminated"
+  },
+  {
+    "name": "MX1.VIE.AT_CORIANT-MGMT",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.VIE.AT_MGMT-BRIDGE",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "VIE.LINZNET.OOB.ACCESS.ROUTER",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "VIE-MIL2 FILTER",
+    "pop": "VIENNA",
+    "status": "terminated"
+  },
+  {
+    "name": "MX1.VIE.AT_SWITCH-MGMT",
+    "pop": "VIENNA",
+    "status": "planned"
+  },
+  {
+    "name": "VIE-PRA FILTER",
+    "pop": "VIENNA",
+    "status": "terminated"
+  },
+  {
+    "name": "TURK TELEKOM INTERNATIONAL A-END",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.VIE.AT",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.VIE.AT_ROUTER_FABRIC",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "VIE-OOB-MC",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.VIE.AT_ROUTER_FABRIC",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "VIE01-GRV3",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "VIE01-GRV2",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "MT02-VIE.NEMO",
+    "pop": "VIENNA",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.BRU.BE_GEANT_GLOBAL",
+    "pop": "BRUSSELS",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.BRU.BE",
+    "pop": "BRUSSELS",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.BRU.BE_IAS",
+    "pop": "BRUSSELS",
+    "status": "operational"
+  },
+  {
+    "name": "BRU01-GRV2",
+    "pop": "BRUSSELS",
+    "status": "operational"
+  },
+  {
+    "name": "TS2.BRU.BE.GEANT.NET(OPENGEAR)",
+    "pop": "BRUSSELS",
+    "status": "operational"
+  },
+  {
+    "name": "BRU01-MTC6-1",
+    "pop": "BRUSSELS",
+    "status": "operational"
+  },
+  {
+    "name": "SW2.BRU.BE",
+    "pop": "BRUSSELS",
+    "status": "operational"
+  },
+  {
+    "name": "BRU01-GRV3",
+    "pop": "BRUSSELS",
+    "status": "operational"
+  },
+  {
+    "name": "BRU SURF SPECTRUM 1 (FACING AMSTERDAM)",
+    "pop": "BRUSSELS",
+    "status": "operational"
+  },
+  {
+    "name": "BRU01-GRV1",
+    "pop": "BRUSSELS",
+    "status": "operational"
+  },
+  {
+    "name": "SW2.BRU.BE_ROUTER_FABRIC",
+    "pop": "BRUSSELS",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.BRU.BE_SNM_OPTICAL_MGMT",
+    "pop": "BRUSSELS",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.BRU.BE_SNM_SWITCH_MGMT",
+    "pop": "BRUSSELS",
+    "status": "operational"
+  },
+  {
+    "name": "BRU BELNET SPECTRUM 1 (FACING LUX)",
+    "pop": "BRUSSELS",
+    "status": "operational"
+  },
+  {
+    "name": "BRU BELNET SPECTRUM 2 (FACING LUX)",
+    "pop": "BRUSSELS",
+    "status": "operational"
+  },
+  {
+    "name": "MIX Z-END",
+    "pop": "MILAN 2 CALDERA",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.MIL2.IT_SWITCH-MGMT",
+    "pop": "MILAN 2 CALDERA",
+    "status": "planned"
+  },
+  {
+    "name": "NTP5.GEANT.NET",
+    "pop": "MILAN 2 CALDERA",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.MIL2.IT",
+    "pop": "MILAN 2 CALDERA",
+    "status": "operational"
+  },
+  {
+    "name": "MIL2.MIX.OOB.ACCESS.ROUTER",
+    "pop": "MILAN 2 CALDERA",
+    "status": "operational"
+  },
+  {
+    "name": "MIL02-GRV7",
+    "pop": "MILAN 2 CALDERA",
+    "status": "operational"
+  },
+  {
+    "name": "MIL02-GRV2",
+    "pop": "MILAN 2 CALDERA",
+    "status": "operational"
+  },
+  {
+    "name": "MIL02-GRV1",
+    "pop": "MILAN 2 CALDERA",
+    "status": "operational"
+  },
+  {
+    "name": "SW2.MIL2.IT",
+    "pop": "MILAN 2 CALDERA",
+    "status": "operational"
+  },
+  {
+    "name": "SW2.MIL2.IT_ROUTER_FABRIC",
+    "pop": "MILAN 2 CALDERA",
+    "status": "operational"
+  },
+  {
+    "name": "MIL02-GRV3",
+    "pop": "MILAN 2 CALDERA",
+    "status": "operational"
+  },
+  {
+    "name": "MIL02-MTC6-1",
+    "pop": "MILAN 2 CALDERA",
+    "status": "operational"
+  },
+  {
+    "name": "TS1-NEW.MIL2.IT.GEANT.NET(OPENGEAR)",
+    "pop": "MILAN 2 CALDERA",
+    "status": "operational"
+  },
+  {
+    "name": "MIL02-GRV5",
+    "pop": "MILAN 2 CALDERA",
+    "status": "operational"
+  },
+  {
+    "name": "MIL02-GRV4",
+    "pop": "MILAN 2 CALDERA",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.MIL2.IT_ROUTER_FABRIC",
+    "pop": "MILAN 2 CALDERA",
+    "status": "operational"
+  },
+  {
+    "name": "MIL02-GRV6",
+    "pop": "MILAN 2 CALDERA",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.MIL2.IT_CORIANT-MGMT",
+    "pop": "MILAN 2 CALDERA",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.MIL2.IT_IAS",
+    "pop": "MILAN 2 CALDERA",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.MIL2.IT",
+    "pop": "MILAN 2 CALDERA",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.MIL2.IT_LHCONE-L3VPN",
+    "pop": "MILAN 2 CALDERA",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.MIL2.IT_MDVPN",
+    "pop": "MILAN 2 CALDERA",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.MIL2.IT_IAS",
+    "pop": "MILAN 2 CALDERA",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.MIL2.IT_GEANT_GLOBAL",
+    "pop": "MILAN 2 CALDERA",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.MIL2.IT_SNM_SWITCH_MGMT",
+    "pop": "MILAN 2 CALDERA",
+    "status": "operational"
+  },
+  {
+    "name": "MIL2 ISLALINK SPECTRUM 1 (FACING CRO)",
+    "pop": "MILAN 2 CALDERA",
+    "status": "operational"
+  },
+  {
+    "name": "ISLALINK Z-END",
+    "pop": "MILAN 2 CALDERA",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.BUD.HU",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.BUD.HU_MGMT-L3VPN",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "NTP4.GEANT.NET",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.BUD.HU_SWITCH-MGMT",
+    "pop": "BUDAPEST",
+    "status": "planned"
+  },
+  {
+    "name": "BUD.KIFU.OOB.ACCESS.ROUTER",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "UTIC NODE",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.BUD.HU",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.BUD.HU.GEANT.NET(OPENGEAR)",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.BUD.HU_LHCONE-L3VPN",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "KIFU A-END",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "ARELION A-END",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "TURK TELEKOM INTERNATIONAL Z-END",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.BUD.HU_ROUTER_FABRIC",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "BUD01-MTC6-1",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "BUD01-GRV2",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "BUD01-GRV1",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "BUD01-GRV3",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.BUD.HU_CORIANT-MGMT",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "BUD01-GRV5",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "BUD01-GRV4",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "PF1-RARE.BUD.HU.GEANT.NET",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "BUD PRIME TELECOM SPECTRUM 1 (FACING BUC)",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "PSMP-GN-DRAC-BUD-HU.GEANT.ORG",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.BUD.HU_GEANT_GLOBAL",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.BUD.HU_SNM_SWITCH_MGMT",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "UTIC A-END",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.BUD.HU",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.BUD.HU_ROUTER_FABRIC",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.BUD.HU_IAS",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.BUD.HU_RARE_P4_MGMT",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.BUD.HU_MDVPN",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.BUD.HU_IAS",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.BUD.HU_MGMT-BRIDGE",
+    "pop": "BUDAPEST",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.BUC-NEW",
+    "pop": "BUCHAREST",
+    "status": "operational"
+  },
+  {
+    "name": "PSMP.BUC.RO.GEANT.NET",
+    "pop": "BUCHAREST",
+    "status": "terminated"
+  },
+  {
+    "name": "BUC.ROEDUNET.OOB.ACCESS.ROUTER",
+    "pop": "BUCHAREST",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.BUC.RO",
+    "pop": "BUCHAREST",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.BRA.SK",
+    "pop": "BRATISLAVA",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.BRA.SK_IAS",
+    "pop": "BRATISLAVA",
+    "status": "operational"
+  },
+  {
+    "name": "BRA.SITEL.OOB.ACCESS.ROUTER",
+    "pop": "BRATISLAVA",
+    "status": "operational"
+  },
+  {
+    "name": "SITEL OOB ACCESS ROUTER",
+    "pop": "BRATISLAVA",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.BRA.SK",
+    "pop": "BRATISLAVA",
+    "status": "operational"
+  },
+  {
+    "name": "RT2.BRA.SK",
+    "pop": "BRATISLAVA",
+    "status": "operational"
+  },
+  {
+    "name": "BRA01-GRV4",
+    "pop": "BRATISLAVA",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.BRA.SK_CORIANT-MGMT",
+    "pop": "BRATISLAVA",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.BRA.SK_ROUTER_FABRIC",
+    "pop": "BRATISLAVA",
+    "status": "operational"
+  },
+  {
+    "name": "BRA01-GRV2",
+    "pop": "BRATISLAVA",
+    "status": "operational"
+  },
+  {
+    "name": "BRA01-MTC6-1",
+    "pop": "BRATISLAVA",
+    "status": "operational"
+  },
+  {
+    "name": "BRA01-GRV1",
+    "pop": "BRATISLAVA",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.BRA.SK",
+    "pop": "BRATISLAVA",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.BRA.SK_IAS",
+    "pop": "BRATISLAVA",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.BRA.SK_ROUTER_FABRIC",
+    "pop": "BRATISLAVA",
+    "status": "operational"
+  },
+  {
+    "name": "RT2.BRA.SK_CORIANT-MGMT",
+    "pop": "BRATISLAVA",
+    "status": "operational"
+  },
+  {
+    "name": "RT2.BRA.SK_IAS",
+    "pop": "BRATISLAVA",
+    "status": "operational"
+  },
+  {
+    "name": "RT2.BRA.SK_ROUTER_FABRIC",
+    "pop": "BRATISLAVA",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.BRA.SK.GEANT.NET(OPENGEAR)",
+    "pop": "BRATISLAVA",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.BRA.SK_IDRAC-MGMT",
+    "pop": "BRATISLAVA",
+    "status": "planned"
+  },
+  {
+    "name": "RT0.BRA.SK_SNM_SWITCH_MGMT",
+    "pop": "BRATISLAVA",
+    "status": "operational"
+  },
+  {
+    "name": "BRA01-GRV3",
+    "pop": "BRATISLAVA",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.BRA.SK_SWITCH-MGMT",
+    "pop": "BRATISLAVA",
+    "status": "planned"
+  },
+  {
+    "name": "RT0.BRA.SK_GEANT_GLOBAL",
+    "pop": "BRATISLAVA",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.CH.OFFICE.GEANT.NET(OPENGEAR)",
+    "pop": "CAMBRIDGE CITY HOUSE",
+    "status": "operational"
+  },
+  {
+    "name": "QFX1.CH.OFFICE_ROUTER_FABRIC",
+    "pop": "CAMBRIDGE CITY HOUSE",
+    "status": "operational"
+  },
+  {
+    "name": "QFX1.CH.OFFICE",
+    "pop": "CAMBRIDGE CITY HOUSE",
+    "status": "operational"
+  },
+  {
+    "name": "CBG-PRD-NOC01.IDRAC.WIN.DANTE.ORG.UK",
+    "pop": "CAMBRIDGE CITY HOUSE",
+    "status": "operational"
+  },
+  {
+    "name": "SRX1.CH.OFFICE_ROUTER_FABRIC",
+    "pop": "CAMBRIDGE CITY HOUSE",
+    "status": "operational"
+  },
+  {
+    "name": "SRX2.CH.OFFICE_ROUTER_FABRIC",
+    "pop": "CAMBRIDGE CITY HOUSE",
+    "status": "operational"
+  },
+  {
+    "name": "VODAFONE CPE",
+    "pop": "CAMBRIDGE CITY HOUSE",
+    "status": "operational"
+  },
+  {
+    "name": "CAM VIRGIN MEDIA CPE",
+    "pop": "CAMBRIDGE CITY HOUSE",
+    "status": "operational"
+  },
+  {
+    "name": "SRX1.CH.OFFICE",
+    "pop": "CAMBRIDGE CITY HOUSE",
+    "status": "operational"
+  },
+  {
+    "name": "SRX2.CH.OFFICE",
+    "pop": "CAMBRIDGE CITY HOUSE",
+    "status": "operational"
+  },
+  {
+    "name": "SRX2.AM.OFFICE_ROUTER_FABRIC",
+    "pop": "AMSTERDAM GEANT OFFICE",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.AM.OFFICE",
+    "pop": "AMSTERDAM GEANT OFFICE",
+    "status": "operational"
+  },
+  {
+    "name": "SRX1.AM.OFFICE",
+    "pop": "AMSTERDAM GEANT OFFICE",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.AM.OFFICE",
+    "pop": "AMSTERDAM GEANT OFFICE",
+    "status": "operational"
+  },
+  {
+    "name": "MC-3",
+    "pop": "AMSTERDAM GEANT OFFICE",
+    "status": "operational"
+  },
+  {
+    "name": "MC-2",
+    "pop": "AMSTERDAM GEANT OFFICE",
+    "status": "operational"
+  },
+  {
+    "name": "CIENA NTU SECONDARY (SURF)",
+    "pop": "AMSTERDAM GEANT OFFICE",
+    "status": "operational"
+  },
+  {
+    "name": "CIENA NTU PRIMARY (SURF)",
+    "pop": "AMSTERDAM GEANT OFFICE",
+    "status": "operational"
+  },
+  {
+    "name": "IDRAC-AM-PRD-ESX11.WIN.DANTE.ORG.UK",
+    "pop": "AMSTERDAM GEANT OFFICE",
+    "status": "operational"
+  },
+  {
+    "name": "IDRAC-AM-PRD-ESX12.WIN.DANTE.ORG.UK",
+    "pop": "AMSTERDAM GEANT OFFICE",
+    "status": "operational"
+  },
+  {
+    "name": "SRX2.AM.OFFICE",
+    "pop": "AMSTERDAM GEANT OFFICE",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.AM.OFFICE_ROUTER_FABRIC",
+    "pop": "AMSTERDAM GEANT OFFICE",
+    "status": "operational"
+  },
+  {
+    "name": "SRX1.AM.OFFICE_ROUTER_FABRIC",
+    "pop": "AMSTERDAM GEANT OFFICE",
+    "status": "operational"
+  },
+  {
+    "name": "KAU01-GRV1",
+    "pop": "KAUNAS",
+    "status": "operational"
+  },
+  {
+    "name": "KAU01-GRV2",
+    "pop": "KAUNAS",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.KAU.LT",
+    "pop": "KAUNAS",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.KAU.LT",
+    "pop": "KAUNAS",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.KAU.LT_IAS",
+    "pop": "KAUNAS",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.KAU.LT_SNM_OPTICAL_MGMT",
+    "pop": "KAUNAS",
+    "status": "operational"
+  },
+  {
+    "name": "KAU ALMA SPECTRUM 1 (FACING POZ)",
+    "pop": "KAUNAS",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.KAU.LT_ROUTER_FABRIC",
+    "pop": "KAUNAS",
+    "status": "operational"
+  },
+  {
+    "name": "KAU01-MTC6-1",
+    "pop": "KAUNAS",
+    "status": "operational"
+  },
+  {
+    "name": "KAU LITNET SPECTRUM 1 (FACING RIG)",
+    "pop": "KAUNAS",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.KAU.LT_SNM_SWITCH_MGMT",
+    "pop": "KAUNAS",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.KAU.LT_GEANT_GLOBAL",
+    "pop": "KAUNAS",
+    "status": "operational"
+  },
+  {
+    "name": "KAU01-GRV3",
+    "pop": "KAUNAS",
+    "status": "operational"
+  },
+  {
+    "name": "KAU01-GRV4",
+    "pop": "KAUNAS",
+    "status": "operational"
+  },
+  {
+    "name": "LITNET  MX10003 ROUTER",
+    "pop": "KAUNAS",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.KAU.LT(OPENGEAR)",
+    "pop": "KAUNAS",
+    "status": "operational"
+  },
+  {
+    "name": "LJU.ARNES.OOB.ACCESS.ROUTER",
+    "pop": "LJUBLJANA 2",
+    "status": "operational"
+  },
+  {
+    "name": "LJU02-MTC6-1",
+    "pop": "LJUBLJANA 2",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.LJU2.SI.GEANT.NET(OPENGEAR)",
+    "pop": "LJUBLJANA 2",
+    "status": "operational"
+  },
+  {
+    "name": "LJU02-GRV1",
+    "pop": "LJUBLJANA 2",
+    "status": "operational"
+  },
+  {
+    "name": "MALTA ACCESS ROUTER-1",
+    "pop": "MALTA",
+    "status": "operational"
+  },
+  {
+    "name": "MALTA ACCESS ROUTER-2",
+    "pop": "MALTA",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.RIG.LV",
+    "pop": "RIGA",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.RIG.LV_GEANT_GLOBAL",
+    "pop": "RIGA",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.RIG.LV_IAS",
+    "pop": "RIGA",
+    "status": "operational"
+  },
+  {
+    "name": "RIG.TELIA.OOB.ACCESS.ROUTER",
+    "pop": "RIGA",
+    "status": "operational"
+  },
+  {
+    "name": "TELIA LATVIA ACCESS ROUTER",
+    "pop": "RIGA",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.RIG.LV.GEANT.NET(OPENGEAR)",
+    "pop": "RIGA",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.RIG.LV",
+    "pop": "RIGA",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.RIG.LV_ROUTER_FABRIC",
+    "pop": "RIGA",
+    "status": "operational"
+  },
+  {
+    "name": "RIG01-MTC6-1",
+    "pop": "RIGA",
+    "status": "operational"
+  },
+  {
+    "name": "RIG LITNET SPECTRUM 1 (FACING KAU)",
+    "pop": "RIGA",
+    "status": "operational"
+  },
+  {
+    "name": "LAT MIKROTIK CRS520-4XS-16XQ",
+    "pop": "RIGA",
+    "status": "operational"
+  },
+  {
+    "name": "RIG01-GRV1",
+    "pop": "RIGA",
+    "status": "operational"
+  },
+  {
+    "name": "RIG01-GRV2",
+    "pop": "RIGA",
+    "status": "operational"
+  },
+  {
+    "name": "RIG01-GRV4",
+    "pop": "RIGA",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.RIG.LV_SNM_SWITCH_MGMT",
+    "pop": "RIGA",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.RIG.LV_SNM_OPTICAL_MGMT",
+    "pop": "RIGA",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.RIG.LV_LHCONE_L3VPN",
+    "pop": "RIGA",
+    "status": "operational"
+  },
+  {
+    "name": "RIG BITE SPECTRUM 1 (FACING TAR)",
+    "pop": "RIGA",
+    "status": "operational"
+  },
+  {
+    "name": "RIG01-GRV3",
+    "pop": "RIGA",
+    "status": "operational"
+  },
+  {
+    "name": "SURF EQUIPMENT-1",
+    "pop": "SURF",
+    "status": "operational"
+  },
+  {
+    "name": "SURF EQUIPMENT-2",
+    "pop": "SURF",
+    "status": "operational"
+  },
+  {
+    "name": "ZAG01-GRV3",
+    "pop": "ZAGREB 1",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.ZAG.HR",
+    "pop": "ZAGREB 1",
+    "status": "operational"
+  },
+  {
+    "name": "ZAG01-GRV4",
+    "pop": "ZAGREB 1",
+    "status": "operational"
+  },
+  {
+    "name": "ZAG01-GRV2",
+    "pop": "ZAGREB 1",
+    "status": "operational"
+  },
+  {
+    "name": "KREN A-END",
+    "pop": "ZAGREB 1",
+    "status": "operational"
+  },
+  {
+    "name": "KREN Z-END",
+    "pop": "ZAGREB 1",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.ZAG.HR_ROUTER_FABRIC",
+    "pop": "ZAGREB 1",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.ZAG.HR_LHCONE_L3VPN",
+    "pop": "ZAGREB 1",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.ZAG.HR_SNM_OPTICAL_MGMT",
+    "pop": "ZAGREB 1",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.ZAG.HR.GEANT.NET(OPENGEAR)",
+    "pop": "ZAGREB 1",
+    "status": "operational"
+  },
+  {
+    "name": "ZAG01-GRV5",
+    "pop": "ZAGREB 1",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.ZAG.HR",
+    "pop": "ZAGREB 1",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.ZAG.HR_IAS",
+    "pop": "ZAGREB 1",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.ZAG.HR_GEANT_GLOBAL",
+    "pop": "ZAGREB 1",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.ZAG.HR_SNM_SWITCH_MGMT",
+    "pop": "ZAGREB 1",
+    "status": "operational"
+  },
+  {
+    "name": "ZAG01-GRV6",
+    "pop": "ZAGREB 1",
+    "status": "operational"
+  },
+  {
+    "name": "ZAG.AMIS NOC.OOB.ACCESS.ROUTER",
+    "pop": "ZAGREB 1",
+    "status": "operational"
+  },
+  {
+    "name": "AMIS-ZAG-OOB-EQUIPMENT",
+    "pop": "ZAGREB 1",
+    "status": "operational"
+  },
+  {
+    "name": "ZAG01-MTC6-1",
+    "pop": "ZAGREB 1",
+    "status": "operational"
+  },
+  {
+    "name": "ZAG01-GRV1",
+    "pop": "ZAGREB 1",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON2.UK_SNM-TOOLS-ACCESS",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.LON2.UK-CHASSIS-2",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "DTN1.LON2",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON2.UK_TAASGATE",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.LON2.UK_LHCONE_L3VPN",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON2.UK_QFX_MGMT",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON2.UK_TAAS-CONTROL",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON2.UK_MGMT-L3VPN",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON2.UK_CORIANT-MGMT",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON2.UK_GEANT-IT",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "SPLUNK-LON2-PEER01",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON2.UK_GTS-CONTROL",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON2.UK_GTS_VPLS-NEUTRON",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON2.UK_JRA1-SDN-BOD-CONTROL",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON2.UK_SNM-CORIANT-MGMT",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON2.UK_SNM-IDRAC-MGMT",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON2.UK_SWITCH-MGMT",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON2.UK_MGMT-BRIDGE",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON2.UK_IDRAC-MGMT",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON2.UK_SERVER-MGMT",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON2.UK_IAS",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON2.UK_FW1-SNM-EXT",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON2.UK_SNM-SERVER-MGMT",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON2.UK_SNM-SWITCH-MGMT",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.LON2.UK_GEANT_GLOBAL",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "LON2-PRD-ESX01",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "LON2-PRD-ESX02",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "LON2-PRD-ESX10",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "LON2-PRD-ESX11",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "LON2-PRD-ESX12",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "LON2-PRD-ESX20",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "LON2-PRD-ESX21",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.LON2.UK_IAS",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "FW2-SNM.LON2.GEANT.NET",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "IT_INFRA_BACKUP",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "EX1.LON2.UK",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "LON02-MTC6-1",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "ASREN LON2 KIT",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON2.UK_TOOLS-ACCESS",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "QFX1.LON2.UK",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "LON02-GRV1",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "SINET LON2 KIT",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "JRA4T2-LON2.UK",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "PSMP-GN-DRAC-LON2-UK.GEANT.ORG",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "SINGAREN LON2 KIT",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "INFOBLOX1.LON2.UK",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "INFOBLOX2.LON2.UK",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "EUNET OOB CPE",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "LON2 VIRGIN MEDIA CPE",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "LON2.EUNETWORKS.OOB.ACCESS.ROUTER",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.LON2.UK.GEANT.NET(OPENGEAR)",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON2.UK_ROUTER_FABRIC",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "QFX.LON2.UK_ROUTER_FABRIC",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "ASREN A-END",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "LON02-GRV2",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON2.UK_LHCONE-L3VPN",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "LON2-RUBRIK-01",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "LON02-GRV3",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "AMT1.LON2.UK_ROUTER_FABRIC",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "LON02-GRV5",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "AMT1.LON2.UK",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "LON2 EXA SPECTRUM (FACING PAR)",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "LON02-GRV4",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.LON2.UK_SNM_SWITCH_MGMT",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "LON2-PRD-ESX03",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "PROD-DBOARD02.GEANT.ORG",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "UAT-DBOARD02.GEANT.ORG",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "FLOWMON.GEANT.NET",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "SW2.LON2.UK",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.LON2.UK",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "FW1-SNM.LON2.GEANT.NET",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "ESX1.LON",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "SPLUNK-LON2-PEER02",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "LON2 EXA SPECTRUM (FACING COR)",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "SW2.LON2.UK_ROUTER_FABRIC",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.LON2.UK",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "ESX0.LON",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "ESX2.LON",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "ESX3.LON",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "LON2.STORAGE",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.STORAGE.LON2",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "SW2.STORAGE.LON2",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "HV01.LON",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "HV02.LON",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "HV03.LON",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "QFX.LON2.UK",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "QFX1.LON2.UK_ROUTER_FABRIC",
+    "pop": "LONDON 2",
+    "status": "operational"
+  },
+  {
+    "name": "EXOSCALE ROUTER",
+    "pop": "EXOSCALE CH",
+    "status": "operational"
+  },
+  {
+    "name": "GENERIC PEER ROUTER CZ",
+    "pop": "NIX",
+    "status": "operational"
+  },
+  {
+    "name": "GENERIC PEER ROUTER HU",
+    "pop": "BIX-HU",
+    "status": "operational"
+  },
+  {
+    "name": "CLARA ROUTER",
+    "pop": "CLARA-BRAZIL",
+    "status": "operational"
+  },
+  {
+    "name": "INTEROUTE-LON ROUTER",
+    "pop": "INTEROUTE-LON",
+    "status": "operational"
+  },
+  {
+    "name": "LUX01-GRV2",
+    "pop": "LUXEMBOURG",
+    "status": "operational"
+  },
+  {
+    "name": "LUX BELNET SPECTRUM 1 (FACING BRU)",
+    "pop": "LUXEMBOURG",
+    "status": "operational"
+  },
+  {
+    "name": "LUX BELNET SPECTRUM 2 (FACING BRU)",
+    "pop": "LUXEMBOURG",
+    "status": "operational"
+  },
+  {
+    "name": "LUX01-MTC6-1",
+    "pop": "LUXEMBOURG",
+    "status": "operational"
+  },
+  {
+    "name": "LUX EXA SPECTRUM 1 (FACING FRA)",
+    "pop": "LUXEMBOURG",
+    "status": "operational"
+  },
+  {
+    "name": "LUX01-GRV1",
+    "pop": "LUXEMBOURG",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.LUX.LU.GEANT.NET(OPENGEAR)",
+    "pop": "LUXEMBOURG",
+    "status": "operational"
+  },
+  {
+    "name": "MICROSOFT Z-END",
+    "pop": "MICROSOFT NL",
+    "status": "operational"
+  },
+  {
+    "name": "ORI01-MTC9-1",
+    "pop": "ORI",
+    "status": "operational"
+  },
+  {
+    "name": "STL01-MTC9-1",
+    "pop": "STL",
+    "status": "operational"
+  },
+  {
+    "name": "ETC01-MTC9-1",
+    "pop": "ETR",
+    "status": "operational"
+  },
+  {
+    "name": "CMB01-MTC9-1",
+    "pop": "CMB",
+    "status": "operational"
+  },
+  {
+    "name": "AVR01-MTC9-1",
+    "pop": "AVR",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.POR.PT_MDVPN",
+    "pop": "PORTO",
+    "status": "operational"
+  },
+  {
+    "name": "POR01-GRV-2",
+    "pop": "PORTO",
+    "status": "operational"
+  },
+  {
+    "name": "POR01-GRV-1",
+    "pop": "PORTO",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.POR.PT_IAS",
+    "pop": "PORTO",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.POR.PT_ROUTER_FABRIC",
+    "pop": "PORTO",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.POR.PT.GEANT.NET(OPENGEAR)",
+    "pop": "PORTO",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.POR.PT_ROUTER_FABRIC",
+    "pop": "PORTO",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.POR.PT",
+    "pop": "PORTO",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.POR.PT_CORIANT-MGMT",
+    "pop": "PORTO",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.POR.PT",
+    "pop": "PORTO",
+    "status": "operational"
+  },
+  {
+    "name": "POR01-MTC6-1",
+    "pop": "PORTO",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.POR.PT",
+    "pop": "PORTO",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.POR.PT_IAS",
+    "pop": "PORTO",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.POR.PT_LHCONE-L3VPN",
+    "pop": "PORTO",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.POR.PT_SWITCH-MGMT",
+    "pop": "PORTO",
+    "status": "planned"
+  },
+  {
+    "name": "RT0.POR.PT_SNM_SWITCH_MGMT",
+    "pop": "PORTO",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.POR.PT_GEANT_GLOBAL",
+    "pop": "PORTO",
+    "status": "operational"
+  },
+  {
+    "name": "TUI01-MTC9-1",
+    "pop": "TUI",
+    "status": "operational"
+  },
+  {
+    "name": "CANI01-MTC9-1",
+    "pop": "CANI",
+    "status": "operational"
+  },
+  {
+    "name": "OR.PO01-MTC9-1",
+    "pop": "OR.PO",
+    "status": "operational"
+  },
+  {
+    "name": "VEI01-MTC9-1",
+    "pop": "VEI",
+    "status": "operational"
+  },
+  {
+    "name": "LUBN01-MTC9-1",
+    "pop": "LUBN",
+    "status": "operational"
+  },
+  {
+    "name": "VORB01-MTC9-1",
+    "pop": "VORB",
+    "status": "operational"
+  },
+  {
+    "name": "POLE01-MTC9-1",
+    "pop": "POLE",
+    "status": "operational"
+  },
+  {
+    "name": "GJ.PU01-MTC9-1",
+    "pop": "GJ.PU",
+    "status": "operational"
+  },
+  {
+    "name": "RIBS01-MTC9-1",
+    "pop": "RIBS",
+    "status": "operational"
+  },
+  {
+    "name": "SVDB01-MTC9-1",
+    "pop": "SVDB",
+    "status": "operational"
+  },
+  {
+    "name": "SD.CZ01-MTC9-1",
+    "pop": "SD.CZ",
+    "status": "operational"
+  },
+  {
+    "name": "LARE01-MTC9-1",
+    "pop": "LARE",
+    "status": "operational"
+  },
+  {
+    "name": "CATE01-MTC9-1",
+    "pop": "CATE",
+    "status": "operational"
+  },
+  {
+    "name": "CANL01-MTC9-1",
+    "pop": "CANL",
+    "status": "operational"
+  },
+  {
+    "name": "VCT01-MTC9-1",
+    "pop": "VCT",
+    "status": "operational"
+  },
+  {
+    "name": "PVZ01-MTC9-1",
+    "pop": "PVZ",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.BIL.ES_IAS",
+    "pop": "BILBAO",
+    "status": "operational"
+  },
+  {
+    "name": "BIL01-GRV1",
+    "pop": "BILBAO",
+    "status": "operational"
+  },
+  {
+    "name": "BIL01-MTC6-1",
+    "pop": "BILBAO",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.BIL.ES.GEANT.NET(OPENGEAR)",
+    "pop": "BILBAO",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.BIL.ES_CORIANT-MGMT",
+    "pop": "BILBAO",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.BIL.ES",
+    "pop": "BILBAO",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.BIL.ES_ROUTER_FABRIC",
+    "pop": "BILBAO",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.BIL.ES_RARE_P4_MGMT",
+    "pop": "BILBAO",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.BIL.ES_SWITCH-MGMT",
+    "pop": "BILBAO",
+    "status": "planned"
+  },
+  {
+    "name": "BIL01-GRV3",
+    "pop": "BILBAO",
+    "status": "operational"
+  },
+  {
+    "name": "BIL REDIRIS SPECTRUM 1 (FACING MADRID)",
+    "pop": "BILBAO",
+    "status": "operational"
+  },
+  {
+    "name": "BIL01-GRV2",
+    "pop": "BILBAO",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.BIL.ES",
+    "pop": "BILBAO",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.BIL.ES_ROUTER_FABRIC",
+    "pop": "BILBAO",
+    "status": "operational"
+  },
+  {
+    "name": "PDS01-MTC9-1",
+    "pop": "PDS",
+    "status": "operational"
+  },
+  {
+    "name": "EVR01-MTC9-1",
+    "pop": "EVR",
+    "status": "operational"
+  },
+  {
+    "name": "EST01-MTC9-1",
+    "pop": "EST",
+    "status": "operational"
+  },
+  {
+    "name": "PTL01-MTC9-1",
+    "pop": "PTL",
+    "status": "operational"
+  },
+  {
+    "name": "ELV01-MTC9-1",
+    "pop": "ELV",
+    "status": "operational"
+  },
+  {
+    "name": "BAD01-MTC6-1",
+    "pop": "BAD",
+    "status": "operational"
+  },
+  {
+    "name": "MTO01-MTC9-1",
+    "pop": "MTO",
+    "status": "operational"
+  },
+  {
+    "name": "MIAJ01-MTC9-1",
+    "pop": "MIAJ",
+    "status": "operational"
+  },
+  {
+    "name": "CC.PE01-MTC9-1",
+    "pop": "CC.PE",
+    "status": "operational"
+  },
+  {
+    "name": "JRCJ01-MTC9-1",
+    "pop": "JRCJ",
+    "status": "operational"
+  },
+  {
+    "name": "NMTA01-MTC9-1",
+    "pop": "NMTA",
+    "status": "operational"
+  },
+  {
+    "name": "TLR01-MTC9-1",
+    "pop": "TLR",
+    "status": "operational"
+  },
+  {
+    "name": "VJD.VD01-MTC9-1",
+    "pop": "VJD.VD",
+    "status": "operational"
+  },
+  {
+    "name": "HBT-HBT01-MTC9-1",
+    "pop": "HBT-HBT",
+    "status": "operational"
+  },
+  {
+    "name": "GDY-GDY01-MTC9-1",
+    "pop": "GDY-GDY",
+    "status": "operational"
+  },
+  {
+    "name": "FNY-FNY01-MTC9-1",
+    "pop": "FNY-FNY",
+    "status": "operational"
+  },
+  {
+    "name": "LTL-LTL01-MTC9-1",
+    "pop": "LTL-LTL",
+    "status": "operational"
+  },
+  {
+    "name": "PIS-AME01-MTC9-1",
+    "pop": "PIS-AME",
+    "status": "operational"
+  },
+  {
+    "name": "CNC-CNC01-MTC9-1",
+    "pop": "CNC-CNC",
+    "status": "operational"
+  },
+  {
+    "name": "CHM-CHM01-MTC9-1",
+    "pop": "CHM-CHM",
+    "status": "operational"
+  },
+  {
+    "name": "LDP-LDP01-MTC9-1",
+    "pop": "LDP-LDP",
+    "status": "operational"
+  },
+  {
+    "name": "BOD-MIR01-MTC9-1",
+    "pop": "BOD-MIR",
+    "status": "terminated"
+  },
+  {
+    "name": "YHX-DUM01-MTC9-1",
+    "pop": "YHX-DUM",
+    "status": "operational"
+  },
+  {
+    "name": "MGQ-MGQ01-MTC9-1",
+    "pop": "MGQ-MGQ",
+    "status": "operational"
+  },
+  {
+    "name": "SPN-SPN01-MTC9-1",
+    "pop": "SPN-SPN",
+    "status": "operational"
+  },
+  {
+    "name": "GUZ-GAZ01-MTC9-1",
+    "pop": "GUZ-GAZ",
+    "status": "operational"
+  },
+  {
+    "name": "BIO-ART01-MTC9-1",
+    "pop": "BIO-ART",
+    "status": "operational"
+  },
+  {
+    "name": "VER01-MTC9-1",
+    "pop": "VERM",
+    "status": "operational"
+  },
+  {
+    "name": "VCI-TAN01-MTC9-1",
+    "pop": "VCI-TAN",
+    "status": "operational"
+  },
+  {
+    "name": "SMM-SMM01-MTC9-1",
+    "pop": "SMM-SMM",
+    "status": "operational"
+  },
+  {
+    "name": "FRJ-FRJ01-MTC9-1",
+    "pop": "FRJ-FRJ",
+    "status": "operational"
+  },
+  {
+    "name": "NCE-TRA01-MTC9-1",
+    "pop": "NCE-TRA",
+    "status": "operational"
+  },
+  {
+    "name": "SRO-ARM01-MTC9-1",
+    "pop": "SRO-ARM",
+    "status": "operational"
+  },
+  {
+    "name": "FIA-CAL01-MTC9-1",
+    "pop": "FIA-CAL",
+    "status": "operational"
+  },
+  {
+    "name": "GOA-PIL01-MTC9-1",
+    "pop": "GOA-PIL",
+    "status": "operational"
+  },
+  {
+    "name": "ASS-ASS01-MTC9-1",
+    "pop": "ASS-ASS",
+    "status": "operational"
+  },
+  {
+    "name": "BCH-BCH01-MTC9-1",
+    "pop": "BCH-BCH",
+    "status": "operational"
+  },
+  {
+    "name": "TRN-BER01-MTC9-1",
+    "pop": "TRN-BER",
+    "status": "operational"
+  },
+  {
+    "name": "TEC-TEC01-MTC9-1",
+    "pop": "TEC-TEC",
+    "status": "operational"
+  },
+  {
+    "name": "VSL-VSL01-MTC9-1",
+    "pop": "VSL-VSL",
+    "status": "operational"
+  },
+  {
+    "name": "VVS-VVS01-MTC9-1",
+    "pop": "VVS-VVS",
+    "status": "operational"
+  },
+  {
+    "name": "GMZ-GMZ01-MTC9-1",
+    "pop": "GMZ-GMZ",
+    "status": "operational"
+  },
+  {
+    "name": "CDI-CDI01-MTC9-1",
+    "pop": "CDI-CDI",
+    "status": "operational"
+  },
+  {
+    "name": "VLC-PAR01-MTC9-1",
+    "pop": "VLC-PAR",
+    "status": "operational"
+  },
+  {
+    "name": "ERL-ERL01-MTC9-1",
+    "pop": "ERL-ERL",
+    "status": "operational"
+  },
+  {
+    "name": "NPD-NPD01-MTC9-1",
+    "pop": "NPD-NPD",
+    "status": "operational"
+  },
+  {
+    "name": "BEN-BEN01-MTC9-1",
+    "pop": "BEN-BEN",
+    "status": "operational"
+  },
+  {
+    "name": "HDI-HDI01-MTC9-1",
+    "pop": "HDI-HDI",
+    "status": "operational"
+  },
+  {
+    "name": "BDP-BDP01-MTC9-1",
+    "pop": "BDP-BDP",
+    "status": "operational"
+  },
+  {
+    "name": "BCN-BOS01-MTC9-1",
+    "pop": "BCN-BOS",
+    "status": "operational"
+  },
+  {
+    "name": "MDS-MDS01-MTC9-1",
+    "pop": "MDS-MDS",
+    "status": "operational"
+  },
+  {
+    "name": "BIR-BIR01-MTC9-1",
+    "pop": "BIR-BIR",
+    "status": "operational"
+  },
+  {
+    "name": "VGA-VGA01-MTC9-1",
+    "pop": "VGA-VGA",
+    "status": "operational"
+  },
+  {
+    "name": "AGD-AGD01-MTC9-1",
+    "pop": "AGD-AGD",
+    "status": "operational"
+  },
+  {
+    "name": "NRB-PON01-MTC9-1",
+    "pop": "NRB-PON",
+    "status": "operational"
+  },
+  {
+    "name": "LGM-ECU01-MTC9-1",
+    "pop": "LGM-ECU",
+    "status": "operational"
+  },
+  {
+    "name": "FQS-LED01-MTC9-1",
+    "pop": "FQS-LED",
+    "status": "operational"
+  },
+  {
+    "name": "FMR-AGN01-MTC9-1",
+    "pop": "FMR-AGN",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.MAR.FR_IAS",
+    "pop": "MARSEILLE",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.MAR.FR_SNM_SWITCH_MGMT",
+    "pop": "MARSEILLE",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.MAR.FR_LHCONE-L3VPN",
+    "pop": "MARSEILLE",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.MAR.FR_CORIANT-MGMT",
+    "pop": "MARSEILLE",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.MAR.FR",
+    "pop": "MARSEILLE",
+    "status": "operational"
+  },
+  {
+    "name": "MAR01-GRV3",
+    "pop": "MARSEILLE",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.MAR.FR_IAS",
+    "pop": "MARSEILLE",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.MAR.FR_ROUTER_FABRIC",
+    "pop": "MARSEILLE",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.MAR.FR.GEANT.NET(OPENGEAR)",
+    "pop": "MARSEILLE",
+    "status": "operational"
+  },
+  {
+    "name": "MAR01-GRV1",
+    "pop": "MARSEILLE",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.MAR.FR_GEANT_GLOBAL",
+    "pop": "MARSEILLE",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.MAR.FR",
+    "pop": "MARSEILLE",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.MAR.FR_SWITCH-MGMT",
+    "pop": "MARSEILLE",
+    "status": "planned"
+  },
+  {
+    "name": "SW2.MAR.FR_ROUTER_FABRIC",
+    "pop": "MARSEILLE",
+    "status": "operational"
+  },
+  {
+    "name": "SW2.MAR.FR",
+    "pop": "MARSEILLE",
+    "status": "operational"
+  },
+  {
+    "name": "MAR01-GRV2",
+    "pop": "MARSEILLE",
+    "status": "operational"
+  },
+  {
+    "name": "MAR01-MTC6-1",
+    "pop": "MARSEILLE",
+    "status": "operational"
+  },
+  {
+    "name": "VERIZON Z-END",
+    "pop": "VERIZON - AT",
+    "status": "operational"
+  },
+  {
+    "name": "MIL-BRI-MTC9-1",
+    "pop": "MIL-BRI",
+    "status": "operational"
+  },
+  {
+    "name": "CMM-ZAN-MTC9-1",
+    "pop": "CMM-ZAN",
+    "status": "operational"
+  },
+  {
+    "name": "UDN-BAL-MTC9-1",
+    "pop": "UDN-BAL",
+    "status": "operational"
+  },
+  {
+    "name": "GSN-GSN-MTC9-1",
+    "pop": "GSN-GSN",
+    "status": "operational"
+  },
+  {
+    "name": "SOD-SOD-MTC9-1",
+    "pop": "SOD-SOD",
+    "status": "operational"
+  },
+  {
+    "name": "GRZ-NEU-MTC9-1",
+    "pop": "GRZ-NEU",
+    "status": "operational"
+  },
+  {
+    "name": "HBG-HTB-MTC9-1",
+    "pop": "HBG-HTB",
+    "status": "operational"
+  },
+  {
+    "name": "WIE-WIE-MTC9-1",
+    "pop": "WIE-WIE",
+    "status": "operational"
+  },
+  {
+    "name": "FSN-FSN-MTC9-1",
+    "pop": "FSN-FSN",
+    "status": "operational"
+  },
+  {
+    "name": "MZC-MZC-MTC9-1",
+    "pop": "MZC-MZC",
+    "status": "operational"
+  },
+  {
+    "name": "REZ-CAS-MTC9-1",
+    "pop": "REZ-CAS",
+    "status": "operational"
+  },
+  {
+    "name": "VNO-GEN-MTC9-1",
+    "pop": "VNO-GEN",
+    "status": "operational"
+  },
+  {
+    "name": "SLE-LAC-MTC9-1",
+    "pop": "SLE-LAC",
+    "status": "operational"
+  },
+  {
+    "name": "PBT-PBT-MTC9-1",
+    "pop": "PBT-PBT",
+    "status": "operational"
+  },
+  {
+    "name": "CHSOSZAA-MTC9-1",
+    "pop": "CHSOSZAA",
+    "status": "operational"
+  },
+  {
+    "name": "CRSCSZAB-MTC9-1",
+    "pop": "CRSCSZAB",
+    "status": "operational"
+  },
+  {
+    "name": "ARLOSZAB-MTC9-1",
+    "pop": "ARLOSZAB",
+    "status": "operational"
+  },
+  {
+    "name": "SWENSZAB-MTC9-1",
+    "pop": "SWENSZAB",
+    "status": "operational"
+  },
+  {
+    "name": "ZRCHSZ01-MTC9-1",
+    "pop": "ZRCHSZ01",
+    "status": "operational"
+  },
+  {
+    "name": "OBRBSZAA-MTC9-1",
+    "pop": "OBRBSZAA",
+    "status": "operational"
+  },
+  {
+    "name": "LPENSZAB-MTC9-1",
+    "pop": "LPENSZAB",
+    "status": "operational"
+  },
+  {
+    "name": "ORBESZAA-MTC9-1",
+    "pop": "ORBESZAA",
+    "status": "operational"
+  },
+  {
+    "name": "KOU-MTC9-1",
+    "pop": "KOU",
+    "status": "operational"
+  },
+  {
+    "name": "SAC-MTC9-1",
+    "pop": "SAC",
+    "status": "operational"
+  },
+  {
+    "name": "IVA-MTC9-1",
+    "pop": "IVA",
+    "status": "operational"
+  },
+  {
+    "name": "HUS-MTC9-1",
+    "pop": "HUS",
+    "status": "operational"
+  },
+  {
+    "name": "NIE-MTC9-1",
+    "pop": "NIE",
+    "status": "operational"
+  },
+  {
+    "name": "AVE-AVE-MTC9-1",
+    "pop": "AVE-AVE",
+    "status": "operational"
+  },
+  {
+    "name": "BRN-ITT-MTC9-1",
+    "pop": "BRN-ITT",
+    "status": "operational"
+  },
+  {
+    "name": "BSL-GIE-MTC9-1",
+    "pop": "BSL-GIE",
+    "status": "operational"
+  },
+  {
+    "name": "LUA-VSC-MTC9-1",
+    "pop": "LUA-VSC",
+    "status": "operational"
+  },
+  {
+    "name": "ZRH-JOS-MTC9-1",
+    "pop": "ZRH-JOS",
+    "status": "operational"
+  },
+  {
+    "name": "SGN-DUC-MTC9-1",
+    "pop": "SGN-DUC",
+    "status": "operational"
+  },
+  {
+    "name": "BLG-DOR-MTC9-1",
+    "pop": "BLG-DOR",
+    "status": "operational"
+  },
+  {
+    "name": "STR-IND-MTC9-1",
+    "pop": "STR-IND",
+    "status": "operational"
+  },
+  {
+    "name": "FRT-WVS-MTC9-1",
+    "pop": "FRT-WVS",
+    "status": "operational"
+  },
+  {
+    "name": "LSH-NIB-MTC9-1",
+    "pop": "LSH-NIB",
+    "status": "operational"
+  },
+  {
+    "name": "RT2.CHI.MD_CORIANT-MGMT",
+    "pop": "CHISINAU",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.CHI.MD",
+    "pop": "CHISINAU",
+    "status": "operational"
+  },
+  {
+    "name": "RENAM MX240 ROUTER",
+    "pop": "CHISINAU",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.CHI.MD",
+    "pop": "CHISINAU",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.CHI.MD_ROUTER_FABRIC",
+    "pop": "CHISINAU",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.CHI.MD",
+    "pop": "CHISINAU",
+    "status": "operational"
+  },
+  {
+    "name": "RT2.CHI.MD",
+    "pop": "CHISINAU",
+    "status": "operational"
+  },
+  {
+    "name": "RT2.CHI.MD_IAS",
+    "pop": "CHISINAU",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.CHI.MD_IAS",
+    "pop": "CHISINAU",
+    "status": "operational"
+  },
+  {
+    "name": "RT2.CHI.MD_ROUTER_FABRIC",
+    "pop": "CHISINAU",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.CHI.MD_ROUTER_FABRIC",
+    "pop": "CHISINAU",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.CHI.MD_CORIANT-MGMT",
+    "pop": "CHISINAU",
+    "status": "operational"
+  },
+  {
+    "name": "CHI01-GRV1",
+    "pop": "CHISINAU",
+    "status": "operational"
+  },
+  {
+    "name": "CHI.RENAM OOB.ACCESS ROUTER",
+    "pop": "CHISINAU",
+    "status": "operational"
+  },
+  {
+    "name": "CHISINAU RETN SPECTRUM 1",
+    "pop": "CHISINAU",
+    "status": "operational"
+  },
+  {
+    "name": "CHISINAU RETN SPECTRUM 2",
+    "pop": "CHISINAU",
+    "status": "operational"
+  },
+  {
+    "name": "COLDSPARE.CHISINAU",
+    "pop": "CHISINAU",
+    "status": "installed"
+  },
+  {
+    "name": "CHI01-GRV2",
+    "pop": "CHISINAU",
+    "status": "operational"
+  },
+  {
+    "name": "CHI PRIME SPECTRUM 1 (FACING BUC)",
+    "pop": "CHISINAU",
+    "status": "operational"
+  },
+  {
+    "name": "COLDSPARE.GRV1.CHI.MD.GEANT.NET",
+    "pop": "CHISINAU",
+    "status": "planned"
+  },
+  {
+    "name": "COLDSPARE.GRV.CHI.MD.GEANT.NET",
+    "pop": "CHISINAU",
+    "status": "planned"
+  },
+  {
+    "name": "RT2.KIE.UA_CORIANT-MGMT",
+    "pop": "KIEV",
+    "status": "operational"
+  },
+  {
+    "name": "URAN A-END",
+    "pop": "KIEV",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.KIE.UA",
+    "pop": "KIEV",
+    "status": "operational"
+  },
+  {
+    "name": "RT2.KIE.UA",
+    "pop": "KIEV",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.KIE.UA",
+    "pop": "KIEV",
+    "status": "operational"
+  },
+  {
+    "name": "RT2.KIE.UA_IAS",
+    "pop": "KIEV",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.KIE.UA_IAS",
+    "pop": "KIEV",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.KIE.UA_ROUTER_FABRIC",
+    "pop": "KIEV",
+    "status": "operational"
+  },
+  {
+    "name": "RT2.KIE.UA_ROUTER_FABRIC",
+    "pop": "KIEV",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.KIE.UA_CORIANT-MGMT",
+    "pop": "KIEV",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.KIE.UA_ROUTER_FABRIC",
+    "pop": "KIEV",
+    "status": "operational"
+  },
+  {
+    "name": "KIE01-GRV2",
+    "pop": "KIEV",
+    "status": "operational"
+  },
+  {
+    "name": "KIE01-GRV1",
+    "pop": "KIEV",
+    "status": "operational"
+  },
+  {
+    "name": "KIE.URAN OOB.ACCESS ROUTER",
+    "pop": "KIEV",
+    "status": "operational"
+  },
+  {
+    "name": "KIEV RETN SPECTRUM 1 (FACING POZNAN)",
+    "pop": "KIEV",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.KIE.UA_LHCONE-L3VPN",
+    "pop": "KIEV",
+    "status": "operational"
+  },
+  {
+    "name": "RT2.KIE.UA_LHCONE-L3VPN",
+    "pop": "KIEV",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.KIE.UA",
+    "pop": "KIEV",
+    "status": "operational"
+  },
+  {
+    "name": "KIEV RETN SPECTRUM 2 (FACING POZNAN)",
+    "pop": "KIEV",
+    "status": "operational"
+  },
+  {
+    "name": "KIEV RETN SPECTRUM 1 (FACING CHISINAU)",
+    "pop": "KIEV",
+    "status": "operational"
+  },
+  {
+    "name": "KIEV RETN SPECTRUM 2 (FACING CHISINAU)",
+    "pop": "KIEV",
+    "status": "operational"
+  },
+  {
+    "name": "COLDSPARE.KIEV",
+    "pop": "KIEV",
+    "status": "installed"
+  },
+  {
+    "name": "COLDSPARE.GRV1.KIE.UA.GEANT.NET",
+    "pop": "KIEV",
+    "status": "planned"
+  },
+  {
+    "name": "COLDSPARE.GRV.KIE.UA.GEANT.NET",
+    "pop": "KIEV",
+    "status": "planned"
+  },
+  {
+    "name": "SW2.PRA.CZ",
+    "pop": "PRAGUE",
+    "status": "operational"
+  },
+  {
+    "name": "SW2.PRA.CZ_ROUTER_FABRIC",
+    "pop": "PRAGUE",
+    "status": "operational"
+  },
+  {
+    "name": "PRA01-GRV2",
+    "pop": "PRAGUE",
+    "status": "operational"
+  },
+  {
+    "name": "TS1-NEW.PRA.CZ.GEANT.NET(OPENGEAR)",
+    "pop": "PRAGUE",
+    "status": "operational"
+  },
+  {
+    "name": "PRA01-GRV1",
+    "pop": "PRAGUE",
+    "status": "operational"
+  },
+  {
+    "name": "PRA01-MTC6-1",
+    "pop": "PRAGUE",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.PRA.CZ_CORIANT-MGMT",
+    "pop": "PRAGUE",
+    "status": "operational"
+  },
+  {
+    "name": "DTN1.PRA",
+    "pop": "PRAGUE",
+    "status": "operational"
+  },
+  {
+    "name": "EUMETSAT SERVER PRAGUE",
+    "pop": "PRAGUE",
+    "status": "operational"
+  },
+  {
+    "name": "PRA.DC.TOWER.CRA.OOB.ACCESS.ROUTER",
+    "pop": "PRAGUE",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.PRA.CZ_SNM_SWITCH_MGMT",
+    "pop": "PRAGUE",
+    "status": "operational"
+  },
+  {
+    "name": "PRA01-GRV3",
+    "pop": "PRAGUE",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.PRA.CZ_IAS",
+    "pop": "PRAGUE",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.PRA.CZ",
+    "pop": "PRAGUE",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.PRA.CZ_ROUTER_FABRIC",
+    "pop": "PRAGUE",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.PRA.CZ_LHCONE-L3VPN",
+    "pop": "PRAGUE",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.PRA.CZ_SWITCH-MGMT",
+    "pop": "PRAGUE",
+    "status": "planned"
+  },
+  {
+    "name": "RT0.PRA.CZ_IAS",
+    "pop": "PRAGUE",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.PRA.CZ_GEANT_GLOBAL",
+    "pop": "PRAGUE",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.PRA.CZ",
+    "pop": "PRAGUE",
+    "status": "operational"
+  },
+  {
+    "name": "ZAN-ECP-MTC9-1",
+    "pop": "ZAN-ECP",
+    "status": "operational"
+  },
+  {
+    "name": "LEI-EAS-MTC9-1",
+    "pop": "LEI-EAS",
+    "status": "operational"
+  },
+  {
+    "name": "WHE-PAR-MTC9-1",
+    "pop": "WHE-PAR",
+    "status": "operational"
+  },
+  {
+    "name": "WIF-MOR-MTC9-1",
+    "pop": "WIF-MOR",
+    "status": "operational"
+  },
+  {
+    "name": "RES-RDS-MTC9-1",
+    "pop": "RES-RDS",
+    "status": "operational"
+  },
+  {
+    "name": "ESS-ROC-MTC9-1",
+    "pop": "ESS-ROC",
+    "status": "operational"
+  },
+  {
+    "name": "DUS-ELL-MTC9-1",
+    "pop": "DUS-ELL",
+    "status": "operational"
+  },
+  {
+    "name": "CGN-MAX-MTC9-1",
+    "pop": "CGN-MAX",
+    "status": "operational"
+  },
+  {
+    "name": "BNJ-BRU-MTC9-1",
+    "pop": "BNJ-BRU",
+    "status": "operational"
+  },
+  {
+    "name": "PLT-KOB-MTC9-1",
+    "pop": "PLT-KOB",
+    "status": "operational"
+  },
+  {
+    "name": "KTZ-HOH-MTC9-1",
+    "pop": "KTZ-HOH",
+    "status": "operational"
+  },
+  {
+    "name": "UTC-STE-MTC9-1",
+    "pop": "UTC-STE",
+    "status": "operational"
+  },
+  {
+    "name": "DEE-ARG-MTC9-1",
+    "pop": "DEE-ARG",
+    "status": "operational"
+  },
+  {
+    "name": "FRA-SCH-MTC9-1",
+    "pop": "FRA-SCH",
+    "status": "operational"
+  },
+  {
+    "name": "WRT-LON-MTC9-1",
+    "pop": "WRT-LON",
+    "status": "operational"
+  },
+  {
+    "name": "PSN-STO-MTC9-1",
+    "pop": "PSN-STO",
+    "status": "operational"
+  },
+  {
+    "name": "CQF-GRE-MTC9-1",
+    "pop": "CQF-GRE",
+    "status": "operational"
+  },
+  {
+    "name": "WTS-HAL-MTC9-1",
+    "pop": "WTS-HAL",
+    "status": "operational"
+  },
+  {
+    "name": "WIV-WIV-MTC9-1",
+    "pop": "WIV-WIV",
+    "status": "operational"
+  },
+  {
+    "name": "ETC-JAC-MTC9-1",
+    "pop": "ETC-JAC",
+    "status": "operational"
+  },
+  {
+    "name": "VCS-VCS-MTC9-1",
+    "pop": "VCS-VCS",
+    "status": "operational"
+  },
+  {
+    "name": "NGT-SOM-MTC9-1",
+    "pop": "NGT-SOM",
+    "status": "operational"
+  },
+  {
+    "name": "HAM01-GRV1",
+    "pop": "HAMBURG (SÜDERSTRASSE)",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.HAM.DE_SNM_SWITCH_MGMT",
+    "pop": "HAMBURG (SÜDERSTRASSE)",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.HAM.DE_LHCONE_L3VPN",
+    "pop": "HAMBURG (SÜDERSTRASSE)",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.HAM.DE_SNM_IDRAC_MGMT",
+    "pop": "HAMBURG (SÜDERSTRASSE)",
+    "status": "operational"
+  },
+  {
+    "name": "HAM01-GRV3",
+    "pop": "HAMBURG (SÜDERSTRASSE)",
+    "status": "operational"
+  },
+  {
+    "name": "HAM01-GRV2",
+    "pop": "HAMBURG (SÜDERSTRASSE)",
+    "status": "operational"
+  },
+  {
+    "name": "HAM01-MTC6-1",
+    "pop": "HAMBURG (SÜDERSTRASSE)",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.HAM.DE_GEANT_GLOBAL",
+    "pop": "HAMBURG (SÜDERSTRASSE)",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.HAM.DE_IAS",
+    "pop": "HAMBURG (SÜDERSTRASSE)",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.HAM.DE",
+    "pop": "HAMBURG (SÜDERSTRASSE)",
+    "status": "operational"
+  },
+  {
+    "name": "DTN1.HAM",
+    "pop": "HAMBURG (SÜDERSTRASSE)",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.HAM.DE_SNM_OPTICAL_MGMT",
+    "pop": "HAMBURG (SÜDERSTRASSE)",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.HAM1.DE_ROUTER_FABRIC",
+    "pop": "HAMBURG (SÜDERSTRASSE)",
+    "status": "operational"
+  },
+  {
+    "name": "TS2.HAM.DE.GEANT.NET(OPENGEAR)",
+    "pop": "HAMBURG (SÜDERSTRASSE)",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.HAM1.DE",
+    "pop": "HAMBURG (SÜDERSTRASSE)",
+    "status": "operational"
+  },
+  {
+    "name": "HAM NORDUNET SPECTRUM 2 (FACING COP)",
+    "pop": "HAMBURG (WENDENSTRASSE)",
+    "status": "operational"
+  },
+  {
+    "name": "HAM NORDUNET SPECTRUM 1 (FACING COP)",
+    "pop": "HAMBURG (WENDENSTRASSE)",
+    "status": "operational"
+  },
+  {
+    "name": "HAM SURF SPECTRUM 1 (FACING AMS)",
+    "pop": "HAMBURG (WENDENSTRASSE)",
+    "status": "operational"
+  },
+  {
+    "name": "PSNC-HAM-SPECTRUM EQUPIMENT",
+    "pop": "HAMBURG (WENDENSTRASSE)",
+    "status": "operational"
+  },
+  {
+    "name": "MNTCFRAA-MTC9-1",
+    "pop": "MNTCFRAA",
+    "status": "operational"
+  },
+  {
+    "name": "SPSLFRAA-MTC9-1",
+    "pop": "SPSLFRAA",
+    "status": "operational"
+  },
+  {
+    "name": "BYSLFRAA-MTC9-1",
+    "pop": "BYSLFRAA",
+    "status": "operational"
+  },
+  {
+    "name": "JSIAFRAA-MTC9-1",
+    "pop": "JSIAFRAA",
+    "status": "operational"
+  },
+  {
+    "name": "SMDLFRAB-MTC9-1",
+    "pop": "SMDLFRAB",
+    "status": "operational"
+  },
+  {
+    "name": "VNLCFRAA-MTC9-1",
+    "pop": "VNLCFRAA",
+    "status": "operational"
+  },
+  {
+    "name": "MTSSFRAA-MTC9-1",
+    "pop": "MTSSFRAA",
+    "status": "operational"
+  },
+  {
+    "name": "LYONFRCI-MTC6-1",
+    "pop": "LYONFRCI",
+    "status": "operational"
+  },
+  {
+    "name": "SLBRFRAC-MTC9-1",
+    "pop": "SLBRFRAC",
+    "status": "operational"
+  },
+  {
+    "name": "LVURFRAA-MTC9-1",
+    "pop": "LVURFRAA",
+    "status": "operational"
+  },
+  {
+    "name": "GYR-613-MTC9-1",
+    "pop": "GYR-613",
+    "status": "operational"
+  },
+  {
+    "name": "TBY-1694-MTC9-1",
+    "pop": "TBY-1694",
+    "status": "operational"
+  },
+  {
+    "name": "PTJ-001-MTC9-1",
+    "pop": "PTJ-001",
+    "status": "operational"
+  },
+  {
+    "name": "NGA-001-MTC9-1",
+    "pop": "NGA-001",
+    "status": "operational"
+  },
+  {
+    "name": "GER-MTC9-1",
+    "pop": "GER",
+    "status": "operational"
+  },
+  {
+    "name": "ROL-MTC9-1",
+    "pop": "ROL",
+    "status": "operational"
+  },
+  {
+    "name": "KLM-MTC9-1",
+    "pop": "KLM",
+    "status": "operational"
+  },
+  {
+    "name": "NBG-MTC9-1",
+    "pop": "NBG",
+    "status": "operational"
+  },
+  {
+    "name": "ESC-MTC9-1",
+    "pop": "ESC",
+    "status": "operational"
+  },
+  {
+    "name": "BOR-MTC9-1",
+    "pop": "BOR",
+    "status": "operational"
+  },
+  {
+    "name": "MLA-MTC9-1",
+    "pop": "MLA",
+    "status": "operational"
+  },
+  {
+    "name": "HOS-MTC9-1",
+    "pop": "HOS",
+    "status": "operational"
+  },
+  {
+    "name": "ORANGE Z-END",
+    "pop": "ORANGE BUSINESS SYSTEMS NL",
+    "status": "operational"
+  },
+  {
+    "name": "VRNGFRAB-MTC9-1",
+    "pop": "VRNGFRAB",
+    "status": "operational"
+  },
+  {
+    "name": "CDRSFRAB-MTC9-1",
+    "pop": "CDRSFRAB",
+    "status": "operational"
+  },
+  {
+    "name": "SLSRFRAA-MTC9-1",
+    "pop": "SLSRFRAA",
+    "status": "operational"
+  },
+  {
+    "name": "ADNCFRAA-MTC9-1",
+    "pop": "ADNCFRAA",
+    "status": "operational"
+  },
+  {
+    "name": "LYONFRAE-MTC9-1",
+    "pop": "LYONFRAE",
+    "status": "operational"
+  },
+  {
+    "name": "GRNBFRAI-MTC6-1",
+    "pop": "GRNBFRAI",
+    "status": "operational"
+  },
+  {
+    "name": "LMSRFR01-MTC9-1",
+    "pop": "LMSRFR01",
+    "status": "operational"
+  },
+  {
+    "name": "ARNYFR01-MTC9-1",
+    "pop": "ARNYFR01",
+    "status": "operational"
+  },
+  {
+    "name": "ZUH-WIE-MTC9-1",
+    "pop": "ZUH-WIE",
+    "status": "operational"
+  },
+  {
+    "name": "GAR-MUE-MTC9-1",
+    "pop": "GAR-MUE",
+    "status": "operational"
+  },
+  {
+    "name": "FRI-HAU-MTC9-1",
+    "pop": "FRI-HAU",
+    "status": "operational"
+  },
+  {
+    "name": "VEL-001-MTC9-1",
+    "pop": "VEL-001",
+    "status": "operational"
+  },
+  {
+    "name": "BIK-001-MTC9-1",
+    "pop": "BIK-001",
+    "status": "operational"
+  },
+  {
+    "name": "LOW-001-MTC9-1",
+    "pop": "LOW-001",
+    "status": "operational"
+  },
+  {
+    "name": "WIZ-001-MTC9-1",
+    "pop": "WIZ-001",
+    "status": "operational"
+  },
+  {
+    "name": "SI-NM-MTC9-1",
+    "pop": "SI-NM",
+    "status": "operational"
+  },
+  {
+    "name": "SCION1ILO.FRA.DE",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "SCION2ILO.FRA.DE",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "FRA01-MTC6-1",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "AMT1.FRA.DE",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "INFOBLOX.FRA15.DE",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.FRA.DE_ROUTER_FABRIC",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.FRA.DE_MDVPN",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.FRA.DE_COPERNICUS",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "AMT1.FRA.DE_ROUTER_FABRIC",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.FRA.DE_IAS",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.FRA.DE_CORIANT-MGMT",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.FRA.DE_LHCONE-L3VPN",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.FRA.DE_CLEAN_IAS",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "PSMP-UAT-DRAC-FRA-DE.GEANT.ORG",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.FRA.DE",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "MT01-FRA.NEMO",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "MT-STAGE01-FRA.NEMO",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.FRA.DE_TAAS-CONTROL",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.FRA.DE_SUPERPOP",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.FRA.DE_SCION_L3VPN",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "FLOWMON-DDOS-FRA(OLD)",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.FRA.DE_SERVER-MGMT",
+    "pop": "FRANKFURT",
+    "status": "planned"
+  },
+  {
+    "name": "RT0.FRA.DE_SNM_SWITCH_MGMT",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "IDRAC-FRA-PRD-ESX02.WIN.DANTE.ORG.UK",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "IDRAC-FRA-PRD-ESX04.WIN.DANTE.ORG.UK",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "IDRAC-FRA-PRD-ESX05.WIN.DANTE.ORG.UK",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "R730XD-SPLUNK.FRA.DE.GEANT.NET",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.FRA.DE_SUPERPOP-PS-LATENCY",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.FRA.DE_SUPERPOP-NAGIOS-TAAS",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.FRA.DE_SUPERPOP-IMS-TAAS",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "QFX.FRA.DE",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.FRA.DE",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.FRA.DE-CHASSIS-2",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "IDRAC-FRA-PRD-ESX03.WIN.DANTE.ORG.UK",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.FRA.DE_MGMT-L3VPN",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.FRA.DE_SUPERPOP-PS-THROUGHPUT",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.FRA.DE_SUPERPOP-RANCID-TAAS",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.FRA.DE_SUPERPOP-CORIANT-MGMT",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.FRA.DE_SCION_INTERNAL",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.FRA.DE_RARE_P4_MGMT",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.FRA.DE_SCION",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.FRA.DE_IAS",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.FRA.DE_GEANT_GLOBAL",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "FRA01-GRV5",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.FRA.DE_SWITCH-MGMT",
+    "pop": "FRANKFURT",
+    "status": "planned"
+  },
+  {
+    "name": "RT1.FRA.DE_TOOLS-ACCESS",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "CAREN MX104 ROUTER",
+    "pop": "FRANKFURT",
+    "status": "installed"
+  },
+  {
+    "name": "A10-DDOS.FRA.THUNDER-5845",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "FRA EXA SPECTRUM 1 (FACING LUX)",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "QFX.FRA.DE_ROUTER_FABRIC",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "CHINA MOBILE Z-END",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "SW3.FRA.DE",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "SW3.FRA.DE_ROUTER_FABRIC",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "FRA01-GRV1",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "FRA01-GRV2",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "FRA01-GRV4",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "TS1-NEW.FRA.DE.GEANT.NET(OPENGEAR)",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "(TNMS) NE-ESXI-PROD-FRA-1.GEANT.NET",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "PF1-RARE.FRA.DE.GEANT.NET",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "PSMP-LHC-DRAC-FRA-DE.GEANT.ORG",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "FRA01-GRV3",
+    "pop": "FRANKFURT",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.TAR.EE_IAS",
+    "pop": "TARTU",
+    "status": "operational"
+  },
+  {
+    "name": "TAR EENET SPECTRUM 1 (FACING HEL)",
+    "pop": "TARTU",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.TAR.EE_GEANT_GLOBAL",
+    "pop": "TARTU",
+    "status": "operational"
+  },
+  {
+    "name": "TAR BITE SPECTRUM 1 (FACING RIG)",
+    "pop": "TARTU",
+    "status": "operational"
+  },
+  {
+    "name": "TAR01-GRV3",
+    "pop": "TARTU",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.TAR.EE_SNM_SWITCH_MGMT",
+    "pop": "TARTU",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.TAR.EE",
+    "pop": "TARTU",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.TAR.EE",
+    "pop": "TARTU",
+    "status": "operational"
+  },
+  {
+    "name": "TAR01-GRV2",
+    "pop": "TARTU",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.TAR.EE.GEANT.NET(OPENGEAR)",
+    "pop": "TARTU",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.TAR.EE_SNM_OPTICAL_MGMT",
+    "pop": "TARTU",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.TAR.EE_ROUTER_FABRIC",
+    "pop": "TARTU",
+    "status": "operational"
+  },
+  {
+    "name": "TAR01-GRV1",
+    "pop": "TARTU",
+    "status": "operational"
+  },
+  {
+    "name": "TAR01-MTC6-1",
+    "pop": "TARTU",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.TAR.EE_LHCONE_L3VPN",
+    "pop": "TARTU",
+    "status": "operational"
+  },
+  {
+    "name": "EENET MELLANOX MSN2010-CB2R  - SWITCH",
+    "pop": "TARTU",
+    "status": "operational"
+  },
+  {
+    "name": "PSZ-MTC9-1",
+    "pop": "PSZ",
+    "status": "operational"
+  },
+  {
+    "name": "RTS-MTC9-1",
+    "pop": "RTS",
+    "status": "operational"
+  },
+  {
+    "name": "DBV-MTC9-1",
+    "pop": "DBV",
+    "status": "operational"
+  },
+  {
+    "name": "CSU-MTC9-1",
+    "pop": "CSU",
+    "status": "operational"
+  },
+  {
+    "name": "VRZ-MTC9-1",
+    "pop": "VRZ",
+    "status": "operational"
+  },
+  {
+    "name": "KMI-MTC9-1",
+    "pop": "KMI",
+    "status": "operational"
+  },
+  {
+    "name": "SOF01-MTC6-1",
+    "pop": "SOFIA SO2 (EQUINIX)",
+    "status": "operational"
+  },
+  {
+    "name": "SOF01-GRV2",
+    "pop": "SOFIA SO2 (EQUINIX)",
+    "status": "operational"
+  },
+  {
+    "name": "TS2.SOF.BG.GEANT.NET(OPENGEAR)",
+    "pop": "SOFIA SO2 (EQUINIX)",
+    "status": "operational"
+  },
+  {
+    "name": "SOF01-GRV3",
+    "pop": "SOFIA SO2 (EQUINIX)",
+    "status": "operational"
+  },
+  {
+    "name": "SOF01-GRV1",
+    "pop": "SOFIA SO2 (EQUINIX)",
+    "status": "operational"
+  },
+  {
+    "name": "SW2.SOF.BG_ROUTER_FABRIC",
+    "pop": "SOFIA SO2 (EQUINIX)",
+    "status": "operational"
+  },
+  {
+    "name": "SW2.SOF.BG",
+    "pop": "SOFIA SO2 (EQUINIX)",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.SOF.BG_SNM_OPTICAL_MGMT",
+    "pop": "SOFIA SO2 (EQUINIX)",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.SOF.BG_SNM_SWITCH_MGMT",
+    "pop": "SOFIA SO2 (EQUINIX)",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.SOF.BG_LHCONE_L3VPN",
+    "pop": "SOFIA SO2 (EQUINIX)",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.SOF.BG_IAS",
+    "pop": "SOFIA SO2 (EQUINIX)",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.SOF.BG",
+    "pop": "SOFIA SO2 (EQUINIX)",
+    "status": "operational"
+  },
+  {
+    "name": "SOF01-GRV4",
+    "pop": "SOFIA SO2 (EQUINIX)",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.SOF.BG_GEANT_GLOBAL",
+    "pop": "SOFIA SO2 (EQUINIX)",
+    "status": "operational"
+  },
+  {
+    "name": "LJU01-GRV1",
+    "pop": "LJUBLJANA 1",
+    "status": "operational"
+  },
+  {
+    "name": "LJU01-MTC6-1",
+    "pop": "LJUBLJANA 1",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.LJU.SI",
+    "pop": "LJUBLJANA 1",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.LJU.SI_ROUTER_FABRIC",
+    "pop": "LJUBLJANA 1",
+    "status": "operational"
+  },
+  {
+    "name": "TS2.LJU.SI.GEANT.NET(OPENGEAR)",
+    "pop": "LJUBLJANA 1",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.LJU.SI_IAS",
+    "pop": "LJUBLJANA 1",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.LJU.SI_LHCONE_L3VPN",
+    "pop": "LJUBLJANA 1",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.LJU.SI",
+    "pop": "LJUBLJANA 1",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.LJU.SI_GEANT_GLOBAL",
+    "pop": "LJUBLJANA 1",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.LJU.SI_SNM_OPTICAL_MGMT",
+    "pop": "LJUBLJANA 1",
+    "status": "operational"
+  },
+  {
+    "name": "LJU01-GRV2",
+    "pop": "LJUBLJANA 1",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.LJU.SI_SNM_SWITCH_MGMT",
+    "pop": "LJUBLJANA 1",
+    "status": "operational"
+  },
+  {
+    "name": "ZAG02-MTC6-1",
+    "pop": "ZAGREB 2",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.ZAG2.HR.GEANT.NET(OPENGEAR)",
+    "pop": "ZAGREB 2",
+    "status": "operational"
+  },
+  {
+    "name": "ZAG02-GRV1",
+    "pop": "ZAGREB 2",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.POZ.PL_ROUTER_FABRIC",
+    "pop": "POZNAN 1",
+    "status": "operational"
+  },
+  {
+    "name": "PSNC-POZ-SPECTRUM EQUPIMENT",
+    "pop": "POZNAN 1",
+    "status": "operational"
+  },
+  {
+    "name": "POZ01-GRV6",
+    "pop": "POZNAN 1",
+    "status": "operational"
+  },
+  {
+    "name": "POZ01-GRV4",
+    "pop": "POZNAN 1",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.POZ1.PL.GEANT.NET(OPENGEAR)",
+    "pop": "POZNAN 1",
+    "status": "operational"
+  },
+  {
+    "name": "POZ01-MTC6-1",
+    "pop": "POZNAN 1",
+    "status": "operational"
+  },
+  {
+    "name": "POZ01-GRV3",
+    "pop": "POZNAN 1",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.POZ.PL",
+    "pop": "POZNAN 1",
+    "status": "operational"
+  },
+  {
+    "name": "POZ01-GRV2",
+    "pop": "POZNAN 1",
+    "status": "operational"
+  },
+  {
+    "name": "PF1-RARE.POZ.PL.GEANT.NET",
+    "pop": "POZNAN 1",
+    "status": "operational"
+  },
+  {
+    "name": "PSMP-GN-DRAC-POZ-PL.GEANT.ORG",
+    "pop": "POZNAN 1",
+    "status": "operational"
+  },
+  {
+    "name": "POZ01-GRV1",
+    "pop": "POZNAN 1",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.POZ.PL_CORIANT-MGMT",
+    "pop": "POZNAN 1",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.POZ.PL_ROUTER_FABRIC",
+    "pop": "POZNAN 1",
+    "status": "operational"
+  },
+  {
+    "name": "POZ01-GRV5",
+    "pop": "POZNAN 1",
+    "status": "operational"
+  },
+  {
+    "name": "EUMETSAT SERVER POZNAN",
+    "pop": "POZNAN 1",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.POZ.PL_IAS",
+    "pop": "POZNAN 1",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.POZ.PL_MDVPN",
+    "pop": "POZNAN 1",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.POZ.PL_RARE_P4_MGMT",
+    "pop": "POZNAN 1",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.POZ.PL_GEANT_GLOBAL",
+    "pop": "POZNAN 1",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.POZ.PL_IAS",
+    "pop": "POZNAN 1",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.POZ.PL",
+    "pop": "POZNAN 1",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.POZ.PL_LHCONE-L3VPN",
+    "pop": "POZNAN 1",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.POZ.PL_SNM_SWITCH_MGMT",
+    "pop": "POZNAN 1",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.POZ.PL",
+    "pop": "POZNAN 1",
+    "status": "operational"
+  },
+  {
+    "name": "MX1.POZ.PL_SWITCH-MGMT",
+    "pop": "POZNAN 1",
+    "status": "planned"
+  },
+  {
+    "name": "RT1.BUC.RO_ROUTER_FABRIC",
+    "pop": "BUCHAREST 2",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.BUC.RO",
+    "pop": "BUCHAREST 2",
+    "status": "operational"
+  },
+  {
+    "name": "ROEDUNET - CSR ROUTER",
+    "pop": "BUCHAREST 2",
+    "status": "operational"
+  },
+  {
+    "name": "BUC01-GRV4",
+    "pop": "BUCHAREST 2",
+    "status": "operational"
+  },
+  {
+    "name": "BUC PRIME SPECTRUM 1 (FACING CHI)",
+    "pop": "BUCHAREST 2",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.BUC.RO_LHCONE_L3VPN",
+    "pop": "BUCHAREST 2",
+    "status": "operational"
+  },
+  {
+    "name": "BUC01-MTC6-1",
+    "pop": "BUCHAREST 2",
+    "status": "operational"
+  },
+  {
+    "name": "TS2.BUC.RO.GEANT.NET(OPENGEAR)",
+    "pop": "BUCHAREST 2",
+    "status": "operational"
+  },
+  {
+    "name": "SW2.BUC.RO_ROUTER_FABRIC",
+    "pop": "BUCHAREST 2",
+    "status": "operational"
+  },
+  {
+    "name": "SW2.BUC.RO",
+    "pop": "BUCHAREST 2",
+    "status": "operational"
+  },
+  {
+    "name": "BUC01-GRV2",
+    "pop": "BUCHAREST 2",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.BUC.RO_CORIANT-MGMT",
+    "pop": "BUCHAREST 2",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.BUC.RO",
+    "pop": "BUCHAREST 2",
+    "status": "operational"
+  },
+  {
+    "name": "BUC PRIME TELECOM SPECTRUM 1 (FACING BUD)",
+    "pop": "BUCHAREST 2",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.BUC.RO_GEANT_GLOBAL",
+    "pop": "BUCHAREST 2",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.BUC.RO_IAS",
+    "pop": "BUCHAREST 2",
+    "status": "operational"
+  },
+  {
+    "name": "RT1.BUC.RO_SWITCH-MGMT",
+    "pop": "BUCHAREST 2",
+    "status": "operational"
+  },
+  {
+    "name": "BUC01-GRV3",
+    "pop": "BUCHAREST 2",
+    "status": "operational"
+  },
+  {
+    "name": "BUC01-GRV1",
+    "pop": "BUCHAREST 2",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.BUC.RO_SNM_SWITCH_MGMT",
+    "pop": "BUCHAREST 2",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.BUC.RO_IAS",
+    "pop": "BUCHAREST 2",
+    "status": "operational"
+  },
+  {
+    "name": "BG-PK-MTC9-1",
+    "pop": "BG-PK",
+    "status": "operational"
+  },
+  {
+    "name": "BG-KD-MTC9-1",
+    "pop": "BG-KD",
+    "status": "operational"
+  },
+  {
+    "name": "BG-BLG-MTC9-1",
+    "pop": "BG-BLG",
+    "status": "operational"
+  },
+  {
+    "name": "BG-SD-MTC9-1",
+    "pop": "BG-SD",
+    "status": "operational"
+  },
+  {
+    "name": "GR-PTR-MTC9-1",
+    "pop": "GR-PTR",
+    "status": "operational"
+  },
+  {
+    "name": "GR-EFK-MTC9-1",
+    "pop": "GR-EFK",
+    "status": "operational"
+  },
+  {
+    "name": "SR-MP-MTC9-1",
+    "pop": "SR-MP",
+    "status": "operational"
+  },
+  {
+    "name": "SR-BN-MTC9-1",
+    "pop": "SR-BN",
+    "status": "operational"
+  },
+  {
+    "name": "SR-RA-MTC9-1",
+    "pop": "SR-RA",
+    "status": "operational"
+  },
+  {
+    "name": "SR-NI-MTC9-1",
+    "pop": "SR-NI",
+    "status": "operational"
+  },
+  {
+    "name": "SR-DG-MTC9-1",
+    "pop": "SR-DG",
+    "status": "operational"
+  },
+  {
+    "name": "MICROSOFT A-END",
+    "pop": "AMS8 INTERXION",
+    "status": "operational"
+  },
+  {
+    "name": "SR-NS-AT-MTC9-1",
+    "pop": "SR-NS-AT",
+    "status": "operational"
+  },
+  {
+    "name": "HR-IL-MTC9-1",
+    "pop": "HR-IL",
+    "status": "operational"
+  },
+  {
+    "name": "HR-VI-MTC9-1",
+    "pop": "HR-VI",
+    "status": "operational"
+  },
+  {
+    "name": "HR-SB-MTC9-1",
+    "pop": "HR-SB",
+    "status": "operational"
+  },
+  {
+    "name": "HR-DU-MTC9-1",
+    "pop": "HR-DU",
+    "status": "operational"
+  },
+  {
+    "name": "HR-SI-MTC9-1",
+    "pop": "HR-SI",
+    "status": "operational"
+  },
+  {
+    "name": "BEL01-GRV1",
+    "pop": "BELGRADE",
+    "status": "operational"
+  },
+  {
+    "name": "BEL01-GRV2",
+    "pop": "BELGRADE",
+    "status": "operational"
+  },
+  {
+    "name": "BEL01-MTC6-1",
+    "pop": "BELGRADE",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.BEL.RS.GEANT.NET(OPENGEAR)",
+    "pop": "BELGRADE",
+    "status": "operational"
+  },
+  {
+    "name": "BG-RS-MTC9-1",
+    "pop": "BG-RS",
+    "status": "operational"
+  },
+  {
+    "name": "BG-BYL-MTC9-1",
+    "pop": "BG-BYL",
+    "status": "operational"
+  },
+  {
+    "name": "BG-SV-MTC9-1",
+    "pop": "BG-SV",
+    "status": "operational"
+  },
+  {
+    "name": "BG-PL-MTC9-1",
+    "pop": "BG-PL",
+    "status": "operational"
+  },
+  {
+    "name": "BG-BS-MTC9-1",
+    "pop": "BG-BS",
+    "status": "operational"
+  },
+  {
+    "name": "BG-MO-MTC9-1",
+    "pop": "BG-MO",
+    "status": "operational"
+  },
+  {
+    "name": "BG-BP-MTC9-1",
+    "pop": "BG-BP",
+    "status": "operational"
+  },
+  {
+    "name": "UTIC Z-END",
+    "pop": "UTIC POP BOSNIA",
+    "status": "operational"
+  },
+  {
+    "name": "PARSFRDZ-MTC9-1",
+    "pop": "PARSFRDZ",
+    "status": "operational"
+  },
+  {
+    "name": "MRGGFRAA-MTC9-1",
+    "pop": "MRGGFRAA",
+    "status": "operational"
+  },
+  {
+    "name": "TRSCFRAC-MTC9-1",
+    "pop": "TRSCFRAC",
+    "status": "operational"
+  },
+  {
+    "name": "NZRTBGAC-MTC9-1",
+    "pop": "NZRTBGAC",
+    "status": "operational"
+  },
+  {
+    "name": "LILLFRAL-MTC9-1",
+    "pop": "LILLFRAL",
+    "status": "operational"
+  },
+  {
+    "name": "COP01-GRV2",
+    "pop": "COPENHAGEN",
+    "status": "operational"
+  },
+  {
+    "name": "COP NORDUNET SPECTRUM 1 (FACING HAM)",
+    "pop": "COPENHAGEN",
+    "status": "operational"
+  },
+  {
+    "name": "COP NORDUNET SPECTRUM 2 (FACING HAM)",
+    "pop": "COPENHAGEN",
+    "status": "operational"
+  },
+  {
+    "name": "COP01-GRV1",
+    "pop": "COPENHAGEN",
+    "status": "operational"
+  },
+  {
+    "name": "COP01-MTC6-1",
+    "pop": "COPENHAGEN",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.COP.DK.GEANT.NET(OPENGEAR)",
+    "pop": "COPENHAGEN",
+    "status": "operational"
+  },
+  {
+    "name": "COP NORDUNET SPECTRUM 1 (FACING HEL)",
+    "pop": "COPENHAGEN",
+    "status": "operational"
+  },
+  {
+    "name": "HEL EENET SPECTRUM 1 (FACING TAR)",
+    "pop": "HELSINKI",
+    "status": "operational"
+  },
+  {
+    "name": "HEL01-GRV1",
+    "pop": "HELSINKI",
+    "status": "operational"
+  },
+  {
+    "name": "HEL01-MTC6-1",
+    "pop": "HELSINKI",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.HEL.FI.GEANT.NET(OPENGEAR)",
+    "pop": "HELSINKI",
+    "status": "operational"
+  },
+  {
+    "name": "HEL NORDUNET SPECTRUM 1 (FACING COP)",
+    "pop": "HELSINKI",
+    "status": "operational"
+  },
+  {
+    "name": "HEL01-GRV2",
+    "pop": "HELSINKI",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.COR.IE_GEANT_GLOBAL",
+    "pop": "CORK",
+    "status": "operational"
+  },
+  {
+    "name": "COR HEANET SPECTRUM 1 (FACING DUB)",
+    "pop": "CORK",
+    "status": "operational"
+  },
+  {
+    "name": "COR01-GRV1",
+    "pop": "CORK",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.COR.IE",
+    "pop": "CORK",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.COR.IE",
+    "pop": "CORK",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.COR.IE_ROUTER_FABRIC",
+    "pop": "CORK",
+    "status": "operational"
+  },
+  {
+    "name": "COR01-GRV2",
+    "pop": "CORK",
+    "status": "operational"
+  },
+  {
+    "name": "COR EXA SPECTRUM 1 (FACING LON 2)",
+    "pop": "CORK",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.COR.IE_IAS",
+    "pop": "CORK",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.COR.IE_SNM_SWITCH_MGMT",
+    "pop": "CORK",
+    "status": "operational"
+  },
+  {
+    "name": "COR01-MTC6-1",
+    "pop": "CORK",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.COR.IE.GEANT.NET(OPENGEAR)",
+    "pop": "CORK",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.COR.IE_SNM_OPTICAL_MGMT",
+    "pop": "CORK",
+    "status": "operational"
+  },
+  {
+    "name": "SIN01-MTC6-1",
+    "pop": "SINES",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.SIN.PT.GEANT.NET(OPENGEAR)",
+    "pop": "SINES",
+    "status": "operational"
+  },
+  {
+    "name": "SIN01-GRV1",
+    "pop": "SINES",
+    "status": "operational"
+  },
+  {
+    "name": "FCCN-SIN-SPECTRUM EQUIPMENT",
+    "pop": "SINES",
+    "status": "operational"
+  },
+  {
+    "name": "BOD01-GRV1",
+    "pop": "BORDEAUX (BX1)",
+    "status": "operational"
+  },
+  {
+    "name": "BOD01-MTC6-1",
+    "pop": "BORDEAUX (BX1)",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.BOD.FR.GEANT.NET(OPENGEAR)",
+    "pop": "BORDEAUX (BX1)",
+    "status": "operational"
+  },
+  {
+    "name": "BOD01-GRV2",
+    "pop": "BORDEAUX (BX1)",
+    "status": "operational"
+  },
+  {
+    "name": "KOLNZS-MTC9-1",
+    "pop": "KOLNZS",
+    "status": "operational"
+  },
+  {
+    "name": "HRKRHN-MTC9-1",
+    "pop": "HRKRHN",
+    "status": "operational"
+  },
+  {
+    "name": "LETOHR-MTC9-1",
+    "pop": "LETOHR",
+    "status": "operational"
+  },
+  {
+    "name": "HP012-MTC9-1",
+    "pop": "HP012",
+    "status": "operational"
+  },
+  {
+    "name": "HP013-MTC9-1",
+    "pop": "HP013",
+    "status": "operational"
+  },
+  {
+    "name": "HP014-MTC9-1",
+    "pop": "HP014",
+    "status": "operational"
+  },
+  {
+    "name": "HD001-MTC9-1",
+    "pop": "HD001",
+    "status": "operational"
+  },
+  {
+    "name": "HD034-MTC9-1",
+    "pop": "HD034",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.THE.GR_IAS",
+    "pop": "THESSALONIKI",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.THE.GR_GEANT_GLOBAL",
+    "pop": "THESSALONIKI",
+    "status": "operational"
+  },
+  {
+    "name": "THE01-GRV1",
+    "pop": "THESSALONIKI",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.THE.GR_ROUTER_FABRIC",
+    "pop": "THESSALONIKI",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.THE.GR.GEANT.NET(OPENGEAR)",
+    "pop": "THESSALONIKI",
+    "status": "operational"
+  },
+  {
+    "name": "THE01-MTC6-1",
+    "pop": "THESSALONIKI",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.THE.GR",
+    "pop": "THESSALONIKI",
+    "status": "operational"
+  },
+  {
+    "name": "SW1.THE.GR",
+    "pop": "THESSALONIKI",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.THE.GR_SNM_SWITCH_MGMT",
+    "pop": "THESSALONIKI",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.THE.GR_LHCONE_L3VPN",
+    "pop": "THESSALONIKI",
+    "status": "operational"
+  },
+  {
+    "name": "RT0.THE.GR_SNM_OPTICAL_MGMT",
+    "pop": "THESSALONIKI",
+    "status": "operational"
+  },
+  {
+    "name": "LOU01-MTC6-1",
+    "pop": "LOUROS",
+    "status": "operational"
+  },
+  {
+    "name": "LOU01-GRV1",
+    "pop": "LOUROS",
+    "status": "operational"
+  },
+  {
+    "name": "TS1.LOU.GR.GEANT.NET(OPENGEAR)",
+    "pop": "LOUROS",
+    "status": "operational"
+  },
+  {
+    "name": "ESNET BOSTON",
+    "pop": "INTERNET2 BOSTON",
+    "status": "operational"
+  },
+  {
+    "name": "ESNET Z-END",
+    "pop": "INTERNET2 BOSTON",
+    "status": "operational"
+  },
+  {
+    "name": "ISLALINK A-END",
+    "pop": "CROTONE",
+    "status": "operational"
+  },
+  {
+    "name": "CRO01-GRV2",
+    "pop": "CROTONE",
+    "status": "operational"
+  },
+  {
+    "name": "CRO-MPB-SRP-30",
+    "pop": "CROTONE",
+    "status": "operational"
+  },
+  {
+    "name": "CRO-MPB-SRP-26F-N",
+    "pop": "CROTONE",
+    "status": "operational"
+  },
+  {
+    "name": "CRO01-GRV1",
+    "pop": "CROTONE",
+    "status": "operational"
+  },
+  {
+    "name": "CRO ISLALINK SPECTRUM 1 (FACING MIL2)",
+    "pop": "CROTONE",
+    "status": "operational"
+  },
+  {
+    "name": "CRO01-MTC9-1",
+    "pop": "CROTONE",
+    "status": "operational"
+  },
+  {
+    "name": "CROTONE.INVERTOR.01",
+    "pop": "CROTONE",
+    "status": "operational"
+  },
+  {
+    "name": "GARR-MIL1-SPECTRUM EQUIPMENT",
+    "pop": "GARR MILAN LANCETTI",
+    "status": "operational"
+  },
+  {
+    "name": "PRE-MPB-SRP-30",
+    "pop": "PREVEZA",
+    "status": "operational"
+  },
+  {
+    "name": "PRE-MPB-SRP-26F-N",
+    "pop": "PREVEZA",
+    "status": "operational"
+  },
+  {
+    "name": "PREVEZA.INVERTOR.01",
+    "pop": "PREVEZA",
+    "status": "operational"
+  },
+  {
+    "name": "PRE01-MTC9-1-1",
+    "pop": "PREVEZA",
+    "status": "operational"
+  },
+  {
+    "name": "EQUINIX LD8 ESNET EQUIPMENT",
+    "pop": "EQUINIX LONDON",
+    "status": "operational"
+  },
+  {
+    "name": "ALC-MTC9-1",
+    "pop": "65AL01",
+    "status": "operational"
+  },
+  {
+    "name": "UNKNOWN",
+    "pop": "UNKNOWN",
+    "status": "unknown"
+  }
+]
diff --git a/test/data/inprov-pops.json b/test/data/inprov-pops.json
new file mode 100644
index 0000000000000000000000000000000000000000..64e152c8de087fb62e2d20c915194f3790cd4972
--- /dev/null
+++ b/test/data/inprov-pops.json
@@ -0,0 +1,2730 @@
+[
+  {
+    "abbreviation": "",
+    "city": "FRANKFURT",
+    "country": "GERMANY",
+    "latitude": null,
+    "longitude": null,
+    "name": "DE-CIX FRANKFURT"
+  },
+  {
+    "abbreviation": "",
+    "city": "MARSEILLE",
+    "country": "FRANCE",
+    "latitude": null,
+    "longitude": null,
+    "name": "DE-CIX MARSEILLE"
+  },
+  {
+    "abbreviation": "",
+    "city": "FRANKFURT",
+    "country": "GERMANY",
+    "latitude": null,
+    "longitude": null,
+    "name": "GOOGLE-DE"
+  },
+  {
+    "abbreviation": "",
+    "city": "FRANKFURT",
+    "country": "GERMANY",
+    "latitude": null,
+    "longitude": null,
+    "name": "INTERXION CPR"
+  },
+  {
+    "abbreviation": "",
+    "city": "VIENNA",
+    "country": "AUSTRIA",
+    "latitude": null,
+    "longitude": null,
+    "name": "VIX"
+  },
+  {
+    "abbreviation": "BUD2",
+    "city": "BUDAPEST",
+    "country": "HUNGARY",
+    "latitude": 47.49324126,
+    "longitude": 19.10232153,
+    "name": "BUDAPEST 2"
+  },
+  {
+    "abbreviation": "",
+    "city": "NEW YORK",
+    "country": "UNITED STATES",
+    "latitude": null,
+    "longitude": null,
+    "name": "SINET (AOA)"
+  },
+  {
+    "abbreviation": "",
+    "city": "VIENNA",
+    "country": "AUSTRIA",
+    "latitude": null,
+    "longitude": null,
+    "name": "ACONET"
+  },
+  {
+    "abbreviation": "",
+    "city": "BEN-AKNOUN",
+    "country": "ALGERIA",
+    "latitude": null,
+    "longitude": null,
+    "name": "ARN"
+  },
+  {
+    "abbreviation": "",
+    "city": "LJUBLJANA",
+    "country": "SLOVENIA",
+    "latitude": null,
+    "longitude": null,
+    "name": "ARNES"
+  },
+  {
+    "abbreviation": "",
+    "city": "BRUSSELS",
+    "country": "BELGIUM",
+    "latitude": null,
+    "longitude": null,
+    "name": "BELNET"
+  },
+  {
+    "abbreviation": "",
+    "city": "SOFIA",
+    "country": "BULGARIA",
+    "latitude": null,
+    "longitude": null,
+    "name": "BREN"
+  },
+  {
+    "abbreviation": "",
+    "city": "GENEVA",
+    "country": "SWITZERLAND",
+    "latitude": null,
+    "longitude": null,
+    "name": "CERN"
+  },
+  {
+    "abbreviation": "",
+    "city": "PRAGUE",
+    "country": "CZECH REPUBLIC",
+    "latitude": null,
+    "longitude": null,
+    "name": "CESNET"
+  },
+  {
+    "abbreviation": "",
+    "city": "FRANKFURT",
+    "country": "GERMANY",
+    "latitude": null,
+    "longitude": null,
+    "name": "COGENT - DE"
+  },
+  {
+    "abbreviation": "",
+    "city": "MADRID",
+    "country": "SPAIN",
+    "latitude": null,
+    "longitude": null,
+    "name": "DE-CIX MADRID"
+  },
+  {
+    "abbreviation": "",
+    "city": "FRANKFURT",
+    "country": "GERMANY",
+    "latitude": null,
+    "longitude": null,
+    "name": "DFN"
+  },
+  {
+    "abbreviation": "BUCC",
+    "city": "MADRID",
+    "country": "SPAIN",
+    "latitude": null,
+    "longitude": null,
+    "name": "EUMETSAT BUCC"
+  },
+  {
+    "abbreviation": "",
+    "city": "ROME",
+    "country": "ITALY",
+    "latitude": null,
+    "longitude": null,
+    "name": "GARR"
+  },
+  {
+    "abbreviation": "",
+    "city": "TBILISI",
+    "country": "GEORGIA",
+    "latitude": null,
+    "longitude": null,
+    "name": "GRENA"
+  },
+  {
+    "abbreviation": "",
+    "city": "DUBLIN",
+    "country": "IRELAND",
+    "latitude": null,
+    "longitude": null,
+    "name": "INEX"
+  },
+  {
+    "abbreviation": "",
+    "city": "NEW YORK",
+    "country": "UNITED STATES",
+    "latitude": null,
+    "longitude": null,
+    "name": "INTERNET2 NY"
+  },
+  {
+    "abbreviation": "",
+    "city": "MCLEAN",
+    "country": "UNITED STATES",
+    "latitude": null,
+    "longitude": null,
+    "name": "INTERNET2 WASHINGTON"
+  },
+  {
+    "abbreviation": "",
+    "city": "LONDON",
+    "country": "UNITED KINGDOM",
+    "latitude": null,
+    "longitude": null,
+    "name": "JISC"
+  },
+  {
+    "abbreviation": "",
+    "city": "BUDAPEST",
+    "country": "HUNGARY",
+    "latitude": null,
+    "longitude": null,
+    "name": "KIFU"
+  },
+  {
+    "abbreviation": "",
+    "city": "KAUNAS",
+    "country": "LITHUANIA",
+    "latitude": null,
+    "longitude": null,
+    "name": "LITNET"
+  },
+  {
+    "abbreviation": "",
+    "city": "MILAN",
+    "country": "ITALY",
+    "latitude": 45.47527778,
+    "longitude": 9.10305556,
+    "name": "MIX"
+  },
+  {
+    "abbreviation": "",
+    "city": "COPENHAGEN",
+    "country": "DENMARK",
+    "latitude": null,
+    "longitude": null,
+    "name": "NORDUNET"
+  },
+  {
+    "abbreviation": "",
+    "city": "POZNAN",
+    "country": "POLAND",
+    "latitude": null,
+    "longitude": null,
+    "name": "PIONIER"
+  },
+  {
+    "abbreviation": "",
+    "city": "MADRID",
+    "country": "SPAIN",
+    "latitude": null,
+    "longitude": null,
+    "name": "REDIRIS"
+  },
+  {
+    "abbreviation": "",
+    "city": "ZURICH",
+    "country": "SWITZERLAND",
+    "latitude": null,
+    "longitude": null,
+    "name": "SWITCH"
+  },
+  {
+    "abbreviation": "",
+    "city": "BEIJING",
+    "country": "CHINA",
+    "latitude": null,
+    "longitude": null,
+    "name": "TEIN2 BJ"
+  },
+  {
+    "abbreviation": "",
+    "city": "SINGAPORE",
+    "country": "SINGAPORE",
+    "latitude": null,
+    "longitude": null,
+    "name": "TEIN2 SG"
+  },
+  {
+    "abbreviation": "",
+    "city": "MUMBAI",
+    "country": "INDIA",
+    "latitude": null,
+    "longitude": null,
+    "name": "TEIN3 IN"
+  },
+  {
+    "abbreviation": "",
+    "city": "BUDAPEST",
+    "country": "HUNGARY",
+    "latitude": null,
+    "longitude": null,
+    "name": "TELIA - HU"
+  },
+  {
+    "abbreviation": "",
+    "city": "KIEV",
+    "country": "UKRAINE",
+    "latitude": null,
+    "longitude": null,
+    "name": "URAN"
+  },
+  {
+    "abbreviation": "",
+    "city": "WASHINGTON",
+    "country": "UNITED STATES",
+    "latitude": null,
+    "longitude": null,
+    "name": "WIX"
+  },
+  {
+    "abbreviation": "",
+    "city": "LONDON",
+    "country": "UNITED KINGDOM",
+    "latitude": null,
+    "longitude": null,
+    "name": "LINX"
+  },
+  {
+    "abbreviation": "",
+    "city": "PETACH TIKVA",
+    "country": "ISRAEL",
+    "latitude": 31.09228611,
+    "longitude": 34.853925,
+    "name": "IUCC"
+  },
+  {
+    "abbreviation": "MAD",
+    "city": "ALCOBENDAS",
+    "country": "SPAIN",
+    "latitude": 40.53647778,
+    "longitude": -3.64880278,
+    "name": "MADRID"
+  },
+  {
+    "abbreviation": "",
+    "city": "VIENNA",
+    "country": "AUSTRIA",
+    "latitude": null,
+    "longitude": null,
+    "name": "MICROSOFT AT"
+  },
+  {
+    "abbreviation": "",
+    "city": "UNKNOWN",
+    "country": "NETHERLANDS",
+    "latitude": null,
+    "longitude": null,
+    "name": "CANARIE"
+  },
+  {
+    "abbreviation": "ATH2",
+    "city": "ATTIKI",
+    "country": "GREECE",
+    "latitude": 37.98,
+    "longitude": 23.73,
+    "name": "ATHENS 2"
+  },
+  {
+    "abbreviation": "",
+    "city": "AMSTERDAM",
+    "country": "NETHERLANDS",
+    "latitude": null,
+    "longitude": null,
+    "name": "AMS-IX"
+  },
+  {
+    "abbreviation": "",
+    "city": "UNKNOWN",
+    "country": "NETHERLANDS",
+    "latitude": null,
+    "longitude": null,
+    "name": "ASREN"
+  },
+  {
+    "abbreviation": "",
+    "city": "UNKNOWN",
+    "country": "NETHERLANDS",
+    "latitude": null,
+    "longitude": null,
+    "name": "CIXP"
+  },
+  {
+    "abbreviation": "",
+    "city": "UNKNOWN",
+    "country": "NETHERLANDS",
+    "latitude": null,
+    "longitude": null,
+    "name": "CNGI-6IX"
+  },
+  {
+    "abbreviation": "",
+    "city": "UNKNOWN",
+    "country": "NETHERLANDS",
+    "latitude": null,
+    "longitude": null,
+    "name": "EUMETSAT US"
+  },
+  {
+    "abbreviation": "",
+    "city": "UNKNOWN",
+    "country": "NETHERLANDS",
+    "latitude": null,
+    "longitude": null,
+    "name": "KREONET"
+  },
+  {
+    "abbreviation": "",
+    "city": "AMSTERDAM",
+    "country": "NETHERLANDS",
+    "latitude": null,
+    "longitude": null,
+    "name": "NETHERLIGHT"
+  },
+  {
+    "abbreviation": "",
+    "city": "UNKNOWN",
+    "country": "NETHERLANDS",
+    "latitude": null,
+    "longitude": null,
+    "name": "OMREN"
+  },
+  {
+    "abbreviation": "POZ",
+    "city": "POZNAN",
+    "country": "POLAND",
+    "latitude": 52.411775,
+    "longitude": 16.91756111,
+    "name": "POZNAN 2"
+  },
+  {
+    "abbreviation": "",
+    "city": "UNKNOWN",
+    "country": "NETHERLANDS",
+    "latitude": null,
+    "longitude": null,
+    "name": "RENAM"
+  },
+  {
+    "abbreviation": "",
+    "city": "UNKNOWN",
+    "country": "NETHERLANDS",
+    "latitude": null,
+    "longitude": null,
+    "name": "SINGAREN"
+  },
+  {
+    "abbreviation": "",
+    "city": "UNKNOWN",
+    "country": "NETHERLANDS",
+    "latitude": null,
+    "longitude": null,
+    "name": "T-SYSTEMS DE"
+  },
+  {
+    "abbreviation": "",
+    "city": "TAINAN CITY",
+    "country": "TAIWAN",
+    "latitude": null,
+    "longitude": null,
+    "name": "TWAREN"
+  },
+  {
+    "abbreviation": "UNKNOWN",
+    "city": "UNKNOWN",
+    "country": "UNKNOWN",
+    "latitude": 0,
+    "longitude": 0,
+    "name": "UNKNOWN"
+  },
+  {
+    "abbreviation": "",
+    "city": "UNKNOWN",
+    "country": "NETHERLANDS",
+    "latitude": null,
+    "longitude": null,
+    "name": "ESNET"
+  },
+  {
+    "abbreviation": "SOF",
+    "city": "SOFIA",
+    "country": "BULGARIA",
+    "latitude": 42.67575833,
+    "longitude": 23.37098611,
+    "name": "SOFIA"
+  },
+  {
+    "abbreviation": "GEN",
+    "city": "GENEVA",
+    "country": "SWITZERLAND",
+    "latitude": 46.2355997,
+    "longitude": 6.0553345,
+    "name": "GENEVA"
+  },
+  {
+    "abbreviation": "GEN2",
+    "city": "PREVESSIN",
+    "country": "FRANCE",
+    "latitude": 46.25495278,
+    "longitude": 6.05908333,
+    "name": "GENEVA 2"
+  },
+  {
+    "abbreviation": "MIL1",
+    "city": "MILAN",
+    "country": "ITALY",
+    "latitude": 45.495,
+    "longitude": 9.17805556,
+    "name": "MILAN 1 LANCETTI"
+  },
+  {
+    "abbreviation": "LON",
+    "city": "LONDON",
+    "country": "UNITED KINGDOM",
+    "latitude": 51.4981657,
+    "longitude": -0.0152639,
+    "name": "LONDON"
+  },
+  {
+    "abbreviation": "LIS",
+    "city": "LISBON",
+    "country": "PORTUGAL",
+    "latitude": 38.759325,
+    "longitude": -9.142339,
+    "name": "LISBON"
+  },
+  {
+    "abbreviation": "DUB",
+    "city": "DUBLIN",
+    "country": "IRELAND",
+    "latitude": 53.29198056,
+    "longitude": -6.41473333,
+    "name": "DUBLIN CITY WEST"
+  },
+  {
+    "abbreviation": "AMS",
+    "city": "AMSTERDAM",
+    "country": "NETHERLANDS",
+    "latitude": 52.34638889,
+    "longitude": 4.93861111,
+    "name": "AMSTERDAM"
+  },
+  {
+    "abbreviation": "PAR",
+    "city": "AUBERVILLIERS",
+    "country": "FRANCE",
+    "latitude": 48.90444444,
+    "longitude": 2.37111111,
+    "name": "PARIS"
+  },
+  {
+    "abbreviation": "VIE",
+    "city": "VIENNA",
+    "country": "AUSTRIA",
+    "latitude": 48.26888889,
+    "longitude": 16.41019444,
+    "name": "VIENNA"
+  },
+  {
+    "abbreviation": "BRU",
+    "city": "BRUSSELS",
+    "country": "BELGIUM",
+    "latitude": 50.85694444,
+    "longitude": 4.41138889,
+    "name": "BRUSSELS"
+  },
+  {
+    "abbreviation": "MIL2",
+    "city": "MILAN",
+    "country": "ITALY",
+    "latitude": 45.47527778,
+    "longitude": 9.10305556,
+    "name": "MILAN 2 CALDERA"
+  },
+  {
+    "abbreviation": "BUD",
+    "city": "BUDAPEST",
+    "country": "HUNGARY",
+    "latitude": 47.51777778,
+    "longitude": 19.05527778,
+    "name": "BUDAPEST"
+  },
+  {
+    "abbreviation": "BUC",
+    "city": "BUCHAREST",
+    "country": "ROMANIA",
+    "latitude": 44.44474167,
+    "longitude": 26.09642222,
+    "name": "BUCHAREST"
+  },
+  {
+    "abbreviation": "BRA",
+    "city": "BRATISLAVA",
+    "country": "SLOVAKIA",
+    "latitude": 48.116833,
+    "longitude": 17.094389,
+    "name": "BRATISLAVA"
+  },
+  {
+    "abbreviation": "CCH",
+    "city": "CAMBRIDGE",
+    "country": "UNITED KINGDOM",
+    "latitude": 52.19152778,
+    "longitude": 0.13383333,
+    "name": "CAMBRIDGE CITY HOUSE"
+  },
+  {
+    "abbreviation": "AM",
+    "city": "AMSTERDAM",
+    "country": "NETHERLANDS",
+    "latitude": 52.31330556,
+    "longitude": 4.94911111,
+    "name": "AMSTERDAM GEANT OFFICE"
+  },
+  {
+    "abbreviation": "KAU",
+    "city": "KAUNAS",
+    "country": "LITHUANIA",
+    "latitude": 54.94067222,
+    "longitude": 24.01801389,
+    "name": "KAUNAS"
+  },
+  {
+    "abbreviation": "LJU2",
+    "city": "LJUBLJANA",
+    "country": "SLOVENIA",
+    "latitude": 46.04222222,
+    "longitude": 14.48861111,
+    "name": "LJUBLJANA 2"
+  },
+  {
+    "abbreviation": "",
+    "city": "MSIDA",
+    "country": "MALTA",
+    "latitude": 35.90327778,
+    "longitude": 14.48334444,
+    "name": "MALTA"
+  },
+  {
+    "abbreviation": "RIG",
+    "city": "RIGA",
+    "country": "LATVIA",
+    "latitude": 56.94834444,
+    "longitude": 24.118,
+    "name": "RIGA"
+  },
+  {
+    "abbreviation": "",
+    "city": "AMSTERDAM",
+    "country": "NETHERLANDS",
+    "latitude": 52.35611111,
+    "longitude": 4.95305556,
+    "name": "SURF"
+  },
+  {
+    "abbreviation": "ZAG",
+    "city": "ZAGREB",
+    "country": "CROATIA",
+    "latitude": 45.79194444,
+    "longitude": 15.96944444,
+    "name": "ZAGREB 1"
+  },
+  {
+    "abbreviation": "LON2",
+    "city": "SLOUGH",
+    "country": "UNITED KINGDOM",
+    "latitude": 51.5231433,
+    "longitude": -0.6224058,
+    "name": "LONDON 2"
+  },
+  {
+    "abbreviation": "",
+    "city": "UNKNOWN",
+    "country": "NETHERLANDS",
+    "latitude": null,
+    "longitude": null,
+    "name": "EXOSCALE CH"
+  },
+  {
+    "abbreviation": "",
+    "city": "PRAGUE",
+    "country": "CZECH REPUBLIC",
+    "latitude": null,
+    "longitude": null,
+    "name": "NIX"
+  },
+  {
+    "abbreviation": "",
+    "city": "BUDAPEST",
+    "country": "HUNGARY",
+    "latitude": null,
+    "longitude": null,
+    "name": "BIX-HU"
+  },
+  {
+    "abbreviation": "",
+    "city": "SÃO PAULO",
+    "country": "BRAZIL",
+    "latitude": null,
+    "longitude": null,
+    "name": "CLARA-BRAZIL"
+  },
+  {
+    "abbreviation": "",
+    "city": "LONDON",
+    "country": "UNITED KINGDOM",
+    "latitude": null,
+    "longitude": null,
+    "name": "INTEROUTE-LON"
+  },
+  {
+    "abbreviation": "",
+    "city": "LUXEMBOURG",
+    "country": "LUXEMBOURG",
+    "latitude": 49.5047534,
+    "longitude": 6.11276,
+    "name": "LUXEMBOURG"
+  },
+  {
+    "abbreviation": "",
+    "city": "UNKNOWN",
+    "country": "NETHERLANDS",
+    "latitude": null,
+    "longitude": null,
+    "name": "MICROSOFT NL"
+  },
+  {
+    "abbreviation": "",
+    "city": "LISBON (ORIENTE)",
+    "country": "PORTUGAL",
+    "latitude": 38.766479,
+    "longitude": -9.098751,
+    "name": "ORI"
+  },
+  {
+    "abbreviation": "",
+    "city": "SETIL",
+    "country": "PORTUGAL",
+    "latitude": 39.113711,
+    "longitude": -8.777987,
+    "name": "STL"
+  },
+  {
+    "abbreviation": "",
+    "city": "ENTRONCAMENTO",
+    "country": "PORTUGAL",
+    "latitude": 39.461433,
+    "longitude": -8.474133,
+    "name": "ETR"
+  },
+  {
+    "abbreviation": "",
+    "city": "COIMBRA",
+    "country": "PORTUGAL",
+    "latitude": 40.227289,
+    "longitude": -8.440954,
+    "name": "CMB"
+  },
+  {
+    "abbreviation": "",
+    "city": "AVEIRO",
+    "country": "PORTUGAL",
+    "latitude": 40.643358,
+    "longitude": -8.640023,
+    "name": "AVR"
+  },
+  {
+    "abbreviation": "POR",
+    "city": "PORTO",
+    "country": "PORTUGAL",
+    "latitude": 41.177904,
+    "longitude": -8.594972,
+    "name": "PORTO"
+  },
+  {
+    "abbreviation": "",
+    "city": "TUI",
+    "country": "PORTUGAL",
+    "latitude": 42.05207542,
+    "longitude": -8.646731448,
+    "name": "TUI"
+  },
+  {
+    "abbreviation": "",
+    "city": "CANIZA",
+    "country": "SPAIN",
+    "latitude": 42.21453607,
+    "longitude": -8.272134119,
+    "name": "CANI"
+  },
+  {
+    "abbreviation": "",
+    "city": "ORENSE",
+    "country": "SPAIN",
+    "latitude": 42.3317274,
+    "longitude": -7.864029522,
+    "name": "OR.PO"
+  },
+  {
+    "abbreviation": "",
+    "city": "VERIN",
+    "country": "SPAIN",
+    "latitude": 41.94056113,
+    "longitude": -7.434696575,
+    "name": "VEI"
+  },
+  {
+    "abbreviation": "",
+    "city": "LUBIAN",
+    "country": "SPAIN",
+    "latitude": 42.03654525,
+    "longitude": -6.905631965,
+    "name": "LUBN"
+  },
+  {
+    "abbreviation": "",
+    "city": "VEGUELLINA",
+    "country": "SPAIN",
+    "latitude": 42.43999275,
+    "longitude": -5.882801869,
+    "name": "VORB"
+  },
+  {
+    "abbreviation": "",
+    "city": "POLA DE LENA",
+    "country": "SPAIN",
+    "latitude": 43.16256112,
+    "longitude": -5.827437654,
+    "name": "POLE"
+  },
+  {
+    "abbreviation": "",
+    "city": "GIJON",
+    "country": "SPAIN",
+    "latitude": 43.53017778,
+    "longitude": -5.668392707,
+    "name": "GJ.PU"
+  },
+  {
+    "abbreviation": "",
+    "city": "RIBADESELLA",
+    "country": "SPAIN",
+    "latitude": 43.46415999,
+    "longitude": -5.064160084,
+    "name": "RIBS"
+  },
+  {
+    "abbreviation": "",
+    "city": "SAN VINCENTE",
+    "country": "SPAIN",
+    "latitude": 43.38779683,
+    "longitude": -4.397588745,
+    "name": "SVDB"
+  },
+  {
+    "abbreviation": "",
+    "city": "SANTANDER",
+    "country": "SPAIN",
+    "latitude": 43.45872182,
+    "longitude": -3.841115553,
+    "name": "SD.CZ"
+  },
+  {
+    "abbreviation": "",
+    "city": "LAREDO",
+    "country": "SPAIN",
+    "latitude": 43.40925129,
+    "longitude": -3.412898368,
+    "name": "LARE"
+  },
+  {
+    "abbreviation": "",
+    "city": "CAMARZANA",
+    "country": "SPAIN",
+    "latitude": 41.99598948,
+    "longitude": -6.028067785,
+    "name": "CATE"
+  },
+  {
+    "abbreviation": "",
+    "city": "CANALES",
+    "country": "SPAIN",
+    "latitude": 42.786487,
+    "longitude": -5.804808,
+    "name": "CANL"
+  },
+  {
+    "abbreviation": "",
+    "city": "VIANA DO CASTELO",
+    "country": "PORTUGAL",
+    "latitude": 41.694208,
+    "longitude": -8.830897,
+    "name": "VCT"
+  },
+  {
+    "abbreviation": "",
+    "city": "POVOA DE VARZIM",
+    "country": "PORTUGAL",
+    "latitude": 41.388007,
+    "longitude": -8.7655,
+    "name": "PVZ"
+  },
+  {
+    "abbreviation": "BIL",
+    "city": "BILBAO",
+    "country": "SPAIN",
+    "latitude": 43.3250881,
+    "longitude": -2.9804526,
+    "name": "BILBAO"
+  },
+  {
+    "abbreviation": "",
+    "city": "PRAIS DO SADO",
+    "country": "PORTUGAL",
+    "latitude": 38.513752,
+    "longitude": -8.84159,
+    "name": "PDS"
+  },
+  {
+    "abbreviation": "",
+    "city": "EVORA",
+    "country": "PORTUGAL",
+    "latitude": 38.560422,
+    "longitude": -7.907453,
+    "name": "EVR"
+  },
+  {
+    "abbreviation": "",
+    "city": "ESTREMOZ",
+    "country": "PORTUGAL",
+    "latitude": 38.844044,
+    "longitude": -7.582101,
+    "name": "EST"
+  },
+  {
+    "abbreviation": "",
+    "city": "PORTALEGRE",
+    "country": "PORTUGAL",
+    "latitude": 39.199244,
+    "longitude": -7.461497,
+    "name": "PTL"
+  },
+  {
+    "abbreviation": "",
+    "city": "ELVAS",
+    "country": "PORTUGAL",
+    "latitude": 38.895487,
+    "longitude": -7.142096,
+    "name": "ELV"
+  },
+  {
+    "abbreviation": "",
+    "city": "BADAJOZ",
+    "country": "SPAIN",
+    "latitude": 38.883345,
+    "longitude": -7.00559,
+    "name": "BAD"
+  },
+  {
+    "abbreviation": "",
+    "city": "MONTIJO",
+    "country": "SPAIN",
+    "latitude": 38.90808404,
+    "longitude": -6.616116035,
+    "name": "MTO"
+  },
+  {
+    "abbreviation": "",
+    "city": "MIAJADAS (REDIRIS)",
+    "country": "SPAIN",
+    "latitude": 39.15571452,
+    "longitude": -5.903159495,
+    "name": "MIAJ"
+  },
+  {
+    "abbreviation": "",
+    "city": "CACERES",
+    "country": "SPAIN",
+    "latitude": 39.46677154,
+    "longitude": -6.381403651,
+    "name": "CC.PE"
+  },
+  {
+    "abbreviation": "",
+    "city": "JARAICEJO",
+    "country": "SPAIN",
+    "latitude": 39.66986298,
+    "longitude": -5.811855241,
+    "name": "JRCJ"
+  },
+  {
+    "abbreviation": "",
+    "city": "NAVALMORAL (REDIRIS)",
+    "country": "SPAIN",
+    "latitude": 39.89260715,
+    "longitude": -5.540087837,
+    "name": "NMTA"
+  },
+  {
+    "abbreviation": "",
+    "city": "TALAVERA",
+    "country": "SPAIN",
+    "latitude": 39.96443958,
+    "longitude": -4.825024,
+    "name": "TLR"
+  },
+  {
+    "abbreviation": "",
+    "city": "VALMOJADO (REDIRIS)",
+    "country": "SPAIN",
+    "latitude": 40.20769813,
+    "longitude": -4.08395223,
+    "name": "VJD.VD"
+  },
+  {
+    "abbreviation": "",
+    "city": "HAUTBOUT",
+    "country": "FRANCE",
+    "latitude": 48.52375556,
+    "longitude": 1.9176,
+    "name": "HBT-HBT"
+  },
+  {
+    "abbreviation": "",
+    "city": "GIDY",
+    "country": "FRANCE",
+    "latitude": 47.96846944,
+    "longitude": 1.839625,
+    "name": "GDY-GDY"
+  },
+  {
+    "abbreviation": "",
+    "city": "FRANCAY",
+    "country": "FRANCE",
+    "latitude": 47.61605556,
+    "longitude": 1.126261111,
+    "name": "FNY-FNY"
+  },
+  {
+    "abbreviation": "",
+    "city": "LA TINELLIERE",
+    "country": "FRANCE",
+    "latitude": 47.15448056,
+    "longitude": 0.679677778,
+    "name": "LTL-LTL"
+  },
+  {
+    "abbreviation": "",
+    "city": "POITIERS",
+    "country": "FRANCE",
+    "latitude": 46.58971389,
+    "longitude": 0.390266667,
+    "name": "PIS-AME"
+  },
+  {
+    "abbreviation": "",
+    "city": "CONDAC",
+    "country": "FRANCE",
+    "latitude": 46.02114722,
+    "longitude": 0.234475,
+    "name": "CNC-CNC"
+  },
+  {
+    "abbreviation": "",
+    "city": "CHARMANT",
+    "country": "FRANCE",
+    "latitude": 45.47092778,
+    "longitude": 0.199116667,
+    "name": "CHM-CHM"
+  },
+  {
+    "abbreviation": "",
+    "city": "LALANDE DE POMEROL",
+    "country": "FRANCE",
+    "latitude": 44.9655,
+    "longitude": -0.219377778,
+    "name": "LDP-LDP"
+  },
+  {
+    "abbreviation": "",
+    "city": "BORDEAUX",
+    "country": "FRANCE",
+    "latitude": 44.78098889,
+    "longitude": -0.537341667,
+    "name": "BOD-MIR"
+  },
+  {
+    "abbreviation": "",
+    "city": "YCHOUX",
+    "country": "FRANCE",
+    "latitude": 44.33092778,
+    "longitude": -0.947377778,
+    "name": "YHX-DUM"
+  },
+  {
+    "abbreviation": "",
+    "city": "MAGESQ",
+    "country": "FRANCE",
+    "latitude": 43.75873889,
+    "longitude": -1.161202778,
+    "name": "MGQ-MGQ"
+  },
+  {
+    "abbreviation": "",
+    "city": "ST. PÉE SUR NIVELLE",
+    "country": "FRANCE",
+    "latitude": 43.38546389,
+    "longitude": -1.563930556,
+    "name": "SPN-SPN"
+  },
+  {
+    "abbreviation": "",
+    "city": "AIA (GUIPUZCOA)",
+    "country": "SPAIN",
+    "latitude": 43.28494444,
+    "longitude": -2.13505,
+    "name": "GUZ-GAZ"
+  },
+  {
+    "abbreviation": "",
+    "city": "BIO-ART",
+    "country": "SPAIN",
+    "latitude": 43.22891389,
+    "longitude": -2.880488889,
+    "name": "BIO-ART"
+  },
+  {
+    "abbreviation": "",
+    "city": "VERMOIL",
+    "country": "PORTUGAL",
+    "latitude": 39.850814,
+    "longitude": -8.651818,
+    "name": "VERM"
+  },
+  {
+    "abbreviation": "",
+    "city": "VERCELLI",
+    "country": "ITALY",
+    "latitude": 45.31037,
+    "longitude": 8.396,
+    "name": "VCI-TAN"
+  },
+  {
+    "abbreviation": "",
+    "city": "ST MAXIMIN",
+    "country": "FRANCE",
+    "latitude": 43.44999444,
+    "longitude": 5.877286111,
+    "name": "SMM-SMM"
+  },
+  {
+    "abbreviation": "",
+    "city": "FREJUS",
+    "country": "FRANCE",
+    "latitude": 43.46540278,
+    "longitude": 6.718394444,
+    "name": "FRJ-FRJ"
+  },
+  {
+    "abbreviation": "",
+    "city": "NICE",
+    "country": "FRANCE",
+    "latitude": 43.71025278,
+    "longitude": 7.192727778,
+    "name": "NCE-TRA"
+  },
+  {
+    "abbreviation": "",
+    "city": "SANREMO",
+    "country": "ITALY",
+    "latitude": 43.83178,
+    "longitude": 7.82414,
+    "name": "SRO-ARM"
+  },
+  {
+    "abbreviation": "",
+    "city": "FINALE LIGURE",
+    "country": "ITALY",
+    "latitude": 44.14922,
+    "longitude": 8.31817,
+    "name": "FIA-CAL"
+  },
+  {
+    "abbreviation": "",
+    "city": "GENOA",
+    "country": "ITALY",
+    "latitude": 44.43017,
+    "longitude": 8.85779,
+    "name": "GOA-PIL"
+  },
+  {
+    "abbreviation": "",
+    "city": "ALESSANDRIA",
+    "country": "ITALY",
+    "latitude": 44.88067,
+    "longitude": 8.59452,
+    "name": "ASS-ASS"
+  },
+  {
+    "abbreviation": "",
+    "city": "BALDICHIERI",
+    "country": "ITALY",
+    "latitude": 44.90137,
+    "longitude": 8.07647,
+    "name": "BCH-BCH"
+  },
+  {
+    "abbreviation": "",
+    "city": "TORINO",
+    "country": "ITALY",
+    "latitude": 45.11017,
+    "longitude": 7.73611,
+    "name": "TRN-BER"
+  },
+  {
+    "abbreviation": "",
+    "city": "TRECATE",
+    "country": "ITALY",
+    "latitude": 45.43404,
+    "longitude": 8.71069,
+    "name": "TEC-TEC"
+  },
+  {
+    "abbreviation": "",
+    "city": "VILLAREJO DE SALVANES (GTT)",
+    "country": "SPAIN",
+    "latitude": 40.16598056,
+    "longitude": -3.284869444,
+    "name": "VSL-VSL"
+  },
+  {
+    "abbreviation": "",
+    "city": "VILLAS VIEJAS (GTT)",
+    "country": "SPAIN",
+    "latitude": 39.90812222,
+    "longitude": -2.720602778,
+    "name": "VVS-VVS"
+  },
+  {
+    "abbreviation": "",
+    "city": "GARCIMUNOZ",
+    "country": "SPAIN",
+    "latitude": 39.63989444,
+    "longitude": -2.327344444,
+    "name": "GMZ-GMZ"
+  },
+  {
+    "abbreviation": "",
+    "city": "CASTILLEJO DE INIEST CUENCA",
+    "country": "SPAIN",
+    "latitude": 39.51871944,
+    "longitude": -1.764783333,
+    "name": "CDI-CDI"
+  },
+  {
+    "abbreviation": "",
+    "city": "VALENCIA  PARCELA",
+    "country": "SPAIN",
+    "latitude": 39.47343333,
+    "longitude": -0.536672222,
+    "name": "VLC-PAR"
+  },
+  {
+    "abbreviation": "",
+    "city": "EL REBOLLAR REQUENA",
+    "country": "SPAIN",
+    "latitude": 39.47145556,
+    "longitude": -1.015947222,
+    "name": "ERL-ERL"
+  },
+  {
+    "abbreviation": "",
+    "city": "NIÑO PERDIDO",
+    "country": "SPAIN",
+    "latitude": 39.90385556,
+    "longitude": -0.132305556,
+    "name": "NPD-NPD"
+  },
+  {
+    "abbreviation": "",
+    "city": "BENICARLÓ",
+    "country": "SPAIN",
+    "latitude": 40.42455833,
+    "longitude": 0.381102778,
+    "name": "BEN-BEN"
+  },
+  {
+    "abbreviation": "",
+    "city": "HOSPITALET DE L INFANT",
+    "country": "SPAIN",
+    "latitude": 41.01218889,
+    "longitude": 0.908658333,
+    "name": "HDI-HDI"
+  },
+  {
+    "abbreviation": "",
+    "city": "BANYERES DEL PENEDES TARRAGONA",
+    "country": "SPAIN",
+    "latitude": 41.26956111,
+    "longitude": 1.539691667,
+    "name": "BDP-BDP"
+  },
+  {
+    "abbreviation": "",
+    "city": "CARRER BOSC TANCAT",
+    "country": "SPAIN",
+    "latitude": 41.50092778,
+    "longitude": 2.135736111,
+    "name": "BCN-BOS"
+  },
+  {
+    "abbreviation": "",
+    "city": "MACANET DE LA SELVA GIRON",
+    "country": "SPAIN",
+    "latitude": 41.76278611,
+    "longitude": 2.727702778,
+    "name": "MDS-MDS"
+  },
+  {
+    "abbreviation": "",
+    "city": "BIURE/AGULLAN",
+    "country": "SPAIN",
+    "latitude": 42.33706111,
+    "longitude": 2.925677778,
+    "name": "BIR-BIR"
+  },
+  {
+    "abbreviation": "",
+    "city": "VINGRAU OPOUL-PÉRILLOS",
+    "country": "FRANCE",
+    "latitude": 42.84868333,
+    "longitude": 2.810905556,
+    "name": "VGA-VGA"
+  },
+  {
+    "abbreviation": "",
+    "city": "AGDE (GTT)",
+    "country": "FRANCE",
+    "latitude": 43.32749444,
+    "longitude": 3.482536111,
+    "name": "AGD-AGD"
+  },
+  {
+    "abbreviation": "",
+    "city": "NARBONNE (GTT)",
+    "country": "FRANCE",
+    "latitude": 43.25521944,
+    "longitude": 2.912569444,
+    "name": "NRB-PON"
+  },
+  {
+    "abbreviation": "",
+    "city": "ECUREILS LA GRANDE MOTTE",
+    "country": "FRANCE",
+    "latitude": 43.56904167,
+    "longitude": 4.080213889,
+    "name": "LGM-ECU"
+  },
+  {
+    "abbreviation": "",
+    "city": "LEDIGNAN FOURQUES",
+    "country": "FRANCE",
+    "latitude": 43.69718889,
+    "longitude": 4.598169444,
+    "name": "FQS-LED"
+  },
+  {
+    "abbreviation": "",
+    "city": "AGNELLES",
+    "country": "FRANCE",
+    "latitude": 43.47456111,
+    "longitude": 4.900319444,
+    "name": "FMR-AGN"
+  },
+  {
+    "abbreviation": "MAR",
+    "city": "MARSEILLE",
+    "country": "FRANCE",
+    "latitude": 43.338019,
+    "longitude": 5.347666,
+    "name": "MARSEILLE"
+  },
+  {
+    "abbreviation": "",
+    "city": "VIENNA",
+    "country": "AUSTRIA",
+    "latitude": null,
+    "longitude": null,
+    "name": "VERIZON - AT"
+  },
+  {
+    "abbreviation": "",
+    "city": "BRIANZA",
+    "country": "ITALY",
+    "latitude": 45.393613,
+    "longitude": 9.253256,
+    "name": "MIL-BRI"
+  },
+  {
+    "abbreviation": "",
+    "city": "CARMIGNANO",
+    "country": "ITALY",
+    "latitude": 45.61219167,
+    "longitude": 11.68972222,
+    "name": "CMM-ZAN"
+  },
+  {
+    "abbreviation": "",
+    "city": "UDINE",
+    "country": "ITALY",
+    "latitude": 46.030268,
+    "longitude": 13.261485,
+    "name": "UDN-BAL"
+  },
+  {
+    "abbreviation": "",
+    "city": "GRAFENSTEIN",
+    "country": "AUSTRIA",
+    "latitude": 46.631486,
+    "longitude": 14.478825,
+    "name": "GSN-GSN"
+  },
+  {
+    "abbreviation": "_SOD",
+    "city": "SANKT OSWALD",
+    "country": "AUSTRIA",
+    "latitude": 46.70148611,
+    "longitude": 15.12641389,
+    "name": "SOD-SOD"
+  },
+  {
+    "abbreviation": "",
+    "city": "GRAZ",
+    "country": "AUSTRIA",
+    "latitude": 47.04349722,
+    "longitude": 15.46617222,
+    "name": "GRZ-NEU"
+  },
+  {
+    "abbreviation": "",
+    "city": "HARTBERG",
+    "country": "AUSTRIA",
+    "latitude": 47.31789722,
+    "longitude": 15.97889167,
+    "name": "HBG-HTB"
+  },
+  {
+    "abbreviation": "",
+    "city": "WIENER NEUSTADT",
+    "country": "AUSTRIA",
+    "latitude": 47.86464444,
+    "longitude": 16.22870556,
+    "name": "WIE-WIE"
+  },
+  {
+    "abbreviation": "",
+    "city": "FINKENSTEIN",
+    "country": "AUSTRIA",
+    "latitude": 46.56144167,
+    "longitude": 13.84671389,
+    "name": "FSN-FSN"
+  },
+  {
+    "abbreviation": "",
+    "city": "MOZZANICA",
+    "country": "ITALY",
+    "latitude": 45.48194,
+    "longitude": 9.68467,
+    "name": "MZC-MZC"
+  },
+  {
+    "abbreviation": "",
+    "city": "REZZATO",
+    "country": "ITALY",
+    "latitude": 45.49281,
+    "longitude": 10.32348,
+    "name": "REZ-CAS"
+  },
+  {
+    "abbreviation": "",
+    "city": "VERONA",
+    "country": "ITALY",
+    "latitude": 45.39958,
+    "longitude": 10.96583,
+    "name": "VNO-GEN"
+  },
+  {
+    "abbreviation": "",
+    "city": "SACILE",
+    "country": "ITALY",
+    "latitude": 45.9494353,
+    "longitude": 12.4849131,
+    "name": "SLE-LAC"
+  },
+  {
+    "abbreviation": "",
+    "city": "PONTEBBA",
+    "country": "ITALY",
+    "latitude": 46.508509,
+    "longitude": 13.355684,
+    "name": "PBT-PBT"
+  },
+  {
+    "abbreviation": "CHIASSO",
+    "city": "CHIASSO",
+    "country": "SWITZERLAND",
+    "latitude": 45.8387,
+    "longitude": 9.02201,
+    "name": "CHSOSZAA"
+  },
+  {
+    "abbreviation": "CRESCIANO",
+    "city": "CRESCIANO",
+    "country": "SWITZERLAND",
+    "latitude": 46.278791,
+    "longitude": 9.004337,
+    "name": "CRSCSZAB"
+  },
+  {
+    "abbreviation": "AIROLO",
+    "city": "AIROLO",
+    "country": "SWITZERLAND",
+    "latitude": 46.527659,
+    "longitude": 8.610423,
+    "name": "ARLOSZAB"
+  },
+  {
+    "abbreviation": "SEEWEN",
+    "city": "SEEWEN",
+    "country": "SWITZERLAND",
+    "latitude": 47.0246,
+    "longitude": 8.63802,
+    "name": "SWENSZAB"
+  },
+  {
+    "abbreviation": "ZURICH",
+    "city": "ZÜRICH",
+    "country": "SWITZERLAND",
+    "latitude": 47.39265,
+    "longitude": 8.50045,
+    "name": "ZRCHSZ01"
+  },
+  {
+    "abbreviation": "OBERBUCHSITEN",
+    "city": "OBERBUCHSITEN",
+    "country": "SWITZERLAND",
+    "latitude": 47.30594,
+    "longitude": 7.76882,
+    "name": "OBRBSZAA"
+  },
+  {
+    "abbreviation": "LAUPEN",
+    "city": "WALLENBUCH",
+    "country": "SWITZERLAND",
+    "latitude": 46.90361,
+    "longitude": 7.23971,
+    "name": "LPENSZAB"
+  },
+  {
+    "abbreviation": "ORBE",
+    "city": "ORBE",
+    "country": "SWITZERLAND",
+    "latitude": 46.71908,
+    "longitude": 6.54539,
+    "name": "ORBESZAA"
+  },
+  {
+    "abbreviation": "KOURIM",
+    "city": "KOURIM",
+    "country": "CZECH REPUBLIC",
+    "latitude": 50.01600611,
+    "longitude": 14.93300139,
+    "name": "KOU"
+  },
+  {
+    "abbreviation": "REFERENCE ID FOR SACHOTIN ILA SITE: 176926",
+    "city": "SACHOTIN",
+    "country": "CZECH REPUBLIC",
+    "latitude": 49.54903889,
+    "longitude": 15.68881667,
+    "name": "SAC"
+  },
+  {
+    "abbreviation": "REFERENCE ID FOR IVANCICE ILA SITE: 176927",
+    "city": "IVANCICE",
+    "country": "CZECH REPUBLIC",
+    "latitude": 49.09027556,
+    "longitude": 16.35621806,
+    "name": "IVA"
+  },
+  {
+    "abbreviation": "REFERENCE ID FOR HUSTOPECE ILA SITE: 176928",
+    "city": "HUSTOPECE",
+    "country": "CZECH REPUBLIC",
+    "latitude": 48.92826222,
+    "longitude": 16.72143833,
+    "name": "HUS"
+  },
+  {
+    "abbreviation": "NIEDERANSDORF ILA SITE: 176930",
+    "city": "NIEDERABSDORF",
+    "country": "AUSTRIA",
+    "latitude": 48.56136667,
+    "longitude": 16.84646667,
+    "name": "NIE"
+  },
+  {
+    "abbreviation": "",
+    "city": "AVENCHES",
+    "country": "SWITZERLAND",
+    "latitude": 46.89344444,
+    "longitude": 7.046333333,
+    "name": "AVE-AVE"
+  },
+  {
+    "abbreviation": "",
+    "city": "BERN",
+    "country": "SWITZERLAND",
+    "latitude": 46.97347222,
+    "longitude": 7.473138889,
+    "name": "BRN-ITT"
+  },
+  {
+    "abbreviation": "",
+    "city": "BASEL",
+    "country": "SWITZERLAND",
+    "latitude": 47.5302,
+    "longitude": 7.7269,
+    "name": "BSL-GIE"
+  },
+  {
+    "abbreviation": "",
+    "city": "LAUSANNE",
+    "country": "SWITZERLAND",
+    "latitude": 46.56133333,
+    "longitude": 6.563722222,
+    "name": "LUA-VSC"
+  },
+  {
+    "abbreviation": "",
+    "city": "ZURICH JOSEF STRASSE",
+    "country": "SWITZERLAND",
+    "latitude": 47.38731778,
+    "longitude": 8.521907778,
+    "name": "ZRH-JOS"
+  },
+  {
+    "abbreviation": "",
+    "city": "SINGEN",
+    "country": "GERMANY",
+    "latitude": 47.77467222,
+    "longitude": 8.823113889,
+    "name": "SGN-DUC"
+  },
+  {
+    "abbreviation": "",
+    "city": "BALINGEN",
+    "country": "GERMANY",
+    "latitude": 48.25549444,
+    "longitude": 8.856188889,
+    "name": "BLG-DOR"
+  },
+  {
+    "abbreviation": "",
+    "city": "STUTTGART",
+    "country": "GERMANY",
+    "latitude": 48.72534444,
+    "longitude": 9.116244444,
+    "name": "STR-IND"
+  },
+  {
+    "abbreviation": "",
+    "city": "BRUCHSAL (FORST)",
+    "country": "GERMANY",
+    "latitude": 49.15956667,
+    "longitude": 8.575477778,
+    "name": "FRT-WVS"
+  },
+  {
+    "abbreviation": "",
+    "city": "LORSCH",
+    "country": "GERMANY",
+    "latitude": 49.65373333,
+    "longitude": 8.55305,
+    "name": "LSH-NIB"
+  },
+  {
+    "abbreviation": "CHI",
+    "city": "CHISINAU",
+    "country": "MOLDOVA, REPUBLIC OF",
+    "latitude": 47.03072498,
+    "longitude": 28.82379273,
+    "name": "CHISINAU"
+  },
+  {
+    "abbreviation": "KIE",
+    "city": "KIEV",
+    "country": "UKRAINE",
+    "latitude": 50.44909773,
+    "longitude": 30.46527006,
+    "name": "KIEV"
+  },
+  {
+    "abbreviation": "PRA",
+    "city": "PRAGUE",
+    "country": "CZECH REPUBLIC",
+    "latitude": 50.0810406,
+    "longitude": 14.451125,
+    "name": "PRAGUE"
+  },
+  {
+    "abbreviation": "",
+    "city": "ZANDVOORT",
+    "country": "NETHERLANDS",
+    "latitude": 52.38303333,
+    "longitude": 4.536072222,
+    "name": "ZAN-ECP"
+  },
+  {
+    "abbreviation": "",
+    "city": "LEISTON",
+    "country": "UNITED KINGDOM",
+    "latitude": 52.20725,
+    "longitude": 1.585988889,
+    "name": "LEI-EAS"
+  },
+  {
+    "abbreviation": "",
+    "city": "WHERSTEAD",
+    "country": "UNITED KINGDOM",
+    "latitude": 52.01944722,
+    "longitude": 1.142730556,
+    "name": "WHE-PAR"
+  },
+  {
+    "abbreviation": "",
+    "city": "WICKFORD",
+    "country": "UNITED KINGDOM",
+    "latitude": 51.65722778,
+    "longitude": 0.53510556,
+    "name": "WIF-MOR"
+  },
+  {
+    "abbreviation": "",
+    "city": "REES",
+    "country": "GERMANY",
+    "latitude": 51.77834,
+    "longitude": 6.40168,
+    "name": "RES-RDS"
+  },
+  {
+    "abbreviation": "",
+    "city": "ESSEN",
+    "country": "GERMANY",
+    "latitude": 51.56707,
+    "longitude": 6.9671,
+    "name": "ESS-ROC"
+  },
+  {
+    "abbreviation": "",
+    "city": "DUSSELDORF",
+    "country": "GERMANY",
+    "latitude": 51.17074,
+    "longitude": 6.91853,
+    "name": "DUS-ELL"
+  },
+  {
+    "abbreviation": "",
+    "city": "COLOGNE",
+    "country": "GERMANY",
+    "latitude": 50.88612,
+    "longitude": 6.91188,
+    "name": "CGN-MAX"
+  },
+  {
+    "abbreviation": "",
+    "city": "BONN",
+    "country": "GERMANY",
+    "latitude": 50.7414,
+    "longitude": 7.06956,
+    "name": "BNJ-BRU"
+  },
+  {
+    "abbreviation": "",
+    "city": "PLAIDT",
+    "country": "GERMANY",
+    "latitude": 50.37666667,
+    "longitude": 7.393055556,
+    "name": "PLT-KOB"
+  },
+  {
+    "abbreviation": "",
+    "city": "KATZENELNBOGEN",
+    "country": "GERMANY",
+    "latitude": 50.27599,
+    "longitude": 7.98105,
+    "name": "KTZ-HOH"
+  },
+  {
+    "abbreviation": "",
+    "city": "UTRECHT",
+    "country": "NETHERLANDS",
+    "latitude": 52.12342222,
+    "longitude": 5.278352778,
+    "name": "UTC-STE"
+  },
+  {
+    "abbreviation": "",
+    "city": "EDE",
+    "country": "NETHERLANDS",
+    "latitude": 52.04456944,
+    "longitude": 5.614180556,
+    "name": "DEE-ARG"
+  },
+  {
+    "abbreviation": "",
+    "city": "FRANKFURT",
+    "country": "GERMANY",
+    "latitude": 50.144014,
+    "longitude": 8.557517,
+    "name": "FRA-SCH"
+  },
+  {
+    "abbreviation": "",
+    "city": "WROTHAM",
+    "country": "UNITED KINGDOM",
+    "latitude": 51.30713056,
+    "longitude": 0.324536111,
+    "name": "WRT-LON"
+  },
+  {
+    "abbreviation": "POSTLING",
+    "city": "STONE FARM",
+    "country": "UNITED KINGDOM",
+    "latitude": 51.09254167,
+    "longitude": 1.120455556,
+    "name": "PSN-STO"
+  },
+  {
+    "abbreviation": "",
+    "city": "CALAIS",
+    "country": "FRANCE",
+    "latitude": 50.92644167,
+    "longitude": 1.850663889,
+    "name": "CQF-GRE"
+  },
+  {
+    "abbreviation": "",
+    "city": "WITTES",
+    "country": "FRANCE",
+    "latitude": 50.66678889,
+    "longitude": 2.405661111,
+    "name": "WTS-HAL"
+  },
+  {
+    "abbreviation": "",
+    "city": "WILLERVAL",
+    "country": "FRANCE",
+    "latitude": 50.37771111,
+    "longitude": 2.852547222,
+    "name": "WIV-WIV"
+  },
+  {
+    "abbreviation": "",
+    "city": "ETRICOURT",
+    "country": "FRANCE",
+    "latitude": 50.04993333,
+    "longitude": 2.99945,
+    "name": "ETC-JAC"
+  },
+  {
+    "abbreviation": "",
+    "city": "VAUCHELLES",
+    "country": "FRANCE",
+    "latitude": 49.59233889,
+    "longitude": 2.980772222,
+    "name": "VCS-VCS"
+  },
+  {
+    "abbreviation": "",
+    "city": "NOGENT SUR OISE",
+    "country": "FRANCE",
+    "latitude": 49.26771667,
+    "longitude": 2.487638889,
+    "name": "NGT-SOM"
+  },
+  {
+    "abbreviation": "",
+    "city": "HAMBURG",
+    "country": "GERMANY",
+    "latitude": 53.54775861,
+    "longitude": 10.04398691,
+    "name": "HAMBURG (SÜDERSTRASSE)"
+  },
+  {
+    "abbreviation": "HAMBURG-LUMEN",
+    "city": "HAMBURG",
+    "country": "GERMANY",
+    "latitude": 53.55090278,
+    "longitude": 10.04648611,
+    "name": "HAMBURG (WENDENSTRASSE)"
+  },
+  {
+    "abbreviation": "",
+    "city": "MONTCEAUX",
+    "country": "FRANCE",
+    "latitude": 48.56502,
+    "longitude": 2.47734,
+    "name": "MNTCFRAA"
+  },
+  {
+    "abbreviation": "",
+    "city": "SOUPPES SUR LOING",
+    "country": "FRANCE",
+    "latitude": 48.17969,
+    "longitude": 2.72407,
+    "name": "SPSLFRAA"
+  },
+  {
+    "abbreviation": "",
+    "city": "BONNY SUR LOIRE",
+    "country": "FRANCE",
+    "latitude": 47.58603,
+    "longitude": 2.83297,
+    "name": "BYSLFRAA"
+  },
+  {
+    "abbreviation": "",
+    "city": "JOUET SUR LAUBOIS",
+    "country": "FRANCE",
+    "latitude": 47.04224,
+    "longitude": 3.02978,
+    "name": "JSIAFRAA"
+  },
+  {
+    "abbreviation": "",
+    "city": "ST. MARTIN DES LAIS",
+    "country": "FRANCE",
+    "latitude": 46.66415,
+    "longitude": 3.63762,
+    "name": "SMDLFRAB"
+  },
+  {
+    "abbreviation": "",
+    "city": "VENDENESSE LES CHARROLLES",
+    "country": "FRANCE",
+    "latitude": 46.43829,
+    "longitude": 4.32165,
+    "name": "VNLCFRAA"
+  },
+  {
+    "abbreviation": "",
+    "city": "MONTMERLE SUR SAONE",
+    "country": "FRANCE",
+    "latitude": 46.09465,
+    "longitude": 4.76337,
+    "name": "MTSSFRAA"
+  },
+  {
+    "abbreviation": "",
+    "city": "LYON",
+    "country": "FRANCE",
+    "latitude": 45.73885,
+    "longitude": 4.88987,
+    "name": "LYONFRCI"
+  },
+  {
+    "abbreviation": "",
+    "city": "SAULT BRENAZ",
+    "country": "FRANCE",
+    "latitude": 45.8675,
+    "longitude": 5.39115,
+    "name": "SLBRFRAC"
+  },
+  {
+    "abbreviation": "",
+    "city": "LAVOURS",
+    "country": "FRANCE",
+    "latitude": 45.80715,
+    "longitude": 5.7747,
+    "name": "LVURFRAA"
+  },
+  {
+    "abbreviation": "SH96A007",
+    "city": "GYOR",
+    "country": "HUNGARY",
+    "latitude": 47.683948,
+    "longitude": 17.639746,
+    "name": "GYR-613"
+  },
+  {
+    "abbreviation": "SH34A006",
+    "city": "TATABANYA",
+    "country": "HUNGARY",
+    "latitude": 47.586689,
+    "longitude": 18.392134,
+    "name": "TBY-1694"
+  },
+  {
+    "abbreviation": "",
+    "city": "POSTOJNA",
+    "country": "SLOVENIA",
+    "latitude": 45.77429,
+    "longitude": 14.21378,
+    "name": "PTJ-001"
+  },
+  {
+    "abbreviation": "",
+    "city": "NOVA GORICA",
+    "country": "SLOVENIA",
+    "latitude": 45.95571,
+    "longitude": 13.64827,
+    "name": "NGA-001"
+  },
+  {
+    "abbreviation": "DAN34692A.RACKSP*GER",
+    "city": "GERNSHEIM",
+    "country": "GERMANY",
+    "latitude": 49.74656,
+    "longitude": 8.55191,
+    "name": "GER"
+  },
+  {
+    "abbreviation": "DAN34693A.RACKSP*ROL",
+    "city": "ROLLBACH",
+    "country": "GERMANY",
+    "latitude": 49.77501,
+    "longitude": 9.23639,
+    "name": "ROL"
+  },
+  {
+    "abbreviation": "DAN34694A.RACKSP*KLM",
+    "city": "KLEINLANGHEIM",
+    "country": "GERMANY",
+    "latitude": 49.77419,
+    "longitude": 10.27337,
+    "name": "KLM"
+  },
+  {
+    "abbreviation": "DAN34695A.RACKSP*NBG",
+    "city": "NURNBERG",
+    "country": "GERMANY",
+    "latitude": 49.45393,
+    "longitude": 11.06353,
+    "name": "NBG"
+  },
+  {
+    "abbreviation": "DAN34696A.RACKSP*ESC",
+    "city": "ESCHENFELDEN",
+    "country": "GERMANY",
+    "latitude": 49.58366,
+    "longitude": 11.61522,
+    "name": "ESC"
+  },
+  {
+    "abbreviation": "DAN34697A.RACKSP*BOR",
+    "city": "BOR",
+    "country": "CZECH REPUBLIC",
+    "latitude": 49.69761,
+    "longitude": 12.79364,
+    "name": "BOR"
+  },
+  {
+    "abbreviation": "DAN34698A.RACKSP*MLA",
+    "city": "MLADOTICE",
+    "country": "CZECH REPUBLIC",
+    "latitude": 49.97702,
+    "longitude": 13.36371,
+    "name": "MLA"
+  },
+  {
+    "abbreviation": "DAN34699A.RACKSP*HOS",
+    "city": "HOSPOZIN",
+    "country": "CZECH REPUBLIC",
+    "latitude": 50.31751,
+    "longitude": 14.17408,
+    "name": "HOS"
+  },
+  {
+    "abbreviation": "",
+    "city": "UNKNOWN",
+    "country": "NETHERLANDS",
+    "latitude": null,
+    "longitude": null,
+    "name": "ORANGE BUSINESS SYSTEMS NL"
+  },
+  {
+    "abbreviation": "",
+    "city": "VERNEGUES",
+    "country": "FRANCE",
+    "latitude": 43.68873,
+    "longitude": 5.20578,
+    "name": "VRNGFRAB"
+  },
+  {
+    "abbreviation": "CDRSFRAA",
+    "city": "CADEROUSSE",
+    "country": "FRANCE",
+    "latitude": 44.09501,
+    "longitude": 4.72864,
+    "name": "CDRSFRAB"
+  },
+  {
+    "abbreviation": "",
+    "city": "SAULCE SUR RHONE",
+    "country": "FRANCE",
+    "latitude": 44.72061,
+    "longitude": 4.77624,
+    "name": "SLSRFRAA"
+  },
+  {
+    "abbreviation": "ADNCFRAB",
+    "city": "ANDANCETTE",
+    "country": "FRANCE",
+    "latitude": 45.2446,
+    "longitude": 4.80498,
+    "name": "ADNCFRAA"
+  },
+  {
+    "abbreviation": "VNSXFRAB",
+    "city": "LYON",
+    "country": "FRANCE",
+    "latitude": 45.72322,
+    "longitude": 4.86346,
+    "name": "LYONFRAE"
+  },
+  {
+    "abbreviation": "",
+    "city": "GRENOBLE",
+    "country": "FRANCE",
+    "latitude": 45.16836,
+    "longitude": 5.715,
+    "name": "GRNBFRAI"
+  },
+  {
+    "abbreviation": "",
+    "city": "CHAMBERY-MODULO",
+    "country": "FRANCE",
+    "latitude": 45.587503,
+    "longitude": 5.883347,
+    "name": "LMSRFR01"
+  },
+  {
+    "abbreviation": "",
+    "city": "ARGONAY",
+    "country": "FRANCE",
+    "latitude": 45.93699,
+    "longitude": 6.143,
+    "name": "ARNYFR01"
+  },
+  {
+    "abbreviation": "",
+    "city": "ZUHR",
+    "country": "GERMANY",
+    "latitude": 53.43316,
+    "longitude": 11.04033,
+    "name": "ZUH-WIE"
+  },
+  {
+    "abbreviation": "",
+    "city": "GARLIN",
+    "country": "GERMANY",
+    "latitude": 53.18416,
+    "longitude": 11.647,
+    "name": "GAR-MUE"
+  },
+  {
+    "abbreviation": "",
+    "city": "FRIESACK",
+    "country": "GERMANY",
+    "latitude": 52.76944,
+    "longitude": 12.51843,
+    "name": "FRI-HAU"
+  },
+  {
+    "abbreviation": "",
+    "city": "VELTEN",
+    "country": "GERMANY",
+    "latitude": 52.66578,
+    "longitude": 13.2096,
+    "name": "VEL-001"
+  },
+  {
+    "abbreviation": "",
+    "city": "BIELINEK",
+    "country": "POLAND",
+    "latitude": 52.94177,
+    "longitude": 14.14737,
+    "name": "BIK-001"
+  },
+  {
+    "abbreviation": "",
+    "city": "LUPOWO",
+    "country": "POLAND",
+    "latitude": 52.70451,
+    "longitude": 15.12711,
+    "name": "LOW-001"
+  },
+  {
+    "abbreviation": "",
+    "city": "WIERZBNO",
+    "country": "POLAND",
+    "latitude": 52.56527,
+    "longitude": 15.79074,
+    "name": "WIZ-001"
+  },
+  {
+    "abbreviation": "",
+    "city": "NOVO MESTO",
+    "country": "SLOVENIA",
+    "latitude": 45.80518,
+    "longitude": 15.16562,
+    "name": "SI-NM"
+  },
+  {
+    "abbreviation": "FRA",
+    "city": "FRANKFURT",
+    "country": "GERMANY",
+    "latitude": 50.118405,
+    "longitude": 8.73251,
+    "name": "FRANKFURT"
+  },
+  {
+    "abbreviation": "TAR",
+    "city": "TARTU",
+    "country": "ESTONIA",
+    "latitude": 58.383146,
+    "longitude": 26.71986,
+    "name": "TARTU"
+  },
+  {
+    "abbreviation": "",
+    "city": "PUSZTASZABOLCS",
+    "country": "HUNGARY",
+    "latitude": 47.140888,
+    "longitude": 18.762166,
+    "name": "PSZ"
+  },
+  {
+    "abbreviation": "",
+    "city": "RETSZILAS",
+    "country": "HUNGARY",
+    "latitude": 46.814373,
+    "longitude": 18.601791,
+    "name": "RTS"
+  },
+  {
+    "abbreviation": "",
+    "city": "DOMBOVAR",
+    "country": "HUNGARY",
+    "latitude": 46.369646,
+    "longitude": 18.148158,
+    "name": "DBV"
+  },
+  {
+    "abbreviation": "",
+    "city": "CSURGO",
+    "country": "HUNGARY",
+    "latitude": 46.26147,
+    "longitude": 17.09201,
+    "name": "CSU"
+  },
+  {
+    "abbreviation": "",
+    "city": "VARAZDIN",
+    "country": "CROATIA",
+    "latitude": 46.30828,
+    "longitude": 16.33921,
+    "name": "VRZ"
+  },
+  {
+    "abbreviation": "",
+    "city": "KOMIN",
+    "country": "CROATIA",
+    "latitude": 46.003193,
+    "longitude": 16.285113,
+    "name": "KMI"
+  },
+  {
+    "abbreviation": "SOF2",
+    "city": "SOFIA",
+    "country": "BULGARIA",
+    "latitude": 42.67555498,
+    "longitude": 23.40124234,
+    "name": "SOFIA SO2 (EQUINIX)"
+  },
+  {
+    "abbreviation": "LJU",
+    "city": "LJUBLJANA",
+    "country": "SLOVENIA",
+    "latitude": 46.050171,
+    "longitude": 14.46033,
+    "name": "LJUBLJANA 1"
+  },
+  {
+    "abbreviation": "",
+    "city": "ZAGREB",
+    "country": "CROATIA",
+    "latitude": 45.81509751,
+    "longitude": 16.042559,
+    "name": "ZAGREB 2"
+  },
+  {
+    "abbreviation": "POZ 1",
+    "city": "POZNAN",
+    "country": "POLAND",
+    "latitude": 52.40687,
+    "longitude": 16.953051,
+    "name": "POZNAN 1"
+  },
+  {
+    "abbreviation": "BUC2",
+    "city": "BUCHAREST",
+    "country": "ROMANIA",
+    "latitude": 44.43842466,
+    "longitude": 26.05176086,
+    "name": "BUCHAREST 2"
+  },
+  {
+    "abbreviation": "",
+    "city": "PERNIK",
+    "country": "BULGARIA",
+    "latitude": 42.60234,
+    "longitude": 23.02884,
+    "name": "BG-PK"
+  },
+  {
+    "abbreviation": "",
+    "city": "KYUSTENDIL",
+    "country": "BULGARIA",
+    "latitude": 42.281341,
+    "longitude": 22.687655,
+    "name": "BG-KD"
+  },
+  {
+    "abbreviation": "",
+    "city": "BLAGOEVGRAD",
+    "country": "BULGARIA",
+    "latitude": 42.022236,
+    "longitude": 23.098163,
+    "name": "BG-BLG"
+  },
+  {
+    "abbreviation": "",
+    "city": "SANDANSKI",
+    "country": "BULGARIA",
+    "latitude": 41.560896,
+    "longitude": 23.277104,
+    "name": "BG-SD"
+  },
+  {
+    "abbreviation": "",
+    "city": "N. PETRITSI",
+    "country": "GREECE",
+    "latitude": 41.272733,
+    "longitude": 23.300532,
+    "name": "GR-PTR"
+  },
+  {
+    "abbreviation": "",
+    "city": "EFKARPIA",
+    "country": "GREECE",
+    "latitude": 41.074588,
+    "longitude": 22.908381,
+    "name": "GR-EFK"
+  },
+  {
+    "abbreviation": "",
+    "city": "MALI POZAREVAC",
+    "country": "SERBIA",
+    "latitude": 44.566697,
+    "longitude": 20.660428,
+    "name": "SR-MP"
+  },
+  {
+    "abbreviation": "",
+    "city": "BATOCINA",
+    "country": "SERBIA",
+    "latitude": 44.152742,
+    "longitude": 21.112078,
+    "name": "SR-BN"
+  },
+  {
+    "abbreviation": "",
+    "city": "RAZANJ",
+    "country": "SERBIA",
+    "latitude": 43.681444,
+    "longitude": 21.546169,
+    "name": "SR-RA"
+  },
+  {
+    "abbreviation": "",
+    "city": "NIS",
+    "country": "SERBIA",
+    "latitude": 43.359664,
+    "longitude": 21.825528,
+    "name": "SR-NI"
+  },
+  {
+    "abbreviation": "",
+    "city": "DIMITROVGRAD",
+    "country": "SERBIA",
+    "latitude": 43.00325,
+    "longitude": 22.810456,
+    "name": "SR-DG"
+  },
+  {
+    "abbreviation": "",
+    "city": "AMSTERDAM",
+    "country": "NETHERLANDS",
+    "latitude": 52.27572737,
+    "longitude": 4.743063806,
+    "name": "AMS8 INTERXION"
+  },
+  {
+    "abbreviation": "",
+    "city": "NOVI SAD ATRIUM",
+    "country": "SERBIA",
+    "latitude": 45.237897,
+    "longitude": 19.830542,
+    "name": "SR-NS-AT"
+  },
+  {
+    "abbreviation": "",
+    "city": "ILOK",
+    "country": "CROATIA",
+    "latitude": 45.22286,
+    "longitude": 19.40156,
+    "name": "HR-IL"
+  },
+  {
+    "abbreviation": "",
+    "city": "VINKOVCI",
+    "country": "CROATIA",
+    "latitude": 45.289701,
+    "longitude": 18.805091,
+    "name": "HR-VI"
+  },
+  {
+    "abbreviation": "",
+    "city": "SLAVONSKI BROD",
+    "country": "CROATIA",
+    "latitude": 45.15721,
+    "longitude": 18.01243,
+    "name": "HR-SB"
+  },
+  {
+    "abbreviation": "",
+    "city": "OKUCANI",
+    "country": "CROATIA",
+    "latitude": 45.22841884,
+    "longitude": 17.20743379,
+    "name": "HR-DU"
+  },
+  {
+    "abbreviation": "",
+    "city": "SISAK",
+    "country": "CROATIA",
+    "latitude": 45.43602275,
+    "longitude": 16.40885035,
+    "name": "HR-SI"
+  },
+  {
+    "abbreviation": "",
+    "city": "BELGRADE",
+    "country": "SERBIA",
+    "latitude": 44.81141383,
+    "longitude": 20.39871378,
+    "name": "BELGRADE"
+  },
+  {
+    "abbreviation": "",
+    "city": "RUSE",
+    "country": "BULGARIA",
+    "latitude": 43.857959,
+    "longitude": 25.974813,
+    "name": "BG-RS"
+  },
+  {
+    "abbreviation": "",
+    "city": "BYALA",
+    "country": "BULGARIA",
+    "latitude": 43.459625,
+    "longitude": 25.736101,
+    "name": "BG-BYL"
+  },
+  {
+    "abbreviation": "",
+    "city": "SVISHTOV",
+    "country": "BULGARIA",
+    "latitude": 43.617876,
+    "longitude": 25.343593,
+    "name": "BG-SV"
+  },
+  {
+    "abbreviation": "",
+    "city": "PLEVEN",
+    "country": "BULGARIA",
+    "latitude": 43.407391,
+    "longitude": 24.620699,
+    "name": "BG-PL"
+  },
+  {
+    "abbreviation": "",
+    "city": "BYALA SLATINA",
+    "country": "BULGARIA",
+    "latitude": 43.471048,
+    "longitude": 23.94114,
+    "name": "BG-BS"
+  },
+  {
+    "abbreviation": "",
+    "city": "MONTANA",
+    "country": "BULGARIA",
+    "latitude": 43.407876,
+    "longitude": 23.22765,
+    "name": "BG-MO"
+  },
+  {
+    "abbreviation": "",
+    "city": "BUCHIN PROHOD",
+    "country": "BULGARIA",
+    "latitude": 42.97329659,
+    "longitude": 23.14018466,
+    "name": "BG-BP"
+  },
+  {
+    "abbreviation": "",
+    "city": "SARAJEVO",
+    "country": "BOSNIA AND HERZEGOVINA",
+    "latitude": null,
+    "longitude": null,
+    "name": "UTIC POP BOSNIA"
+  },
+  {
+    "abbreviation": "",
+    "city": "TREMBLAY",
+    "country": "FRANCE",
+    "latitude": 48.98237,
+    "longitude": 2.51933,
+    "name": "PARSFRDZ"
+  },
+  {
+    "abbreviation": "",
+    "city": "MARQUÉGLISE",
+    "country": "FRANCE",
+    "latitude": 49.521893,
+    "longitude": 2.762086,
+    "name": "MRGGFRAA"
+  },
+  {
+    "abbreviation": "",
+    "city": "TRESCAULT",
+    "country": "FRANCE",
+    "latitude": 50.0918889,
+    "longitude": 3.089166667,
+    "name": "TRSCFRAC"
+  },
+  {
+    "abbreviation": "",
+    "city": "NAZARETH",
+    "country": "BELGIUM",
+    "latitude": 50.97229,
+    "longitude": 3.654391,
+    "name": "NZRTBGAC"
+  },
+  {
+    "abbreviation": "",
+    "city": "LILLE",
+    "country": "FRANCE",
+    "latitude": 50.584099,
+    "longitude": 3.136501,
+    "name": "LILLFRAL"
+  },
+  {
+    "abbreviation": "COP",
+    "city": "COPENHAGEN",
+    "country": "DENMARK",
+    "latitude": 55.626137,
+    "longitude": 12.578992,
+    "name": "COPENHAGEN"
+  },
+  {
+    "abbreviation": "HEL",
+    "city": "HELSINKI",
+    "country": "FINLAND",
+    "latitude": 60.178353,
+    "longitude": 24.834407,
+    "name": "HELSINKI"
+  },
+  {
+    "abbreviation": "COR",
+    "city": "CORK",
+    "country": "IRELAND",
+    "latitude": 51.90362538,
+    "longitude": -8.512314371,
+    "name": "CORK"
+  },
+  {
+    "abbreviation": "",
+    "city": "SINES",
+    "country": "PORTUGAL",
+    "latitude": 37.994858,
+    "longitude": -8.830627,
+    "name": "SINES"
+  },
+  {
+    "abbreviation": "BOD",
+    "city": "BORDEAUX",
+    "country": "FRANCE",
+    "latitude": 44.89603713,
+    "longitude": -0.6114665432,
+    "name": "BORDEAUX (BX1)"
+  },
+  {
+    "abbreviation": "",
+    "city": "KOLIN",
+    "country": "CZECH REPUBLIC",
+    "latitude": 50.0187517,
+    "longitude": 15.2084614,
+    "name": "KOLNZS"
+  },
+  {
+    "abbreviation": "",
+    "city": "HRADEC KRALOVE",
+    "country": "CZECH REPUBLIC",
+    "latitude": 50.2145997,
+    "longitude": 15.8107667,
+    "name": "HRKRHN"
+  },
+  {
+    "abbreviation": "",
+    "city": "LETOHRAD",
+    "country": "CZECH REPUBLIC",
+    "latitude": 50.0312517,
+    "longitude": 16.51064,
+    "name": "LETOHR"
+  },
+  {
+    "abbreviation": "",
+    "city": "PIOTRKOWICE",
+    "country": "POLAND",
+    "latitude": 52.139556,
+    "longitude": 16.730056,
+    "name": "HP012"
+  },
+  {
+    "abbreviation": "",
+    "city": "LESZNO",
+    "country": "POLAND",
+    "latitude": 51.848784,
+    "longitude": 16.580051,
+    "name": "HP013"
+  },
+  {
+    "abbreviation": "",
+    "city": "MASLOWO",
+    "country": "POLAND",
+    "latitude": 51.609889,
+    "longitude": 16.835556,
+    "name": "HP014"
+  },
+  {
+    "abbreviation": "",
+    "city": "WROCLAW",
+    "country": "POLAND",
+    "latitude": 51.096329,
+    "longitude": 17.037494,
+    "name": "HD001"
+  },
+  {
+    "abbreviation": "",
+    "city": "KLODZKO",
+    "country": "POLAND",
+    "latitude": 50.450956,
+    "longitude": 16.658329,
+    "name": "HD034"
+  },
+  {
+    "abbreviation": "THE",
+    "city": "THESSALONIKI",
+    "country": "GREECE",
+    "latitude": 40.662632,
+    "longitude": 22.860255,
+    "name": "THESSALONIKI"
+  },
+  {
+    "abbreviation": "LOU",
+    "city": "LOUROS",
+    "country": "GREECE",
+    "latitude": 39.250448,
+    "longitude": 20.865441,
+    "name": "LOUROS"
+  },
+  {
+    "abbreviation": "",
+    "city": "BOSTON",
+    "country": "UNITED STATES",
+    "latitude": null,
+    "longitude": null,
+    "name": "INTERNET2 BOSTON"
+  },
+  {
+    "abbreviation": "CRO",
+    "city": "CROTONE",
+    "country": "ITALY",
+    "latitude": 39.122865,
+    "longitude": 17.095275,
+    "name": "CROTONE"
+  },
+  {
+    "abbreviation": "",
+    "city": "MILAN",
+    "country": "ITALY",
+    "latitude": null,
+    "longitude": null,
+    "name": "GARR MILAN LANCETTI"
+  },
+  {
+    "abbreviation": "PRE",
+    "city": "PREVEZA",
+    "country": "GREECE",
+    "latitude": 38.988856,
+    "longitude": 20.727275,
+    "name": "PREVEZA"
+  },
+  {
+    "abbreviation": "",
+    "city": "LONDON",
+    "country": "UNITED KINGDOM",
+    "latitude": null,
+    "longitude": null,
+    "name": "EQUINIX LONDON"
+  },
+  {
+    "abbreviation": "",
+    "city": "ALCÁCER DO SAL",
+    "country": "PORTUGAL",
+    "latitude": 38.369826,
+    "longitude": -8.504795,
+    "name": "65AL01"
+  }
+]
diff --git a/test/data/scid-current.json b/test/data/scid-current.json
new file mode 100644
index 0000000000000000000000000000000000000000..5970934cd1dc1f102cdc514f2c612ff1dbf8236e
--- /dev/null
+++ b/test/data/scid-current.json
@@ -0,0 +1,47507 @@
+[
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661896,
+    "monitored": false,
+    "name": "SCION-PAR-FR",
+    "scid": "001e4416-86e4-4d97-9aad-8e9445e808d7",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00140",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT-IT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.fra.de.geant.net",
+        "interface": "ae13"
+      }
+    ],
+    "imsid": 679044,
+    "monitored": true,
+    "name": "FRA-PAR-BRIDGE-LAG",
+    "scid": "001fd553-67ff-48b4-846f-66a4826da403",
+    "service_type": "ETHERNET",
+    "sid": "GA-01685",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.chi.md.geant.net",
+        "interface": "ae1"
+      }
+    ],
+    "imsid": 713272,
+    "monitored": true,
+    "name": "CHI-CHI-LAG",
+    "scid": "0033b1af-565c-407d-8ef0-02731e4db3db",
+    "service_type": "ETHERNET",
+    "sid": "GA-02015",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "FRA-VIE-PXM-TRUNK",
+    "scid": "003c519f-bed4-4cd9-8c7c-d1525b90e727",
+    "service_type": null,
+    "sid": "DS-36197",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "172.18.15.253/24"
+        ],
+        "hostname": "rt1.kie.ua.geant.net",
+        "interface": "ae2.103"
+      }
+    ],
+    "imsid": 713312,
+    "monitored": false,
+    "name": "DCN-MANAGEMENT-KIE1-UA",
+    "scid": "004ae718-4713-482a-8acb-320baca30538",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00131",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 679042,
+    "monitored": true,
+    "name": "FRA-HAM-LAG",
+    "scid": "0060ea2f-f686-4183-831e-2423da187299",
+    "service_type": "ETHERNET",
+    "sid": "GA-01959",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [],
+    "imsid": 712395,
+    "monitored": true,
+    "name": "MD-VPN-VRR-LJUBLJANA-PSNC-PL",
+    "scid": "006214fb-6d56-45e1-ae50-5cdfb07b5cfa",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01028",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 717108,
+    "monitored": false,
+    "name": "BUD-PRA-RARE-BMS8",
+    "scid": "006ce926-eb53-47ca-a535-f2d0bddc5d0f",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00686",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [],
+    "imsid": 709747,
+    "monitored": true,
+    "name": "GEANT EUMETCAST AP1",
+    "scid": "009b6a12-2cd8-41df-8471-93a751939bc6",
+    "service_type": "EUMETSAT TERRESTRIAL",
+    "sid": "GS-01105",
+    "speed": 322122547200,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662178,
+    "monitored": true,
+    "name": "FRANKFURT-FRANKFURT-1GBE-004(ETH)",
+    "scid": "009e6ec5-f9a0-4c7a-a6ee-7a08ff157783",
+    "service_type": "ETHERNET",
+    "sid": "GA-01605",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "VIX"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/2/5"
+      }
+    ],
+    "imsid": 669236,
+    "monitored": true,
+    "name": "UBUNTUNET LON GN+ LL",
+    "scid": "00d1ac99-ffaa-4aad-9d0b-ceb23131a804",
+    "service_type": "ETHERNET",
+    "sid": "GA-01452",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "KIFU"
+    ],
+    "endpoints": [],
+    "imsid": 709756,
+    "monitored": true,
+    "name": "KIFU EUMETCAST AP1",
+    "scid": "00d886bb-bd6f-4d1b-aa68-ea10cc5e2260",
+    "service_type": "EUMETSAT TERRESTRIAL",
+    "sid": "GS-01111",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "FCCN"
+    ],
+    "endpoints": [],
+    "imsid": 712397,
+    "monitored": true,
+    "name": "MD-VPN-VRR-PARIS-FCT-2-PT",
+    "scid": "00d8dc0a-6db3-470b-ac4a-34fc3a1bb127",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01039",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 679317,
+    "monitored": false,
+    "name": "NE-ESXI-DRAC-PAR-FR",
+    "scid": "01189262-fce3-40a0-8724-d19700bf4c48",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00252",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708228,
+    "monitored": false,
+    "name": "PS-MIL2-IT-OWAMP",
+    "scid": "015d8096-4a82-4ad2-bfbb-e3909befc93f",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00337",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GARR"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.100.14/31",
+          "2001:798::19/126"
+        ],
+        "hostname": "mx1.mil2.it.geant.net",
+        "interface": "ae10.667"
+      }
+    ],
+    "imsid": 661915,
+    "monitored": false,
+    "name": "GARR-AP1-CLS",
+    "scid": "0165a4c7-ec11-4e4b-b3ea-1689a5d0a15f",
+    "service_type": "GEANT CLOUD PEERING",
+    "sid": "GS-00606",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae14"
+      }
+    ],
+    "imsid": 659373,
+    "monitored": true,
+    "name": "MAD-DE-CIX-LAG",
+    "scid": "01a59152-95f8-4c63-bf50-55a6efb86716",
+    "service_type": "ETHERNET",
+    "sid": "GA-01779",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-0/0/7"
+      }
+    ],
+    "imsid": 732325,
+    "monitored": true,
+    "name": "SCION1ILO.FRA.DE-INTERNAL-LL",
+    "scid": "01aaf261-0b82-4007-b69c-b7f247643dc8",
+    "service_type": "ETHERNET",
+    "sid": "GA-02195",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "DUB-LON-LAG",
+    "scid": "01f3a3cc-fa2b-4ad9-9c61-e8c3372bca13",
+    "service_type": null,
+    "sid": "DA-23835",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 730601,
+    "monitored": true,
+    "name": "COR-COR-LAG",
+    "scid": "01fbdb3a-e746-4625-953e-387585d930ec",
+    "service_type": "ETHERNET",
+    "sid": "GA-02404",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ARNES"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.241/30",
+          "2001:798:111:1::d/126"
+        ],
+        "hostname": "rt0.lju.si.geant.net",
+        "interface": "lag-21.111"
+      }
+    ],
+    "imsid": 747535,
+    "monitored": true,
+    "name": "ARNES-AP1-LHCONE",
+    "scid": "0204ee59-4ec9-4eb4-b8e3-910f5d8a8aa4",
+    "service_type": "L3-VPN",
+    "sid": "GS-00807",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.PRA.CZ.GEANT2.NET",
+        "port": "ETH-45"
+      },
+      {
+        "hostname": "mx1.pra.cz.geant.net",
+        "interface": "ge-0/3/9.1023"
+      },
+      {
+        "hostname": "mx1.pra.cz.geant.net",
+        "interface": "xe-2/0/2.1023"
+      }
+    ],
+    "imsid": 661779,
+    "monitored": false,
+    "name": "BOD-SDN-PILOT-HOST-ETH2-PRAGUE",
+    "scid": "0230de60-6bd3-4798-99b9-714b895ee7cc",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00103",
+    "speed": 11811160064,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 744731,
+    "monitored": true,
+    "name": "BUCHAREST 2-CHISINAU-LAG-001(GEANT)",
+    "scid": "023e9e14-3e38-4521-8a49-d37b5a3cb792",
+    "service_type": "ETHERNET",
+    "sid": "GA-50053",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SINET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae20.990"
+      },
+      {
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae15.990"
+      }
+    ],
+    "imsid": 738726,
+    "monitored": true,
+    "name": "AMS-MAR-ITER-IFERC-SINET-RENATER-24039",
+    "scid": "025e686e-7979-48cb-9d23-5f77e704f357",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00637",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NISN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "192.84.8.14/30",
+          "2001:798:99:1::1/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae26.204"
+      }
+    ],
+    "imsid": 661526,
+    "monitored": true,
+    "name": "UK-NISN-NEA3R-204",
+    "scid": "026371d6-05e3-48e6-81ec-0a44004996d4",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00922",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.PRA.CZ.GEANT2.NET",
+        "port": "ETH-45"
+      },
+      {
+        "hostname": "mx1.pra.cz.geant.net",
+        "interface": "ge-0/3/9.1024"
+      },
+      {
+        "hostname": "mx1.pra.cz.geant.net",
+        "interface": "xe-2/0/2.1024"
+      }
+    ],
+    "imsid": 661914,
+    "monitored": false,
+    "name": "BOD-SDN-PILOT-HOST-ETH3-PRAGUE",
+    "scid": "02707601-7991-48d7-9784-88bf1c420136",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00104",
+    "speed": 11811160064,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mil2.it.geant.net",
+        "interface": "xe-1/0/6"
+      },
+      {
+        "hostname": "mx1.mil2.it.geant.net",
+        "interface": "xe-1/0/6.2"
+      }
+    ],
+    "imsid": 661742,
+    "monitored": true,
+    "name": "SDX-L2-HOSTD-TO-BR51",
+    "scid": "0282748b-4022-403d-9163-bb0492a4e1d8",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00764",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663106,
+    "monitored": false,
+    "name": "PS-GEN-CH-IDRAC",
+    "scid": "02bec5d5-4388-4ab6-88c2-22c9c1479ed8",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00308",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [],
+    "imsid": 669290,
+    "monitored": true,
+    "name": "BELNET 1GB GN+ LL1",
+    "scid": "02de13c8-2126-4521-959b-913e83e0de37",
+    "service_type": "ETHERNET",
+    "sid": "GA-01362",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "JISC"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.217/30"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/2/6.961"
+      }
+    ],
+    "imsid": 709655,
+    "monitored": false,
+    "name": "JANET-GN-PRACE-1-VPN-PROXY-LONDON-L3VPN",
+    "scid": "02e3f795-fb70-491b-a98f-25097089ea5b",
+    "service_type": "MD-VPN (PROXY)",
+    "sid": "GS-01065",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663236,
+    "monitored": false,
+    "name": "ASNET-TEST-VLAN-E2E",
+    "scid": "02eed6ed-1a37-483f-b117-9700458eba40",
+    "service_type": "GEANT IP",
+    "sid": "GS-00429",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/2/2"
+      }
+    ],
+    "imsid": 733209,
+    "monitored": true,
+    "name": "LONDON 2-LONDON 2-10GBE-028(GEANT)",
+    "scid": "02fe0dda-4e19-44fa-be82-ea14b607a917",
+    "service_type": "ETHERNET",
+    "sid": "GA-01325",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GRENA"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae20"
+      }
+    ],
+    "imsid": 718128,
+    "monitored": true,
+    "name": "GRENA-AP1-LAG",
+    "scid": "0309a79c-b66b-457a-a49a-9e016bfca27a",
+    "service_type": "ETHERNET",
+    "sid": "GA-01860",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "IUCC"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.93/30",
+          "2001:798:1::71/126"
+        ],
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae21.333"
+      }
+    ],
+    "imsid": 730581,
+    "monitored": true,
+    "name": "IUCC-AP1-IAS",
+    "scid": "03166d35-404a-4121-83cf-fe4844d98116",
+    "service_type": "GWS - INDIRECT",
+    "sid": "GS-00532",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662396,
+    "monitored": true,
+    "name": "FRANKFURT-FRANKFURT-10GBE-092(GEANT)",
+    "scid": "03291fae-4bcc-4976-bbde-c9d56a04f5c5",
+    "service_type": "ETHERNET",
+    "sid": "GA-02130",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.lon2.uk.geant.net",
+        "interface": "lag-1"
+      }
+    ],
+    "imsid": 738841,
+    "monitored": true,
+    "name": "LON2-LON2-800G-LAG",
+    "scid": "03344604-d6ce-49aa-af06-cfb3a8acc083",
+    "service_type": "ETHERNET",
+    "sid": "GA-02469",
+    "speed": 858993459200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae6"
+      }
+    ],
+    "imsid": 729435,
+    "monitored": true,
+    "name": "BRA-BUD LAG 100G",
+    "scid": "0336ce95-0865-4e10-8297-1852351b5cb3",
+    "service_type": "ETHERNET",
+    "sid": "GA-01910",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "mx1.buc.ro - Traffic - ae12 - LAG CUSTOMER RENAM SRF18037 | *** CLS Peering Only ***",
+    "scid": "033906d9-9479-46bc-98bd-bed8fedebab0",
+    "service_type": null,
+    "sid": "GA-01933",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5.3140"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae12.3140"
+      }
+    ],
+    "imsid": 705918,
+    "monitored": true,
+    "name": "LON-LON-GEANTOPEN-NORDUNET-SINGAREN-CAE1-19074-VL3140",
+    "scid": "0352e3a7-96df-40e6-b67a-a0c8a97ef10a",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00975",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/1/2"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-4/1/4"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-4/1/4.1"
+      }
+    ],
+    "imsid": 659120,
+    "monitored": true,
+    "name": "LONDON-LONDON-100GBE-013(ETH)",
+    "scid": "035f3ea4-e9f7-4fab-ae02-1da086b3066f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01449",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 724613,
+    "monitored": true,
+    "name": "GEN-LON-400G-LAG",
+    "scid": "0365cdfb-6cf0-4011-99ba-d0d3845ba691",
+    "service_type": "ETHERNET",
+    "sid": "GA-02227",
+    "speed": 429496729600,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "bud-pra",
+    "scid": "0368b49c-2f07-49e6-83da-1edffbfe5e03",
+    "service_type": null,
+    "sid": "DS-29949",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [],
+    "imsid": 732598,
+    "monitored": true,
+    "name": "PIONIER-BGP-LU-COC-AP2",
+    "scid": "036cbd31-a314-40d5-a76b-2d68d568e6cb",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01056",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GOOGLE"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "74.125.146.213/31",
+          "2001:4860:1:1::2ea7/127"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae13.0"
+      }
+    ],
+    "imsid": 731196,
+    "monitored": false,
+    "name": "GOOGLE-FRA15-15169-DE-TO-BE-DELETED",
+    "scid": "037d5ea2-86d1-475c-a866-a5c8a5178fc2",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "TS-00934",
+    "speed": 32212254720,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GOOGLE"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae13"
+      }
+    ],
+    "imsid": 733500,
+    "monitored": true,
+    "name": "GOOGLE-AMS-PNI-1-LAG",
+    "scid": "037dff5d-fbde-4c1a-9a7b-efd817e4aeb6",
+    "service_type": "ETHERNET",
+    "sid": "GA-02450",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.AM.OFFICE",
+        "port": "GE-1/0/7"
+      }
+    ],
+    "imsid": 658561,
+    "monitored": true,
+    "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-022(ETH)",
+    "scid": "03b28ad6-8d84-4f39-90cd-4c5318c54d4a",
+    "service_type": "ETHERNET",
+    "sid": "GA-01269",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661355,
+    "monitored": false,
+    "name": "LON-GROOVE-3-MANAGEMENT",
+    "scid": "03b75af6-6c90-4889-8b40-cc54649cfe55",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00233",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.53/31",
+          "2001:798:cc::82/126"
+        ],
+        "hostname": "rt1.pra.cz.geant.net",
+        "interface": "ae2.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.52/31",
+          "2001:798:cc::81/126"
+        ],
+        "hostname": "rt0.pra.cz.geant.net",
+        "interface": "lag-2.0"
+      }
+    ],
+    "imsid": 739239,
+    "monitored": true,
+    "name": "PRA-PRA-IPTRUNK",
+    "scid": "03bff316-d89d-49db-9fba-8b4eae6dd764",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02545",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "ae15"
+      }
+    ],
+    "imsid": 658690,
+    "monitored": false,
+    "name": "LON2-SEC-ESX21-VM-TRAFFIC",
+    "scid": "03d2213d-0c6b-4952-98d4-68b2f329a989",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01703",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "lag-2"
+      }
+    ],
+    "imsid": 745506,
+    "monitored": true,
+    "name": "ATH2-MIL2-LAG",
+    "scid": "0412f0c0-6563-4c55-a8c4-042165afd59f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01795",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SURF"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/3/3.1338"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae15.1338"
+      }
+    ],
+    "imsid": 726377,
+    "monitored": false,
+    "name": "AMS-PAR-SCION-SURF-SCION-23013",
+    "scid": "041394e0-28f1-4a19-972d-34d0f91d699d",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02264",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "MICROSOFT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "DIGITAL REALTY A-END",
+        "port": "MICROSOFT-LL4 DE133662-1"
+      }
+    ],
+    "imsid": 732177,
+    "monitored": true,
+    "name": "MICROSOFT-EXPRESSROUTE-FRA-LL4",
+    "scid": "044594e9-ef4b-49f1-99e5-51544d06dc93",
+    "service_type": "ETHERNET",
+    "sid": "DE133662-1",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 735877,
+    "monitored": true,
+    "name": "AMSTERDAM-AMSTERDAM-10GBE-070(GEANT)",
+    "scid": "044b1c19-bffd-4375-9b25-d7fb0cab2111",
+    "service_type": "ETHERNET",
+    "sid": "GA-01569",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662252,
+    "monitored": true,
+    "name": "SOFIA-SOFIA-1GBE-006(ETH)",
+    "scid": "046c2c42-74bc-45a1-aaa9-dcbac9da7733",
+    "service_type": "ETHERNET",
+    "sid": "GA-01249",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "RESTENA"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.205/30",
+          "2001:798:1::ed/126"
+        ],
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-22.333"
+      }
+    ],
+    "imsid": 744074,
+    "monitored": true,
+    "name": "RESTENA-AP2-IAS",
+    "scid": "046c358c-9230-4322-a876-838482ae63db",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00586",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.123.233/29"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae1.300"
+      }
+    ],
+    "imsid": 739093,
+    "monitored": false,
+    "name": "DTN-PROJECT-PAR-FR",
+    "scid": "04843eec-b9c5-4dd1-8a43-7f874ee05891",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00145",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661609,
+    "monitored": false,
+    "name": "INBAND-MANAGEMENT-SW4.LON.UK",
+    "scid": "049f0338-ab2a-48a0-bbc8-fe2be51fbac9",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00199",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae15.989"
+      },
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae13.989"
+      }
+    ],
+    "imsid": 738302,
+    "monitored": true,
+    "name": "GEN-MAR-ESNET-RENATER-24038",
+    "scid": "04a96079-f89a-43a4-a32b-2c5881bd86d4",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02504",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "DE-CIX"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae22"
+      }
+    ],
+    "imsid": 740861,
+    "monitored": true,
+    "name": "DE-CIX-MAR-LAG",
+    "scid": "04e60051-4466-4f09-9cec-208be27aa98e",
+    "service_type": "ETHERNET",
+    "sid": "GA-02205",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 724613,
+    "monitored": true,
+    "name": "GEN-LON-400G-LAG",
+    "scid": "04e72c1a-3b59-46be-9b1e-d26dacde3e61",
+    "service_type": "ETHERNET",
+    "sid": "GA-02228",
+    "speed": 429496729600,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [],
+    "imsid": 709001,
+    "monitored": false,
+    "name": "GRE-MULTICAST-TUNNEL-KMA-KOREA",
+    "scid": "04fa89fa-ec63-44d4-8aa7-c8b02abae4a1",
+    "service_type": "EUMETSAT GRE",
+    "sid": "GS-01082",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.AM.OFFICE",
+        "port": "GE-1/0/1"
+      }
+    ],
+    "imsid": 658360,
+    "monitored": true,
+    "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-005(ETH)",
+    "scid": "05272c5b-bdf3-4cea-a258-2422c55c1b62",
+    "service_type": "ETHERNET",
+    "sid": "GA-01270",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mil2.it.geant.net",
+        "interface": "xe-1/1/3"
+      },
+      {
+        "hostname": "mx1.mil2.it.geant.net",
+        "interface": "xe-1/1/3.1034"
+      }
+    ],
+    "imsid": 661646,
+    "monitored": true,
+    "name": "SDN-BOD-BR53-OF-10-HOST-H-ETH3",
+    "scid": "054016c2-0c6c-451e-868c-20104fcfd58d",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00754",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.fra.de.geant.net",
+        "interface": "xe-0/0/40"
+      }
+    ],
+    "imsid": 716018,
+    "monitored": false,
+    "name": "PS-THROUGHTPUT-TESTER-INTERFACE-10GBE-2",
+    "scid": "056e1335-1735-4b11-88e5-c714ec34e475",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01667",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CESNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.pra.cz.geant.net",
+        "interface": "ae11.400"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.31"
+      }
+    ],
+    "imsid": 725107,
+    "monitored": true,
+    "name": "CESNET-NACIT-EXPRESSROUTE-VLAN400",
+    "scid": "059389c8-1202-4993-8d9a-2f4b975e86a1",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02174",
+    "speed": 225485783040,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SINGAREN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.3925"
+      }
+    ],
+    "imsid": 734582,
+    "monitored": true,
+    "name": "NL-SINGAREN",
+    "scid": "05a882a2-31b9-43a2-81c6-56ab6403a31e",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-02202",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GARR"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae12.4089"
+      },
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.22"
+      }
+    ],
+    "imsid": 707342,
+    "monitored": true,
+    "name": "GARR-ROMA-EXPRESSROUTE-VLAN4089",
+    "scid": "05ae0cfa-d9ee-45ae-b40f-fb8904386e66",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01145",
+    "speed": 332859965440,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CANARIE"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.145/30",
+          "2001:410:101:fa2::2/64"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae19.4040"
+      }
+    ],
+    "imsid": 736735,
+    "monitored": true,
+    "name": "CANARIE-PAR-LHCONE-2",
+    "scid": "05ce1635-9ed0-418a-b891-0db007aea3d9",
+    "service_type": "L3-VPN",
+    "sid": "GS-00810",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 719669,
+    "monitored": false,
+    "name": "UAT-TEST-MS-EXPRESS-ROUTE",
+    "scid": "05eb95db-007d-40f8-94cd-0ce2f5613bd1",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-11113",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663127,
+    "monitored": false,
+    "name": "FRA-GROOVE-1-MANAGEMENT",
+    "scid": "05fc74b0-2c17-4365-9c00-b98b14c1e0fc",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00173",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.63/31",
+          "2001:798:cc::6a/126"
+        ],
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "ae3.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.62/31",
+          "2001:798:cc::69/126"
+        ],
+        "hostname": "rt0.lon2.uk.geant.net",
+        "interface": "lag-1.0"
+      }
+    ],
+    "imsid": 738843,
+    "monitored": true,
+    "name": "LON2-LON2-IPTRUNK",
+    "scid": "060cda59-53cc-4806-a968-9f7022021451",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02470",
+    "speed": 858993459200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 737234,
+    "monitored": false,
+    "name": "PRA-POZ-RARE-BMS9",
+    "scid": "060e09a5-1cd5-4626-8255-bd19a6cbd91a",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02628",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "KIFU"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae10.2804"
+      },
+      {
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae16.977"
+      }
+    ],
+    "imsid": 738341,
+    "monitored": false,
+    "name": "SZTAKI-KIFU-REDIRIS-SLICES-UC3M",
+    "scid": "064ae81a-8cd6-4e63-8167-b5def121b587",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02512",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GOOGLE"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.mil2.it.geant.net",
+        "interface": "ae15"
+      }
+    ],
+    "imsid": 733052,
+    "monitored": true,
+    "name": "GOOGLE-2-15169-IT-LAG",
+    "scid": "065dd9a7-36b2-460f-a52c-5707c9753976",
+    "service_type": "ETHERNET",
+    "sid": "GA-02247",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 744126,
+    "monitored": true,
+    "name": "AMS-BRU-LAG",
+    "scid": "066c31c1-d773-48ce-8d6c-adac7c0b06c0",
+    "service_type": "ETHERNET",
+    "sid": "A-01792",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "equipment": "MAD01-GRV5",
+        "port": "1/1/8"
+      },
+      {
+        "equipment": "MAD01-GRV5",
+        "port": "1/3/8"
+      },
+      {
+        "equipment": "GEN01-GRV9",
+        "port": "1/1/8"
+      },
+      {
+        "equipment": "BOD01-GRV2",
+        "port": "1/1/8"
+      }
+    ],
+    "imsid": 734130,
+    "monitored": true,
+    "name": "BOD-GEN1-ESNET-23093-400G",
+    "scid": "06a8a362-4da9-4384-b8e7-875e626fc12d",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-02337",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 724084,
+    "monitored": true,
+    "name": "LJUBLJANA 2-LJUBLJANA 2-100MB-001(GEANT)",
+    "scid": "06da926a-3b46-4da7-acbb-3e1e1593bf96",
+    "service_type": "ETHERNET",
+    "sid": "GA-01669",
+    "speed": 104857600,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SUNET"
+    ],
+    "endpoints": [],
+    "imsid": 712356,
+    "monitored": true,
+    "name": "MD-VPN-VRR-PARIS-SUNET-1-SE",
+    "scid": "06ec43f6-6536-4ee1-a74f-bc9045dc41ac",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01052",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.por.pt.geant.net",
+        "interface": "ae1"
+      }
+    ],
+    "imsid": 709379,
+    "monitored": true,
+    "name": "LAG-SW1.POR.PT_AE1",
+    "scid": "0707e883-dac3-46e4-9d34-6308d31cc154",
+    "service_type": "ETHERNET",
+    "sid": "GA-02027",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "FCCN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.por.pt.geant.net",
+        "interface": "ae10.1946"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.10"
+      }
+    ],
+    "imsid": 706996,
+    "monitored": true,
+    "name": "FCCN-IPP-EXPRESSROUTE-VLAN1946",
+    "scid": "072afc6c-9f97-4878-b322-9d032a04673c",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01143",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae11.3061"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28.3061"
+      }
+    ],
+    "imsid": 744387,
+    "monitored": true,
+    "name": "OFCFODMOB-02631",
+    "scid": "076d42e0-f4f2-4610-b3f6-bc953f92a87f",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02631",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.24"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-240590"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20:4084"
+      }
+    ],
+    "imsid": 744150,
+    "monitored": true,
+    "name": "MSESTADKORTRIJK-01138",
+    "scid": "078af96b-c99b-4204-8859-592dd3979164",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01138",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 677543,
+    "monitored": false,
+    "name": "ATH2 OOB LINK",
+    "scid": "07b34c57-55d0-421b-b3d6-363a7f19d46e",
+    "service_type": "OOB IP LINK",
+    "sid": "GS-00391",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663242,
+    "monitored": false,
+    "name": "OLD-PS-GEN-CH-MANAGEMENT",
+    "scid": "07bdc8f1-4a1d-4ac9-b57c-2f80beb8ac86",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00309",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-23"
+      }
+    ],
+    "imsid": 744128,
+    "monitored": true,
+    "name": "BELNET-GRID5K-LAG",
+    "scid": "07d2ccf5-ace6-49d1-8358-40c3b28125de",
+    "service_type": "ETHERNET",
+    "sid": "GA-01791",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.22/31",
+          "2001:798:cc::25/126"
+        ],
+        "hostname": "rt0.ams.nl.geant.net",
+        "interface": "lag-4.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.23/31",
+          "2001:798:cc::26/126"
+        ],
+        "hostname": "rt0.lon.uk.geant.net",
+        "interface": "lag-4.0"
+      }
+    ],
+    "imsid": 738598,
+    "monitored": true,
+    "name": "AMS-LON-IPTRUNK",
+    "scid": "07d95826-c41f-4834-b98b-cfe3e996fca4",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02269",
+    "speed": 1717986918400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-2/0/5.2128"
+      }
+    ],
+    "imsid": 661730,
+    "monitored": true,
+    "name": "LON-LON-GEANTOPEN-NORDUNET-INTERNET2-17022",
+    "scid": "083bf08b-ccd1-4567-b29d-58136a2b4e32",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00974",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GARR"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.248/31",
+          "2001:798:111:1::19/126"
+        ],
+        "hostname": "rt1.mil2.it.geant.net",
+        "interface": "ae10.111"
+      }
+    ],
+    "imsid": 661882,
+    "monitored": true,
+    "name": "GARR-AP1-LHCONE",
+    "scid": "0845570c-10fa-4473-838f-cd1041a44fef",
+    "service_type": "L3-VPN",
+    "sid": "GS-00825",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CARNET"
+    ],
+    "endpoints": [],
+    "imsid": 668936,
+    "monitored": true,
+    "name": "CARNET-AP1-5",
+    "scid": "08507b54-1322-4019-9bc1-43efbd204337",
+    "service_type": "ETHERNET",
+    "sid": "GS-00803",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae19"
+      }
+    ],
+    "imsid": 731898,
+    "monitored": true,
+    "name": "ORACLE FASTCONNECT LAG",
+    "scid": "086a309f-d3ad-4d91-9cdc-81424ab9a16a",
+    "service_type": "ETHERNET",
+    "sid": "GA-01941",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ASREN"
+    ],
+    "endpoints": [],
+    "imsid": 658904,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-059(ETH)",
+    "scid": "0872b1e7-2c7e-4367-963d-a870116b8f72",
+    "service_type": "ETHERNET",
+    "sid": "GA-01316",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "FRA-PRA-PXM-IPTRUNK",
+    "scid": "08a2616b-c3f4-4674-bc1f-fe10e12dde64",
+    "service_type": null,
+    "sid": "DS-36199",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SURFNET"
+    ],
+    "endpoints": [],
+    "imsid": 720480,
+    "monitored": true,
+    "name": "SURFNET-TEMP-EXPRESSROUTE-VLAN3750",
+    "scid": "08ae0a78-729f-4a4f-8ea2-4bd36daadd5e",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02200",
+    "speed": 225485783040,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 734463,
+    "monitored": true,
+    "name": "AMSTERDAM-AMSTERDAM-1GBE-003(GEANT)",
+    "scid": "08bd7a4f-0a1a-4ac5-99ee-01e682a18db3",
+    "service_type": "ETHERNET",
+    "sid": "GA-01585",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NEA3R"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae22.1200"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae26.1200"
+      }
+    ],
+    "imsid": 709339,
+    "monitored": true,
+    "name": "LON-LON-GEANTOPEN-NEA3R-WACREN-190131",
+    "scid": "08c2695e-a949-4a15-b261-b11344b46fa1",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00982",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "REDCLARA"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae15"
+      }
+    ],
+    "imsid": 713843,
+    "monitored": true,
+    "name": "REDCLARA-MAD-COPERNICUS-LAG",
+    "scid": "0978e56e-fd3d-46bf-a550-cb078488c6e2",
+    "service_type": "ETHERNET",
+    "sid": "GA-02004",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658620,
+    "monitored": false,
+    "name": "LON2-PRD-ESX10-NIC1-PORT1",
+    "scid": "0991b3d1-0afa-4803-88d1-8fe7ef244cd6",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01239",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae1"
+      }
+    ],
+    "imsid": 742614,
+    "monitored": true,
+    "name": "MAD-MAD-MGMT-LAG",
+    "scid": "09e9c51a-af11-42d9-8298-541cd470c9c3",
+    "service_type": "ETHERNET",
+    "sid": "GA-02591",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CERN"
+    ],
+    "endpoints": [],
+    "imsid": 734565,
+    "monitored": false,
+    "name": "AMS-GEN-LHC-CERN-ASGC-07014",
+    "scid": "0a06d926-e7c1-422b-8ff3-43025293cb06",
+    "service_type": "GEANT - GBS",
+    "sid": "GS-00780",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663158,
+    "monitored": false,
+    "name": "KVMOIP-SOF-BG",
+    "scid": "0a2e9db4-a601-4e6e-9314-f4b9f08e574b",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00223",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "RASH"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.36/31",
+          "2001:798:99:1::41/126"
+        ],
+        "hostname": "rt0.sof.bg.geant.net",
+        "interface": "lag-24.100"
+      }
+    ],
+    "imsid": 745010,
+    "monitored": true,
+    "name": "RASH-AP2",
+    "scid": "0a835922-ccb5-47af-b79a-e952d2e6fc91",
+    "service_type": "GEANT IP",
+    "sid": "GS-00497",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RESTENA"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.100.58/31",
+          "2001:798::71/126"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae18.667"
+      }
+    ],
+    "imsid": 677403,
+    "monitored": true,
+    "name": "RESTENA-AP2-CLS",
+    "scid": "0a96f11c-2b5f-4206-ba7a-cf5ba8b0b5f0",
+    "service_type": "GEANT CLOUD PEERING",
+    "sid": "GS-00621",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae20"
+      }
+    ],
+    "imsid": 678046,
+    "monitored": true,
+    "name": "CH-NKN LAG",
+    "scid": "0abd37fe-8ae5-416a-9523-3cc2f747c55c",
+    "service_type": "ETHERNET",
+    "sid": "GA-02088",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 734095,
+    "monitored": true,
+    "name": "ATH2-ATH2-LAG",
+    "scid": "0ac1bb11-1730-4796-ad33-c54db14ca771",
+    "service_type": "ETHERNET",
+    "sid": "DA-00097",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658948,
+    "monitored": true,
+    "name": "PRAGUE-PRAGUE-10GBE-009(ETH)",
+    "scid": "0ac82e82-3c6d-4745-be95-31362d25096f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01423",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SINET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae20"
+      }
+    ],
+    "imsid": 734781,
+    "monitored": true,
+    "name": "NL-SINET-LAG",
+    "scid": "0ad41ef3-e2de-4fb6-8bd7-eed2c38f4f13",
+    "service_type": "ETHERNET",
+    "sid": "GA-01916",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.par.fr.geant.net",
+        "interface": "ae0.0"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae30.3008"
+      }
+    ],
+    "imsid": 712155,
+    "monitored": false,
+    "name": "INFOBLOX-TEST-PAR-FR",
+    "scid": "0ae14b97-3e47-431a-9f69-76b7a99a42b6",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00203",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662194,
+    "monitored": true,
+    "name": "DUBLIN 2 - PARKWEST-DUBLIN 2 - PARKWEST-1GBE-004(ETH)",
+    "scid": "0af73ca7-f2c2-41d8-bbdb-278a1b2e5e76",
+    "service_type": "ETHERNET",
+    "sid": "GA-01625",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CYNET"
+    ],
+    "endpoints": [],
+    "imsid": 736652,
+    "monitored": false,
+    "name": "CYNET-AP3",
+    "scid": "0b0f4bad-3ac1-4db8-93e0-20b2adaf5632",
+    "service_type": "GEANT IP",
+    "sid": "GS-00451",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.cor.ie.geant.net",
+        "interface": "lag-4"
+      }
+    ],
+    "imsid": 747266,
+    "monitored": true,
+    "name": "COR-DUB-LAG",
+    "scid": "0b35c480-c57e-4d3f-bb2e-9ce8321fdd2b",
+    "service_type": "ETHERNET",
+    "sid": "GA-02384",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.fra.de.geant.net",
+        "interface": "lag-8"
+      }
+    ],
+    "imsid": 739043,
+    "monitored": true,
+    "name": "AMS-FRA-1.6T-LAG",
+    "scid": "0b6389ef-91b8-408a-ae72-21f3a10293f4",
+    "service_type": "ETHERNET",
+    "sid": "GA-01945",
+    "speed": 1717986918400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.214/31",
+          "2001:798:111:1::8d/126"
+        ],
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ae11.111"
+      }
+    ],
+    "imsid": 661518,
+    "monitored": true,
+    "name": "PIONIER-AP1-LHCONE",
+    "scid": "0b6cfc81-e15b-4a6c-aa8a-16c5b9a03621",
+    "service_type": "L3-VPN",
+    "sid": "GS-00844",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ARNES"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.zag.hr.geant.net",
+        "interface": "lag-20"
+      }
+    ],
+    "imsid": 747825,
+    "monitored": true,
+    "name": "ARNES-AP2-LAG",
+    "scid": "0ba9ab91-4c40-4e8a-81f7-464f3335ffb1",
+    "service_type": "ETHERNET",
+    "sid": "GA-01866",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "REDIRIS"
+    ],
+    "endpoints": [],
+    "imsid": 715227,
+    "monitored": false,
+    "name": "GEN-MAD-LHC-CERN-REDIRIS-07003",
+    "scid": "0bae6286-b92d-416a-96a8-51cd4166d3cc",
+    "service_type": "GEANT - GBS",
+    "sid": "GS-00804",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662195,
+    "monitored": true,
+    "name": "FRANKFURT-FRANKFURT-1GBE-008(ETH)",
+    "scid": "0bd06811-2c7f-4b56-8899-e28a60f153d0",
+    "service_type": "ETHERNET",
+    "sid": "GA-01615",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.200/31",
+          "2001:798:cc::51/126"
+        ],
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae1.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.201/31",
+          "2001:798:cc::52/126"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae1.0"
+      }
+    ],
+    "imsid": 735976,
+    "monitored": true,
+    "name": "AMS-AMS-IPTRUNK-2",
+    "scid": "0c00639c-30bd-4ee1-85af-b6c5cc212472",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00007",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CESNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.pra.cz.geant.net",
+        "interface": "ae11.1700"
+      }
+    ],
+    "imsid": 725157,
+    "monitored": true,
+    "name": "CESNET-NSI-GCS",
+    "scid": "0c442386-a6c5-4bb8-bd2d-4eaa4d70f051",
+    "service_type": "GEANT IP",
+    "sid": "GS-00446",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SINET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.176/31",
+          "2001:798:111:1::ad/126"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae15.2511"
+      }
+    ],
+    "imsid": 660633,
+    "monitored": true,
+    "name": "SINET-PAR-LHCONE",
+    "scid": "0c504e16-fe46-438c-ba18-c93eaf5864b5",
+    "service_type": "L3-VPN",
+    "sid": "GS-00859",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "srx1.ch.office.geant.net",
+        "interface": "ge-0/0/4"
+      }
+    ],
+    "imsid": 662519,
+    "monitored": true,
+    "name": "PHY TO VIRGIN MEDIA NTU",
+    "scid": "0c58a836-4077-4bbb-8cb4-8ff972e60b5f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01280",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "172.21.2.1/24"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae1.998"
+      }
+    ],
+    "imsid": 733985,
+    "monitored": false,
+    "name": "EX3400-MANAGEMENT-PAR-FR",
+    "scid": "0c87d6c5-6658-46c5-84e0-450c44f06a81",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00157",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GRNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae10.2802"
+      },
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "lag-20:711"
+      },
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "pwe-224047"
+      }
+    ],
+    "imsid": 745594,
+    "monitored": true,
+    "name": "SLCUTH-02497",
+    "scid": "0cb5d4c0-5bde-45c0-8ee6-dab43ccbea45",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02497",
+    "speed": 171798691840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ORACLE"
+    ],
+    "endpoints": [],
+    "imsid": 719255,
+    "monitored": true,
+    "name": "DE-ORACLE-IAS-LAG",
+    "scid": "0cc7dc65-b87e-49ec-a9e7-26c2805b5287",
+    "service_type": "ETHERNET",
+    "sid": "GA-02090",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/0/5"
+      }
+    ],
+    "imsid": 678561,
+    "monitored": true,
+    "name": "LONDON-LONDON-10GBE-032(GEANT)",
+    "scid": "0ccbc0ba-a7d2-4380-b3cb-14276291e603",
+    "service_type": "ETHERNET",
+    "sid": "GA-01659",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.par.fr.geant.net",
+        "interface": "lag-6"
+      }
+    ],
+    "imsid": 744976,
+    "monitored": true,
+    "name": "LIS-PAR-LAG",
+    "scid": "0ccfae31-02dc-4fed-85f3-b53f84d32c6e",
+    "service_type": "ETHERNET",
+    "sid": "GA-02635",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 659271,
+    "monitored": true,
+    "name": "PRAGUE-PRAGUE-1GBE-016(ETH)",
+    "scid": "0cf29462-97e8-467c-bde0-9a780170afcb",
+    "service_type": "ETHERNET",
+    "sid": "GA-01443",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "INTERNET2"
+    ],
+    "endpoints": [],
+    "imsid": 661229,
+    "monitored": true,
+    "name": "LON-LON-GEANTOPEN-INTERNET2-NETHERLIGHT-18073",
+    "scid": "0cf388db-ebd6-4b36-b984-601df07fdeb0",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00969",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 743997,
+    "monitored": false,
+    "name": "RIG-RIG-MGMT-IPTRUNK",
+    "scid": "0d00b9b2-5c24-426d-a9ee-04bf1872c5b8",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02612",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mil2.it.geant.net",
+        "interface": "xe-1/1/3"
+      },
+      {
+        "hostname": "mx1.mil2.it.geant.net",
+        "interface": "xe-1/1/3.1023"
+      }
+    ],
+    "imsid": 661191,
+    "monitored": true,
+    "name": "SDN-BOD-BR53-OF-6-HOST-G-ETH2",
+    "scid": "0d218243-c529-4544-a429-9c71cd0cf426",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00757",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658705,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-1GBE-004(ETH)",
+    "scid": "0d291140-25b9-4345-87cb-f6e7e1077cf0",
+    "service_type": "ETHERNET",
+    "sid": "GA-01498",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae18"
+      }
+    ],
+    "imsid": 659355,
+    "monitored": true,
+    "name": "FACEBOOK-FC26603-LAG",
+    "scid": "0d3ffc14-a905-4975-b5c2-b51fb90d4f3f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01840",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 707065,
+    "monitored": false,
+    "name": "TAAS-GTS-GATE-LON2-UK",
+    "scid": "0d44500a-d887-4d05-b2ba-8dc2d7a9850a",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00371",
+    "speed": 2147483648,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [],
+    "imsid": 727431,
+    "monitored": false,
+    "name": "NORDUNET-GEO-EXPRESSROUTE-VLAN3916",
+    "scid": "0d49ff8c-ba86-4a24-a1b9-ccdfeed40b3f",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02307",
+    "speed": 118111600640,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708186,
+    "monitored": false,
+    "name": "FLOWMON-PAR-FR-MANAGEMENT",
+    "scid": "0d915349-a30e-4881-ab5d-9f034efe9a5c",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00168",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ASNET-AM"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.41/30",
+          "2001:798:99:1::e1/126"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae17.400"
+      }
+    ],
+    "imsid": 746552,
+    "monitored": false,
+    "name": "ASNET-AM-AP2",
+    "scid": "0db63f8a-6652-4840-a825-06efe07b6159",
+    "service_type": "GEANT IP",
+    "sid": "GS-02650",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.17"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28.4080"
+      }
+    ],
+    "imsid": 739674,
+    "monitored": true,
+    "name": "BELNET-ARPGAN-EXPRESSROUTE-VLAN4080",
+    "scid": "0db7ac4f-761f-4b46-839a-68c5c2bbfb2a",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01122",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658738,
+    "monitored": true,
+    "name": "PARIS-POP-LAN-1GBE-001(ETH)",
+    "scid": "0dc5b8ca-0609-410e-8231-0c86affc212a",
+    "service_type": "ETHERNET",
+    "sid": "GA-01403",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CESNET"
+    ],
+    "endpoints": [],
+    "imsid": 718312,
+    "monitored": true,
+    "name": "CESNET-PRITEST-EXPRESSROUTE-VLAN408",
+    "scid": "0dd4c135-c51e-4398-90c3-d577f6c342d8",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02093",
+    "speed": 118111600640,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663084,
+    "monitored": true,
+    "name": "RARE-P4-MANAGEMENT-VLAN3005",
+    "scid": "0ddeb66b-94ef-4097-a03f-853b91c3a943",
+    "service_type": "L2SERVICES",
+    "sid": "GS-00773",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SWITCH"
+    ],
+    "endpoints": [],
+    "imsid": 709837,
+    "monitored": true,
+    "name": "SWITCH EUMETCAST AP2",
+    "scid": "0df9e223-38bf-4cfc-9076-8ceb05687e21",
+    "service_type": "EUMETSAT TERRESTRIAL",
+    "sid": "GS-01121",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "MREN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.209/30",
+          "2001:798:1b:10aa::9/126"
+        ],
+        "hostname": "rt0.zag.hr.geant.net",
+        "interface": "lag-24.100"
+      }
+    ],
+    "imsid": 747907,
+    "monitored": true,
+    "name": "MREN-AP1",
+    "scid": "0e27c49e-a0be-4ef6-a475-71c577f55699",
+    "service_type": "GEANT IP",
+    "sid": "GS-00491",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662181,
+    "monitored": true,
+    "name": "FRANKFURT-FRANKFURT-1GBE-006(ETH)",
+    "scid": "0e2f1da9-1a73-42b0-9c21-41a3abbd552d",
+    "service_type": "ETHERNET",
+    "sid": "GA-01612",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "AZSCIENCENET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.25/30",
+          "2001:798:99:1::bd/126"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae37.300"
+      }
+    ],
+    "imsid": 743174,
+    "monitored": true,
+    "name": "AZSCIENCENET-AP1",
+    "scid": "0e97e70c-3353-4ef0-b05f-6c1e21052088",
+    "service_type": "GEANT IP",
+    "sid": "GS-00433",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CYNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.165/30",
+          "2001:798:28:10aa::5/126"
+        ],
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "lag-21.100"
+      }
+    ],
+    "imsid": 745492,
+    "monitored": true,
+    "name": "CYNET-AP2",
+    "scid": "0ea95cc4-55c2-4e50-a405-c1b993755b3e",
+    "service_type": "GEANT IP",
+    "sid": "GS-00450",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 719095,
+    "monitored": true,
+    "name": "GENEVA-GENEVA-1GBE-001(GEANT)",
+    "scid": "0ec30407-bb41-43d1-9d34-e7539ab1005a",
+    "service_type": "ETHERNET",
+    "sid": "GA-01544",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 710811,
+    "monitored": true,
+    "name": "BUC-FRA-LAG",
+    "scid": "0edad487-ae52-4be0-9bcd-336f39549faa",
+    "service_type": "ETHERNET",
+    "sid": "GA-01994",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ASNET-AM"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.169/30",
+          "2001:798:1::20d/126"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae17.333"
+      }
+    ],
+    "imsid": 732137,
+    "monitored": true,
+    "name": "ASNET-AM-AP1-IAS",
+    "scid": "0ee19262-9795-47c6-b7ac-1a2f3c894857",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00555",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "2001:798:99:1::11/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae13.106"
+      }
+    ],
+    "imsid": 730142,
+    "monitored": true,
+    "name": "UK-ESNET-IPV6",
+    "scid": "0f093fc1-e929-41e9-b8eb-fa2d70ac2b41",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00916",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ae11.3005"
+      }
+    ],
+    "imsid": 712562,
+    "monitored": false,
+    "name": "RARE-POZ-PIONIER",
+    "scid": "0f136d4a-0241-4fe8-8a46-4f1bed094ae9",
+    "service_type": "L2SERVICES",
+    "sid": "GS-00777",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "REDCLARA"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.168/31",
+          "2001:798:99:1::9d/126"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae15.610"
+      }
+    ],
+    "imsid": 660557,
+    "monitored": true,
+    "name": "FR-CLARA",
+    "scid": "0fc19f48-bb6c-4c4d-b436-c3dc3a48a540",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00883",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae10.2803"
+      },
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ae11.2705"
+      }
+    ],
+    "imsid": 738292,
+    "monitored": true,
+    "name": "PSNC-KIFU-SLICES-SZTAKI",
+    "scid": "0fdae68c-6cc3-43bb-815e-eaf867d1e0fa",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02491",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [],
+    "imsid": 712377,
+    "monitored": true,
+    "name": "MD-VPN-VRR-LJUBLJANA-FUNET-1-FI",
+    "scid": "104f1e3d-930f-4660-9283-30644ccaf6b4",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01019",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.par.fr.geant.net",
+        "interface": "lag-2"
+      }
+    ],
+    "imsid": 744013,
+    "monitored": true,
+    "name": "BRU-PAR-LAG",
+    "scid": "10751c15-60e4-4d6c-b68d-c679dd2e0e46",
+    "service_type": "ETHERNET",
+    "sid": "GA-02279",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662948,
+    "monitored": false,
+    "name": "FRA-GROOVE-3-MANAGEMENT",
+    "scid": "1077f9ee-b368-40f2-9e23-0d051e0140c3",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00177",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.109.28/31"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "gr-3/0/0.19"
+      }
+    ],
+    "imsid": 732660,
+    "monitored": false,
+    "name": "GRE-MULTICAST-TUNNEL-UWSSEC",
+    "scid": "108e3f34-cbb9-400f-943a-c2c33c988be9",
+    "service_type": "EUMETSAT GRE",
+    "sid": "GS-01090",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CARNET"
+    ],
+    "endpoints": [],
+    "imsid": 730101,
+    "monitored": false,
+    "name": "CARNET-BGP-LU-COC-AP2",
+    "scid": "1091466c-e8c8-490c-aeb3-c8d7db6baf2c",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01000",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.20/31",
+          "2001:798:cc::21/126"
+        ],
+        "hostname": "rt0.ams.nl.geant.net",
+        "interface": "lag-8.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.21/31",
+          "2001:798:cc::22/126"
+        ],
+        "hostname": "rt0.fra.de.geant.net",
+        "interface": "lag-8.0"
+      }
+    ],
+    "imsid": 739045,
+    "monitored": true,
+    "name": "AMS-FRA-IPTRUNK",
+    "scid": "109a7ad9-69cd-4d29-abee-b4af6e73088a",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00009",
+    "speed": 1717986918400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 717027,
+    "monitored": true,
+    "name": "DCN-LJU-SI-MGT-GRV1",
+    "scid": "109f280f-9b0d-47e1-97d3-dca3784764f9",
+    "service_type": "ETHERNET",
+    "sid": "GA-01670",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658693,
+    "monitored": false,
+    "name": "730XD-4-VM-TRAFFIC-LAG-PAR",
+    "scid": "10a3a561-cc3f-4329-a154-67f8b8917b09",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01726",
+    "speed": 32212254720,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "WIX"
+    ],
+    "endpoints": [],
+    "imsid": 736740,
+    "monitored": false,
+    "name": "WIX-TO-NETHERLIGHT-TEST",
+    "scid": "10a5b5f8-caca-4c0b-8365-58b8878dc536",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00766",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/1/5"
+      }
+    ],
+    "imsid": 658954,
+    "monitored": true,
+    "name": "100G TESTING FROM JODRELL BANK DTN SERVERS",
+    "scid": "10b9013d-7a86-4f9d-b80e-8e7501d8cf0f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01448",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "FACEBOOK"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "157.240.84.29/31",
+          "2620:0:1cff:dead:beee::10ff/127"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae46.0"
+      }
+    ],
+    "imsid": 737794,
+    "monitored": true,
+    "name": "FACEBOOK-32934-FRA-PCDE-90606624",
+    "scid": "10c61e08-bc5f-48a8-9872-53dfffeaf984",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-02483",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "JISC"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/1/6"
+      }
+    ],
+    "imsid": 659284,
+    "monitored": true,
+    "name": "LONDON-LONDON-10GBE-038(ETH)",
+    "scid": "10c8a3ba-1aea-4a22-abdb-bdb13860061f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01454",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.104.249/29",
+          "2001:798:bb:4d::1/64"
+        ],
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-1/2/2.3007"
+      }
+    ],
+    "imsid": 679409,
+    "monitored": false,
+    "name": "INFOBLOX-TRINZIC805-LON2-VLAN3007",
+    "scid": "10d47d94-39d8-4984-8430-300f642e8488",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00204",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.par.fr.geant.net",
+        "interface": "ae0.0"
+      },
+      {
+        "addresses": [
+          "10.0.0.3/28"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "irb.3006"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae30.3006"
+      }
+    ],
+    "imsid": 712153,
+    "monitored": false,
+    "name": "TAAS-CONTROL-IMS-MEDIATION-LOGICAL-INTERFACE-PAR-FR",
+    "scid": "10d82154-1a1c-420d-9198-9980c7edc9d7",
+    "service_type": "L3-VPN",
+    "sid": "GS-00863",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ge-0/3/2.26"
+      }
+    ],
+    "imsid": 718926,
+    "monitored": false,
+    "name": "DDOS-DET2-VIE-AT-IDRAC",
+    "scid": "10ef9e9f-18f3-4bb5-acd9-2eefe1fe8947",
+    "service_type": "SERVER LINK",
+    "sid": "GS-01175",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661951,
+    "monitored": false,
+    "name": "TAAS-GTS-CONTROL-1",
+    "scid": "10f1969a-26f2-4d9d-9a8a-854a54287201",
+    "service_type": "GTS",
+    "sid": "GS-01189",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 719100,
+    "monitored": true,
+    "name": "KAUNAS-KAUNAS-LAG-001(GEANT)",
+    "scid": "113f0c13-600a-410b-a33e-652e7d73caa1",
+    "service_type": "ETHERNET",
+    "sid": "GA-02022",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "HEANET"
+    ],
+    "endpoints": [],
+    "imsid": 662965,
+    "monitored": true,
+    "name": "HEANET-BGP-LU-COC-AP1",
+    "scid": "11673041-e2ea-4d93-b42c-2093c020dbe3",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01008",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [],
+    "imsid": 662488,
+    "monitored": true,
+    "name": "RENATER-AP2-LAG",
+    "scid": "116d56e5-ff31-4b49-8e19-423ddb28252f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01884",
+    "speed": 429496729600,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "HEANET"
+    ],
+    "endpoints": [],
+    "imsid": 712389,
+    "monitored": true,
+    "name": "MD-VPN-VRR-LJUBLJANA-HEANET-IE-(RR1-CWT.HEA.NET)",
+    "scid": "11878b25-2feb-4dc1-8f6e-23684539c8ba",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01024",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "RESTENA"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.117/30",
+          "2001:798:18:10aa::19/126"
+        ],
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-22.2603"
+      }
+    ],
+    "imsid": 744073,
+    "monitored": true,
+    "name": "RESTENA-AP2",
+    "scid": "1195ba87-e0a8-4c03-845e-0bc0f7d58b85",
+    "service_type": "GEANT IP",
+    "sid": "GS-00508",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "KREN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.zag.hr.geant.net",
+        "interface": "lag-25"
+      }
+    ],
+    "imsid": 747896,
+    "monitored": true,
+    "name": "KREN-AP1-LAG",
+    "scid": "119f7bbd-04ad-44cd-8d75-0293adc8dd8a",
+    "service_type": "ETHERNET",
+    "sid": "GA-02154",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae3"
+      }
+    ],
+    "imsid": 740750,
+    "monitored": true,
+    "name": "VIE-VIE-LAG",
+    "scid": "11b6f82c-1b42-440c-bf6f-0378acbf2088",
+    "service_type": "ETHERNET",
+    "sid": "GA-02561",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GRNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "xe-2/1/4.1630"
+      },
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "pwe-123079"
+      },
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "lag-22:1630"
+      }
+    ],
+    "imsid": 745435,
+    "monitored": true,
+    "name": "GENEVA-GENEVA-ETHS-002(GRNET)",
+    "scid": "1229a60e-761c-4004-b2a8-bd68903e764f",
+    "service_type": "ETHERNET",
+    "sid": "GS-02381",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "SINET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.22/31",
+          "2001:798:111:1::b1/126"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae20.200"
+      }
+    ],
+    "imsid": 734869,
+    "monitored": true,
+    "name": "NL-SINET-LHCONE",
+    "scid": "123790a1-ef34-4cb0-b9af-e19bbe8aa9eb",
+    "service_type": "L3-VPN",
+    "sid": "GS-00840",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 707412,
+    "monitored": true,
+    "name": "KAU-KAU-LAG",
+    "scid": "123c47a1-01a1-4148-8340-e431b44f4da2",
+    "service_type": "ETHERNET",
+    "sid": "GA-02020",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661177,
+    "monitored": false,
+    "name": "PS-MAD-ES-IDRAC",
+    "scid": "12916de8-dc3e-49e2-96aa-62a3ca5c28d2",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00328",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "INTERNET2"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "64.57.30.228/28",
+          "2001:468:ef00:4000::3/64"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae15.2001"
+      }
+    ],
+    "imsid": 660639,
+    "monitored": true,
+    "name": "INTERNET2-PAR-LHCONE",
+    "scid": "12c941e1-5224-453d-a807-40646b215c44",
+    "service_type": "L3-VPN",
+    "sid": "GS-00831",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "REDCLARA"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.38/31",
+          "2001:798:111:1::d1/126"
+        ],
+        "hostname": "mx2.lis.pt.geant.net",
+        "interface": "ae11.2018"
+      }
+    ],
+    "imsid": 713840,
+    "monitored": true,
+    "name": "REDCLARA-LIS-LHCONE",
+    "scid": "1300b831-c1bd-49cb-92a8-f93241c20a31",
+    "service_type": "L3-VPN",
+    "sid": "GS-00848",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "equipment": "LON01-GRV4",
+        "port": "1/3/8"
+      },
+      {
+        "equipment": "GEN02-GRV-2",
+        "port": "1/3/8"
+      }
+    ],
+    "imsid": 730122,
+    "monitored": true,
+    "name": "GEN2-LON1-EEX-ESNET-2373-2-400G",
+    "scid": "1322b791-7bef-4d5a-a8c8-0ee9185cbeef",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-02335",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 660554,
+    "monitored": false,
+    "name": "PRA-GROOVE-2-MANAGEMENT",
+    "scid": "132e2a10-8c8d-42d3-a663-188b23d9fc40",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00282",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "LITNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.kau.lt.geant.net",
+        "interface": "lag-21"
+      }
+    ],
+    "imsid": 746519,
+    "monitored": true,
+    "name": "LITNET-AP1-LAG",
+    "scid": "134acb33-59e6-4661-9677-fbbebab12a47",
+    "service_type": "ETHERNET",
+    "sid": "GA-02042",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [],
+    "imsid": 669120,
+    "monitored": false,
+    "name": "AMS-LON1-EEX-ESNET-1424",
+    "scid": "136087f3-00f6-4e3c-ae61-343625d9a597",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-00781",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 724091,
+    "monitored": true,
+    "name": "ETHS-MX1.PAR.FR_GE-0/2/0.24",
+    "scid": "13739414-948e-4434-96ae-e23eca7b7446",
+    "service_type": "ETHERNET",
+    "sid": "GS-00341",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CANARIE"
+    ],
+    "endpoints": [],
+    "imsid": 660632,
+    "monitored": false,
+    "name": "FR-CANARIE-VLAN205",
+    "scid": "13a94119-3b3c-46ae-8977-0813a60c55f1",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00882",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 730602,
+    "monitored": true,
+    "name": "COR-COR-IPTRUNK",
+    "scid": "13cf9ebd-a070-4fa4-9b02-8f15874dbe49",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02403",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658824,
+    "monitored": true,
+    "name": "VIENNA-VIENNA-1GBE-004(ETH)",
+    "scid": "13ef6c2d-ec68-4d74-a9a3-c104560d7a25",
+    "service_type": "ETHERNET",
+    "sid": "GA-01484",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661236,
+    "monitored": false,
+    "name": "PS-POZ-PL-IDRAC",
+    "scid": "13ef8f22-624b-4e80-86f2-9079eecc46bc",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00344",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "MARNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.sof.bg.geant.net",
+        "interface": "lag-22"
+      }
+    ],
+    "imsid": 744884,
+    "monitored": true,
+    "name": "MARNET-AP1-LAG",
+    "scid": "1409a504-c174-4e78-8ed3-aaa28584bb3b",
+    "service_type": "ETHERNET",
+    "sid": "GA-01732",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "UBUNTUNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.253/30",
+          "2001:798:28:10aa::d/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/3/2.100"
+      }
+    ],
+    "imsid": 661682,
+    "monitored": true,
+    "name": "UK-UBUNTUNET",
+    "scid": "14199cf2-5738-4ccc-abf3-4916baacaf21",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00909",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-1/2/2"
+      }
+    ],
+    "imsid": 659071,
+    "monitored": true,
+    "name": "MX1.LON2-EX1.LON2-10GBE-001(GEANT)",
+    "scid": "141d138b-5203-4e54-9cac-b4d66add1a62",
+    "service_type": "ETHERNET",
+    "sid": "GA-01317",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GARR"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.181/30",
+          "2001:798:1e:10aa::15/126"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae12.1000"
+      }
+    ],
+    "imsid": 663180,
+    "monitored": true,
+    "name": "GARR-AP2",
+    "scid": "14555551-3ce4-4e4d-bfbf-56de8205284e",
+    "service_type": "GEANT IP",
+    "sid": "GS-00463",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 719798,
+    "monitored": true,
+    "name": "PARIS 007B-PARIS 007B-10GBE-020(GEANT)",
+    "scid": "146c803c-128c-4aa8-bd90-ffef012b22c4",
+    "service_type": "ETHERNET",
+    "sid": "GA-01390",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "T-SYSTEMS"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "80.158.74.243/31"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae21.4003"
+      }
+    ],
+    "imsid": 727979,
+    "monitored": true,
+    "name": "DE-T-SYSTEMS-COPERNICUS",
+    "scid": "14b798af-d52a-4ebc-a06b-175210a878bc",
+    "service_type": "L3-VPN",
+    "sid": "GS-02332",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.109.5/30"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "gr-3/0/0.6"
+      }
+    ],
+    "imsid": 732674,
+    "monitored": false,
+    "name": "GRE-MULTICAST-TUNNEL-ECMWF2",
+    "scid": "14d6c05d-4621-47d0-9705-2b50a5ba2607",
+    "service_type": "EUMETSAT GRE",
+    "sid": "GS-01077",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/2/5"
+      }
+    ],
+    "imsid": 726765,
+    "monitored": true,
+    "name": "LONDON 2-LONDON 2-10GBE-016(GEANT)",
+    "scid": "1501ff8b-841c-436a-91be-37b2d88552a5",
+    "service_type": "ETHERNET",
+    "sid": "GA-01464",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ULAKBIM"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.165/30",
+          "2001:798:1::c9/126"
+        ],
+        "hostname": "rt0.sof.bg.geant.net",
+        "interface": "lag-23.333"
+      }
+    ],
+    "imsid": 745011,
+    "monitored": true,
+    "name": "ULAKBIM-AP2-IAS",
+    "scid": "1510f7a6-b938-4e27-823c-24e2867c1f5b",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00592",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "REDIRIS"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.6"
+      },
+      {
+        "hostname": "rt1.bil.es.geant.net",
+        "interface": "ae15.408"
+      }
+    ],
+    "imsid": 707129,
+    "monitored": true,
+    "name": "REDIRIS-USC-EXPRESSROUTE-VLAN408",
+    "scid": "1518a76a-101a-4910-a4a2-330c40eee2bd",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01165",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [],
+    "imsid": 662213,
+    "monitored": true,
+    "name": "AMSTERDAM-AMSTERDAM-1GBE-046(ETH)",
+    "scid": "152c064c-7da2-4f61-b240-e83a8ea47a11",
+    "service_type": "ETHERNET",
+    "sid": "GA-01628",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae2"
+      }
+    ],
+    "imsid": 736810,
+    "monitored": true,
+    "name": "AMS2-LON-AMT-LAG",
+    "scid": "1531ae5c-19ba-4361-b673-b61598c7edc6",
+    "service_type": "ETHERNET",
+    "sid": "GA-02036",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.por.pt.geant.net",
+        "interface": "ae3"
+      }
+    ],
+    "imsid": 707340,
+    "monitored": true,
+    "name": "LIS-POR-LAG",
+    "scid": "15376a6e-7742-4bdd-83ad-dea544b6fc4f",
+    "service_type": "ETHERNET",
+    "sid": "GA-02029",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "T-SYSTEMS"
+    ],
+    "endpoints": [],
+    "imsid": 708765,
+    "monitored": false,
+    "name": "NL-T-SYSTEMS-IAS-2",
+    "scid": "15401883-0c9b-4993-a48b-5795393cef1f",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-00941",
+    "speed": 322122547200,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.vie.at.geant.net",
+        "interface": "lag-5"
+      }
+    ],
+    "imsid": 740749,
+    "monitored": true,
+    "name": "PRA-VIE-LAG",
+    "scid": "15597b53-1a55-43ff-a666-fb4e11eeaee8",
+    "service_type": "ETHERNET",
+    "sid": "GA-01858",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SWITCH"
+    ],
+    "endpoints": [],
+    "imsid": 705461,
+    "monitored": false,
+    "name": "GEN-LON-SYNGENTA-SWITCH-JISC-17041",
+    "scid": "156b6a44-9b3c-41d5-beef-8d159cbd8424",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00712",
+    "speed": 858993459200,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663119,
+    "monitored": false,
+    "name": "HADES-GEN-CH-DRAC",
+    "scid": "157d11e1-1469-4f98-8dd4-5c68b91601e3",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00194",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "xe-3/0/0"
+      }
+    ],
+    "imsid": 662292,
+    "monitored": true,
+    "name": "BUDAPEST-BUDAPEST-10GBE-009(GEANT)",
+    "scid": "15aa7807-f05c-4854-9150-acb496c3159e",
+    "service_type": "ETHERNET",
+    "sid": "GA-02126",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.60/31",
+          "2001:798:cc::65/126"
+        ],
+        "hostname": "rt0.lon.uk.geant.net",
+        "interface": "lag-1.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.61/31",
+          "2001:798:cc::66/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae3.0"
+      }
+    ],
+    "imsid": 738586,
+    "monitored": true,
+    "name": "LON-LON-IPTRUNK",
+    "scid": "15bfb61a-861f-426d-be13-45eb31eb3ec5",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02467",
+    "speed": 858993459200,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "SWITCH-AMS-IX 1GE",
+    "scid": "15c78ea0-2891-403b-b98c-70bd358280c3",
+    "service_type": null,
+    "sid": "DS-09100",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ge-0/3/2.22"
+      }
+    ],
+    "imsid": 661652,
+    "monitored": false,
+    "name": "OWAMP-VIE-AT",
+    "scid": "15d0517d-c473-46e6-9aeb-3439f95ef572",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00271",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.13"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28.4091"
+      }
+    ],
+    "imsid": 739679,
+    "monitored": true,
+    "name": "BELNET-ICT-EXPRESSROUTE-VLAN4091",
+    "scid": "15dd84bd-3042-4734-8d9b-d110596e9875",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01125",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SWITCH"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.81/30",
+          "2001:798:18:10aa::d/126"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae13.100"
+      }
+    ],
+    "imsid": 661602,
+    "monitored": true,
+    "name": "SWITCH-AP2",
+    "scid": "15e11dd8-fa00-4e14-8bfd-2604b83f3791",
+    "service_type": "GEANT IP",
+    "sid": "GS-00515",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SURFNET"
+    ],
+    "endpoints": [],
+    "imsid": 709832,
+    "monitored": true,
+    "name": "SURFNET EUMETCAST AP2",
+    "scid": "1603dac6-4682-44a9-8962-66a270bffc81",
+    "service_type": "EUMETSAT TERRESTRIAL",
+    "sid": "GS-01119",
+    "speed": 53687091200,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SINET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae20.3019"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae2.3019"
+      }
+    ],
+    "imsid": 740719,
+    "monitored": false,
+    "name": "AMS-LON-SINET-SD-WAN-SINET-SINET-17088",
+    "scid": "16476b10-e427-481f-b082-4a21bd54bc67",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00649",
+    "speed": 236223201280,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658862,
+    "monitored": true,
+    "name": "PARIS-PSMP-LHC-OWAMP-1GBE-003(ETH)",
+    "scid": "1648a6ad-ed35-4bd0-9d6c-6a15b95c301f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01404",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae16.980"
+      },
+      {
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-21:2104"
+      }
+    ],
+    "imsid": 747543,
+    "monitored": true,
+    "name": "HAM-MAD-02516",
+    "scid": "16644def-bcc6-4588-ad2f-e5c179d676d9",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02516",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.89.4/31",
+          "2001:798:1::129/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae18.0"
+      }
+    ],
+    "imsid": 708242,
+    "monitored": true,
+    "name": "FACEBOOK-32934-LON-FC-26603",
+    "scid": "166d1c29-be89-44fb-82ae-4e57beb948aa",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-00931",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "KIFU"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.81/30",
+          "2001:798:1::65/126"
+        ],
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae10.333"
+      }
+    ],
+    "imsid": 663070,
+    "monitored": true,
+    "name": "KIFU-AP1-IAS",
+    "scid": "167e7247-a2ff-42dc-973d-da88fce9b5dd",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00575",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "mx1.gen.ch - Traffic - et-1/0/5 - PHY CUSTOMER SWITCH SRF19136 $GA-02133 |",
+    "scid": "16a3f2f6-98bf-4443-a958-4c813d7a103f",
+    "service_type": null,
+    "sid": "GA-02133",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.123.225/29",
+          "2001:798:bb:47::1/64"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-11/2/0.100"
+      }
+    ],
+    "imsid": 678071,
+    "monitored": false,
+    "name": "DTN-PAR-10G-DATA",
+    "scid": "16b8d896-9d4a-403f-9cc5-f087a3137a68",
+    "service_type": "SERVER LINK",
+    "sid": "GS-02375",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661192,
+    "monitored": false,
+    "name": "PS-MIL2-IT-IDRAC",
+    "scid": "16bea68d-5640-4400-b22d-2b9932f7ceb0",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00335",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "URAN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.kie.ua.geant.net",
+        "interface": "xe-0/1/3"
+      },
+      {
+        "hostname": "rt2.chi.md.geant.net",
+        "interface": "xe-0/1/2.0"
+      },
+      {
+        "hostname": "rt2.kie.ua.geant.net",
+        "interface": "xe-0/1/3.0"
+      }
+    ],
+    "imsid": 723461,
+    "monitored": false,
+    "name": "CHI-KIE-EAP-RENAM-URAN-22087",
+    "scid": "16c14584-c205-4c28-85da-ed53bfed4f0e",
+    "service_type": "GEANT - GBS",
+    "sid": "GS-02212",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ge-0/2/7"
+      }
+    ],
+    "imsid": 669119,
+    "monitored": true,
+    "name": "ESNET OOB IP 1G LINK LL",
+    "scid": "16cabefa-bd92-43cc-b619-64fdb71e0efe",
+    "service_type": "ETHERNET",
+    "sid": "GA-01474",
+    "speed": 0,
+    "status": "terminated"
+  },
+  {
+    "customers": [
+      "AZSCIENCENET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-11/3/2.0"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae37.220"
+      }
+    ],
+    "imsid": 723801,
+    "monitored": true,
+    "name": "FRA-FRA-EAP-AZSCIENCENET-CL-190961",
+    "scid": "16db554a-970f-450c-8a43-82ba1f91b0e6",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00694",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.pra.cz.geant.net",
+        "interface": "lag-7"
+      }
+    ],
+    "imsid": 740493,
+    "monitored": true,
+    "name": "POZ-PRA-LAG",
+    "scid": "16e502b0-920a-4640-9ef1-2a8096549750",
+    "service_type": "ETHERNET",
+    "sid": "GA-02409",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.109.37/30"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "gr-3/0/0.0"
+      }
+    ],
+    "imsid": 732670,
+    "monitored": false,
+    "name": "GRE-MULTICAST-TUNNEL-NOAA",
+    "scid": "172d87f3-530c-4232-ba67-6f52e5f96274",
+    "service_type": "EUMETSAT GRE",
+    "sid": "GS-01086",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "2001:798:111:1::3d/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5.4005"
+      }
+    ],
+    "imsid": 661712,
+    "monitored": true,
+    "name": "NORDUNET-LON-IPV6-LHCONE",
+    "scid": "17380d2a-e6f5-4ed9-abb1-b8663ead67a0",
+    "service_type": "L3-VPN",
+    "sid": "GS-00842",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ASGC"
+    ],
+    "endpoints": [],
+    "imsid": 662982,
+    "monitored": false,
+    "name": "NL-ASGC-LHCONE",
+    "scid": "175bc5ea-613b-43f4-be27-d3b21b31527d",
+    "service_type": "L3-VPN",
+    "sid": "GS-00834",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/0/2"
+      }
+    ],
+    "imsid": 658710,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-049(ETH)",
+    "scid": "176feff7-9335-4f01-a527-da9957f620f3",
+    "service_type": "ETHERNET",
+    "sid": "GA-02284",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ACONET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae15"
+      }
+    ],
+    "imsid": 659350,
+    "monitored": true,
+    "name": "ACONET-AP1-LAG",
+    "scid": "1777015a-4a61-4db2-ab7b-3d51c51b72c8",
+    "service_type": "ETHERNET",
+    "sid": "GA-01864",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-724045"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-21:3503"
+      },
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ae11.2701"
+      }
+    ],
+    "imsid": 745318,
+    "monitored": true,
+    "name": "GEANT_EPIPE_724045",
+    "scid": "1791eae3-5f75-43d0-996a-e2e149477442",
+    "service_type": "ETHERNET",
+    "sid": "GS-02486",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 677550,
+    "monitored": true,
+    "name": "BRU OOB LINK",
+    "scid": "17933f8d-c4ce-4c64-acd6-5bcc84ef7179",
+    "service_type": "OOB IP LINK",
+    "sid": "GS-00393",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "INTERNET2"
+    ],
+    "endpoints": [],
+    "imsid": 734868,
+    "monitored": true,
+    "name": "FR-INTERNET2-2",
+    "scid": "17db22a1-1769-4221-8e63-c877ad253d5e",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00920",
+    "speed": 429496729600,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.POR.PT",
+        "port": "AE1"
+      }
+    ],
+    "imsid": 709379,
+    "monitored": true,
+    "name": "LAG-SW1.POR.PT_AE1",
+    "scid": "1847e585-c68a-4d7d-8973-44388e22a6e3",
+    "service_type": "ETHERNET",
+    "sid": "GA-02060",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.221/31",
+          "2001:798:cc:1::72/126"
+        ],
+        "hostname": "rt1.por.pt.geant.net",
+        "interface": "ae2.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.220/31",
+          "2001:798:cc:1::71/126"
+        ],
+        "hostname": "rt1.bil.es.geant.net",
+        "interface": "ae2.0"
+      }
+    ],
+    "imsid": 709122,
+    "monitored": true,
+    "name": "BIL-POR-IPTRUNK",
+    "scid": "187ba847-387a-4e22-9264-3cf431bce396",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00017",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "TENET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.164/31",
+          "2001:798:99:1::105/126"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae24.100"
+      }
+    ],
+    "imsid": 732999,
+    "monitored": true,
+    "name": "NL-TENET",
+    "scid": "1899bd82-2345-4f25-b429-64871446c65b",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-01182",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "REDCLARA"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.127.168/31",
+          "2001:798:0:1::1a/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae28.2063"
+      }
+    ],
+    "imsid": 720026,
+    "monitored": true,
+    "name": "REDCLARA-TENET-LON-COPERNICUS",
+    "scid": "18aab95f-bcf9-4ed4-934f-129083d5823a",
+    "service_type": "L3-VPN",
+    "sid": "GS-02168",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ORACLE"
+    ],
+    "endpoints": [],
+    "imsid": 719538,
+    "monitored": true,
+    "name": "FRA-MAD-ORACLE-REDIRIS-21051-VL682",
+    "scid": "18c313d3-ecd2-416c-ab3d-9f136cd3667b",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00702",
+    "speed": 343597383680,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.201/30",
+          "2001:798:28:10aa::9/126"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28.0"
+      }
+    ],
+    "imsid": 739643,
+    "monitored": true,
+    "name": "BELNET-AP2",
+    "scid": "18d4726a-65ef-42a5-ac74-503469d02b14",
+    "service_type": "GEANT IP",
+    "sid": "GS-00436",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ACONET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.100.52/31",
+          "2001:798::65/126"
+        ],
+        "hostname": "mx1.mil2.it.geant.net",
+        "interface": "ae18.667"
+      }
+    ],
+    "imsid": 661319,
+    "monitored": true,
+    "name": "ACONET-AP2-CLS",
+    "scid": "18d81cab-a8c6-4c9e-ac5e-9935ad11c2c4",
+    "service_type": "GEANT CLOUD PEERING",
+    "sid": "GS-00596",
+    "speed": 32212254720,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "DFN"
+    ],
+    "endpoints": [],
+    "imsid": 733113,
+    "monitored": false,
+    "name": "FRA-GEN-CERN-DFN-1",
+    "scid": "18f6ce8e-9d5e-457a-9c14-d24fc04bd593",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02443",
+    "speed": 536870912000,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.109.206/31"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "gr-3/0/0.22"
+      }
+    ],
+    "imsid": 732672,
+    "monitored": false,
+    "name": "GRE-MULTICAST-TUNNEL-DMI",
+    "scid": "1906b294-314f-4feb-84f2-a75af3a64a75",
+    "service_type": "EUMETSAT GRE",
+    "sid": "GS-02172",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662936,
+    "monitored": false,
+    "name": "RHPS02-DUB-IE-VLAN120",
+    "scid": "1910c904-4385-4018-b7be-3b392cf31554",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00370",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "172.18.3.1/24"
+        ],
+        "hostname": "rt1.bil.es.geant.net",
+        "interface": "ae1.103"
+      }
+    ],
+    "imsid": 709868,
+    "monitored": false,
+    "name": "DCN-MANAGEMENT-BIL-ES",
+    "scid": "192b2225-8d32-4244-a9ba-e19e9d4273b5",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00116",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ASNET-AM"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.29/30",
+          "2001:798:99:1::5d/126"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae17.200"
+      }
+    ],
+    "imsid": 732136,
+    "monitored": true,
+    "name": "ASNET-AM-AP1",
+    "scid": "19411b00-b039-4b1a-8c37-7bbfed9c31ef",
+    "service_type": "GEANT IP",
+    "sid": "GS-00430",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663085,
+    "monitored": false,
+    "name": "IPCAMERA-AMS-NL-VLAN170",
+    "scid": "19585925-3ae5-40cc-8cdf-f1983a511ee2",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00207",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "BUD-FRA-TRUNK",
+    "scid": "19613b5d-2023-48a7-83ed-28ed29bee664",
+    "service_type": null,
+    "sid": "DS-29947",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.kie.ua.geant.net",
+        "interface": "ae3"
+      }
+    ],
+    "imsid": 713094,
+    "monitored": true,
+    "name": "CHI-KIE-LAG",
+    "scid": "196accbc-ea01-42d8-9b12-137606d287f2",
+    "service_type": "ETHERNET",
+    "sid": "GA-02048",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.39"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-124004"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20:4066"
+      }
+    ],
+    "imsid": 744145,
+    "monitored": true,
+    "name": "MSERVAONEM-02431",
+    "scid": "19929b39-8a7b-4f4a-9194-4dfbdc9d897a",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02431",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "FCCN"
+    ],
+    "endpoints": [],
+    "imsid": 712561,
+    "monitored": true,
+    "name": "FCCN-BGP-LU-COC-AP2",
+    "scid": "19952156-52cb-496f-9dd1-64916a1acdfc",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01004",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "RedIRIS-SUNET-SST-VPN-Proxy-Marseille-L2VPN",
+    "scid": "19c80ab1-8e8a-45af-a978-f1420c6e6f74",
+    "service_type": null,
+    "sid": "DS-43001",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.28"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-230861"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20:4065"
+      }
+    ],
+    "imsid": 744236,
+    "monitored": true,
+    "name": "MSEONDD-02389",
+    "scid": "19d57a2e-2063-4b30-b5ee-d5c8a3e4ef54",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02389",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 702111,
+    "monitored": true,
+    "name": "BRU-LON-LAG",
+    "scid": "19dea4a9-3bee-47ae-bb81-a75290e98ec7",
+    "service_type": "ETHERNET",
+    "sid": "GA-01793",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 679316,
+    "monitored": false,
+    "name": "NE-ESXI-VMNETWORK-PAR-FR",
+    "scid": "19f33c06-68af-4049-8432-8f5e5e201784",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00255",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [],
+    "imsid": 709761,
+    "monitored": true,
+    "name": "PIONIER EUMETCAST AP2",
+    "scid": "1a076782-98c0-4e14-af20-81e284d83f82",
+    "service_type": "EUMETSAT TERRESTRIAL",
+    "sid": "GS-01115",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663181,
+    "monitored": false,
+    "name": "PS-HAM-DE-MANAGEMENT",
+    "scid": "1a204237-7ccd-4ed1-b093-cdd77e72c38a",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00311",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.AM.OFFICE",
+        "port": "XE-0/2/0"
+      }
+    ],
+    "imsid": 658390,
+    "monitored": true,
+    "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-10GBE-001(ETH)",
+    "scid": "1a260c62-3f79-416c-881f-bdb6063929ad",
+    "service_type": "ETHERNET",
+    "sid": "GA-01278",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SANET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.bra.sk.geant.net",
+        "interface": "ae13.422"
+      },
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae15.422"
+      }
+    ],
+    "imsid": 729694,
+    "monitored": true,
+    "name": "BRA-VIE-ACONET-SANET",
+    "scid": "1a41ae31-c0ed-4056-9127-f7f2570d53a1",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02379",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 721146,
+    "monitored": true,
+    "name": "PARIS 007B-PARIS 007B-10GBE-003(GEANT)",
+    "scid": "1a4f834f-517d-40bd-b8fa-0bef20c65d81",
+    "service_type": "ETHERNET",
+    "sid": "GA-01396",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "REDIRIS-AP1-LHCONE",
+    "scid": "1a58782b-8f0c-468d-9075-c48bd04525ba",
+    "service_type": null,
+    "sid": "GS-00851",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.37"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-123071"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20:4064"
+      }
+    ],
+    "imsid": 744141,
+    "monitored": true,
+    "name": "MSENCCN-02370",
+    "scid": "1a6b5d97-f769-43cd-b75f-ba5346b13fc0",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02370",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "fra-par_MPVPN_DFN-RENATER_13003",
+    "scid": "1a80f395-8678-4004-a3b7-a84c2180d138",
+    "service_type": null,
+    "sid": "DS-28708",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "JISC"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "ae12.0 - eumet"
+      }
+    ],
+    "imsid": 709758,
+    "monitored": true,
+    "name": "JISC EUMETCAST AP2",
+    "scid": "1ab4705c-1745-441c-91d6-6091a2ab8d93",
+    "service_type": "EUMETSAT TERRESTRIAL",
+    "sid": "GS-01110",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "RARE"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PF1-RARE.AMS.NL.GEANT.NET",
+        "port": "XE-0"
+      },
+      {
+        "equipment": "PF1-RARE.FRA.DE.GEANT.NET",
+        "port": "XE-0"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-0/0/0.0"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "xe-9/0/1.0"
+      }
+    ],
+    "imsid": 736076,
+    "monitored": false,
+    "name": "AMS-FRA-RARE-P4-9951375",
+    "scid": "1b022417-5e87-42e4-9f84-f2637a1e2d05",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00635",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 707224,
+    "monitored": false,
+    "name": "LON2-GROOVE",
+    "scid": "1b1fcc38-f9b9-4e01-89b0-0f9df06cf5c3",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00237",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.buc.ro.geant.net",
+        "interface": "ae5"
+      }
+    ],
+    "imsid": 744731,
+    "monitored": true,
+    "name": "BUC2-CHI-LAG",
+    "scid": "1b3404b0-f271-4ab6-b084-d126f781adb3",
+    "service_type": "ETHERNET",
+    "sid": "GA-02003",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae13.3005"
+      },
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ae11.3507"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae13.3507"
+      }
+    ],
+    "imsid": 712157,
+    "monitored": false,
+    "name": "RARE-PAR-SWITCH",
+    "scid": "1b5480d9-80fa-4ce5-be46-a5ba2d343b39",
+    "service_type": "L2SERVICES",
+    "sid": "GS-00774",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CERN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.41/30",
+          "2001:798:111:1::c1/126"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae21.110"
+      }
+    ],
+    "imsid": 701612,
+    "monitored": true,
+    "name": "CERN-GEN-LHCONE-2",
+    "scid": "1b595534-bf95-4045-a5c3-3ed6c179ba0c",
+    "service_type": "L3-VPN",
+    "sid": "GS-00812",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.67.72.70/30",
+          "2001:1900:5:2:2:0:8:852e/126"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae29.0"
+      }
+    ],
+    "imsid": 732143,
+    "monitored": true,
+    "name": "COLT-GWS-FRA",
+    "scid": "1b5e2ca1-168b-4beb-a65f-3c46d8be4f66",
+    "service_type": "GWS - UPSTREAM",
+    "sid": "GS-00069",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.lon2.uk.geant.net",
+        "interface": "lag-6"
+      }
+    ],
+    "imsid": 738857,
+    "monitored": true,
+    "name": "COR-LON2-LAG",
+    "scid": "1b5ed316-dd35-4c6b-9898-29bc24be3450",
+    "service_type": "ETHERNET",
+    "sid": "GA-02388",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.kie.ua.geant.net",
+        "interface": "ae1"
+      }
+    ],
+    "imsid": 713324,
+    "monitored": true,
+    "name": "KIE-KIE-LAG",
+    "scid": "1b9cb927-8e22-4b7b-8525-f1350ed1886e",
+    "service_type": "ETHERNET",
+    "sid": "GA-02045",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662210,
+    "monitored": true,
+    "name": "SOFIA-SOFIA-1GBE-004(ETH)",
+    "scid": "1b9d776c-ea65-4af5-a776-8aa29ffa25f3",
+    "service_type": "ETHERNET",
+    "sid": "GA-01248",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae8"
+      }
+    ],
+    "imsid": 736810,
+    "monitored": true,
+    "name": "AMS2-LON-AMT-LAG",
+    "scid": "1bd07732-d4af-4e17-94f3-b1f826937ab6",
+    "service_type": "ETHERNET",
+    "sid": "GA-01834",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658950,
+    "monitored": true,
+    "name": "PRAGUE-PRAGUE-1GBE-009(ETH)",
+    "scid": "1bd3ec14-d879-4941-86f2-d855935f4e56",
+    "service_type": "ETHERNET",
+    "sid": "GA-01437",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.252/31",
+          "2001:798:cc:1::10d/126"
+        ],
+        "hostname": "rt1.bra.sk.geant.net",
+        "interface": "ae8.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.253/31",
+          "2001:798:cc:1::10e/126"
+        ],
+        "hostname": "rt0.vie.at.geant.net",
+        "interface": "lag-8.0"
+      }
+    ],
+    "imsid": 740792,
+    "monitored": true,
+    "name": "BRA-VIE-IPTRUNK",
+    "scid": "1be23e35-d3d5-4aff-b48b-5d491fb9dff2",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00019",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SURF"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.253/30",
+          "2001:798:1::105/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae11.333"
+      }
+    ],
+    "imsid": 660399,
+    "monitored": true,
+    "name": "SURF-AP2-IAS",
+    "scid": "1bec2d3e-df91-4002-acd8-9ec061c1b85c",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00588",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 719629,
+    "monitored": false,
+    "name": "UAT-TEST-INFRASTRUCTURE",
+    "scid": "1c060413-855e-495d-b578-22b671721eec",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-11114",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-0/1/7"
+      }
+    ],
+    "imsid": 732315,
+    "monitored": true,
+    "name": "FRANKFURT 15-FRANKFURT 15-10GBE-052(GEANT)",
+    "scid": "1c1ff9c5-79ec-409c-9986-133ea9923853",
+    "service_type": "ETHERNET",
+    "sid": "GA-02197",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663199,
+    "monitored": false,
+    "name": "PS-HAM-DE-IDRAC",
+    "scid": "1c3bf704-37bb-47fc-aabb-c71f6a0ea2fa",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00310",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "TENET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-4/1/4.201"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae28.201"
+      }
+    ],
+    "imsid": 738644,
+    "monitored": true,
+    "name": "LON-LON-GEANTOPEN-ESNET-TENET-180871",
+    "scid": "1c3d5086-6663-42a8-9a0b-59ff278af1d4",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00966",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "URAN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.44/31",
+          "2001:798:111:1::d5/126"
+        ],
+        "hostname": "rt2.kie.ua.geant.net",
+        "interface": "ae10.360"
+      }
+    ],
+    "imsid": 714003,
+    "monitored": true,
+    "name": "URAN-AP2-LHCONE",
+    "scid": "1c5bbd17-a4f2-4284-bb8b-ce0127edbd23",
+    "service_type": "L3-VPN",
+    "sid": "GS-00871",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/2/4"
+      }
+    ],
+    "imsid": 732982,
+    "monitored": true,
+    "name": "LONDON 2-LONDON 2-10GBE-022(GEANT)",
+    "scid": "1c8039f6-3f5e-4d28-b082-5a304bd02f8d",
+    "service_type": "ETHERNET",
+    "sid": "GA-01333",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.par.fr.geant.net",
+        "interface": "lag-4"
+      }
+    ],
+    "imsid": 739463,
+    "monitored": true,
+    "name": "BIL-PAR-LAG",
+    "scid": "1caee5e3-485a-4fe8-b0c1-2993bfe84943",
+    "service_type": "ETHERNET",
+    "sid": "GA-01969",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 717715,
+    "monitored": true,
+    "name": "NE-ESXI-PROD-FRA-1 VMNIC0",
+    "scid": "1cc6ce60-6064-4f03-9359-72291101eb67",
+    "service_type": "ETHERNET",
+    "sid": "GA-01619",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [],
+    "imsid": 727420,
+    "monitored": true,
+    "name": "V-LAN_1004_RT2.BRU.BE_XE-0/1/0_",
+    "scid": "1cdcadd8-99fb-4cf7-aea0-e409f5650b5a",
+    "service_type": "ETHERNET",
+    "sid": "GS-00677",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "URAN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.kie.ua.geant.net",
+        "interface": "ae10"
+      }
+    ],
+    "imsid": 713996,
+    "monitored": true,
+    "name": "URAN-AP2-LAG",
+    "scid": "1d343d79-0dbf-4e8b-8e1e-f3e586fe6c0b",
+    "service_type": "ETHERNET",
+    "sid": "GA-02046",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.tar.ee.geant.net",
+        "interface": "lag-2"
+      }
+    ],
+    "imsid": 746301,
+    "monitored": true,
+    "name": "HAM-TAR-LAG",
+    "scid": "1d8c3a7d-c23f-4c26-87a1-7e7d880631a5",
+    "service_type": "ETHERNET",
+    "sid": "GA-02350",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658888,
+    "monitored": true,
+    "name": "LONDON-LONDON-10GBE-013(ETH)",
+    "scid": "1db5425e-be79-4e74-a0dd-4165f4b1087e",
+    "service_type": "ETHERNET",
+    "sid": "GA-01533",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae21"
+      }
+    ],
+    "imsid": 728435,
+    "monitored": true,
+    "name": "COLT-GWS-BUD-LAG",
+    "scid": "1dd01503-0e23-46b7-b4c8-056ca91ca1a1",
+    "service_type": "ETHERNET",
+    "sid": "GA-02112",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CERN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx2.lis.pt.geant.net",
+        "interface": "ae11.140"
+      },
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae21.140"
+      }
+    ],
+    "imsid": 720101,
+    "monitored": true,
+    "name": "GEN-LIS-CERN-REDCLARA-22059",
+    "scid": "1dd2f3d5-4714-4201-9027-d0115be4a1da",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02176",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "WIX"
+    ],
+    "endpoints": [],
+    "imsid": 719123,
+    "monitored": false,
+    "name": "WIX-TO-NETHERLIGHT-TEST1",
+    "scid": "1de9ddba-809f-4c54-be37-eef09bb36802",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00767",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662251,
+    "monitored": true,
+    "name": "BUDAPEST-BUDAPEST-1GBE-009(ETH)",
+    "scid": "1df12657-16f8-4e6c-8221-490308e74554",
+    "service_type": "ETHERNET",
+    "sid": "GA-01564",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "172.18.4.1/24"
+        ],
+        "hostname": "rt1.por.pt.geant.net",
+        "interface": "ae1.103"
+      }
+    ],
+    "imsid": 712189,
+    "monitored": false,
+    "name": "DCN-MANAGEMENT-POR-PT",
+    "scid": "1dfeb152-3454-4f24-acc9-72fcd33d2063",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00125",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.109.18/31"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "gr-3/0/0.16"
+      }
+    ],
+    "imsid": 732665,
+    "monitored": false,
+    "name": "GRE-MULTICAST-TUNNEL-UKMO",
+    "scid": "1e02d94a-8cad-412a-86f0-8032dd9dc83f",
+    "service_type": "EUMETSAT GRE",
+    "sid": "GS-01089",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661601,
+    "monitored": false,
+    "name": "TAAS-GTS-CONTROL-PAR-FR-VLAN250",
+    "scid": "1e07851e-dcf8-4add-9e7c-424e27c83010",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00374",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NIKS"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.127.186/31",
+          "2001:798:99:1::10d/126"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae25.100"
+      }
+    ],
+    "imsid": 734932,
+    "monitored": true,
+    "name": "NL-NIKS",
+    "scid": "1e22ab62-4cfe-4989-a814-9f4c97684f53",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-01183",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.121.138/31"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae1.32"
+      }
+    ],
+    "imsid": 708223,
+    "monitored": true,
+    "name": "ESNET-GEN-773-OOB",
+    "scid": "1e244e65-16d8-4d0f-ab8f-895ae6890721",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00877",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 738743,
+    "monitored": true,
+    "name": "POZ-POZ-10G-LINK1",
+    "scid": "1e61687e-3d3b-4c5c-acee-a3d6eb348807",
+    "service_type": "ETHERNET",
+    "sid": "GA-01371",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT-IT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/2/7"
+      },
+      {
+        "hostname": "qfx.par.fr.geant.net",
+        "interface": "xe-1/0/42"
+      },
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/2/7.0"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-11/2/2.0"
+      }
+    ],
+    "imsid": 729417,
+    "monitored": true,
+    "name": "PAR-LON2-SUPERPOP-QFX-2-GEANT",
+    "scid": "1ea05a59-68b3-405e-b16d-25bf2ced49e9",
+    "service_type": "GEANT - GBS",
+    "sid": "GS-00081",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GOOGLE"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "et-5/1/0"
+      },
+      {
+        "addresses": [
+          "83.97.88.62/31",
+          "2001:798:1::30/127"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae44.0"
+      }
+    ],
+    "imsid": 746069,
+    "monitored": true,
+    "name": "GOOGLE-2-FRA-IP1",
+    "scid": "1eaffd5f-d60b-4d52-9be7-5ec5aa424e84",
+    "service_type": "ETHERNET",
+    "sid": "GS-02226",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658800,
+    "monitored": true,
+    "name": "MILAN 2 CALDERA-MILAN 2 CALDERA-1GBE-005(ETH)",
+    "scid": "1ec54337-4837-4e0f-bde2-f036875802e7",
+    "service_type": "ETHERNET",
+    "sid": "GA-01520",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "T-SYSTEMS"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "80.158.74.249/31"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae27.4003"
+      }
+    ],
+    "imsid": 734864,
+    "monitored": false,
+    "name": "NL-T-SYSTEMS-COPERNICUS",
+    "scid": "1eec53f9-ea26-45be-aaca-6d02d3eaa1ae",
+    "service_type": "L3-VPN",
+    "sid": "GS-02331",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 740194,
+    "monitored": true,
+    "name": "KAU-POZ-IP1",
+    "scid": "1f0d7347-6562-460f-9bc5-6dc100779727",
+    "service_type": "ETHERNET",
+    "sid": "GA-D0008",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CSTNET"
+    ],
+    "endpoints": [],
+    "imsid": 662986,
+    "monitored": true,
+    "name": "DE-CSTNET",
+    "scid": "1f3680cd-9a04-408b-9415-e552885f0f23",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00876",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708724,
+    "monitored": false,
+    "name": "AMS-LON-IPTRUNK-300G",
+    "scid": "1f55c8c6-ef7b-4809-baec-e4aa630a83c7",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00011",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.pra.cz.geant.net",
+        "interface": "xe-3/0/8"
+      },
+      {
+        "addresses": [
+          "62.40.106.193/30",
+          "2001:798:bb:1::15/126"
+        ],
+        "hostname": "rt1.pra.cz.geant.net",
+        "interface": "xe-3/0/8.0"
+      }
+    ],
+    "imsid": 727980,
+    "monitored": false,
+    "name": "DTN-PRA-10G-DATA",
+    "scid": "1f8e5e54-3ced-49c6-9bb6-0eb5f2d1d919",
+    "service_type": "SERVER LINK",
+    "sid": "GS-02354",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ARNES"
+    ],
+    "endpoints": [
+      {
+        "equipment": "LJU02-GRV1",
+        "port": "1/3/3.1"
+      },
+      {
+        "equipment": "ZAG01-GRV1",
+        "port": "1/3/3.1"
+      }
+    ],
+    "imsid": 730786,
+    "monitored": true,
+    "name": "COLT-GWS-ARNES",
+    "scid": "1f918604-9319-4fef-a075-471362557297",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-02098",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RESTENA"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-22"
+      }
+    ],
+    "imsid": 744017,
+    "monitored": true,
+    "name": "RESTENA-AP2-LAG",
+    "scid": "1fd474d6-a2e9-4a72-bd8d-157b625888c6",
+    "service_type": "ETHERNET",
+    "sid": "GA-01818",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SINGAREN"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PF1-RARE.AMS.NL.GEANT.NET",
+        "port": "XE-2"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "xe-9/0/3.375"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae12.375"
+      }
+    ],
+    "imsid": 736108,
+    "monitored": false,
+    "name": "AMS-LON-SINGAREN-RARE-123034",
+    "scid": "1fe09db3-80af-4f2b-b1e2-26f60c401bbe",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02315",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658775,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-1GBE-008(ETH)",
+    "scid": "1fe80353-f8b6-4433-8f43-3596251b9822",
+    "service_type": "ETHERNET",
+    "sid": "GA-01501",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 713232,
+    "monitored": true,
+    "name": "BUC-CHI-LAG",
+    "scid": "1ff55071-a418-4b7a-a9f4-ab82e71f12ae",
+    "service_type": "ETHERNET",
+    "sid": "TA-02003",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "DFN"
+    ],
+    "endpoints": [],
+    "imsid": 733114,
+    "monitored": false,
+    "name": "FRA-GEN-CERN-DFN-2",
+    "scid": "1ff82a03-96c2-4443-b9fe-d59963b713f2",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02444",
+    "speed": 536870912000,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/3/3"
+      }
+    ],
+    "imsid": 721146,
+    "monitored": true,
+    "name": "PARIS 007B-PARIS 007B-10GBE-003(GEANT)",
+    "scid": "1ffac299-0dd2-4176-8ef8-4396c5e8c82d",
+    "service_type": "ETHERNET",
+    "sid": "GA-02192",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.135/31",
+          "2001:798:cc::ce/126"
+        ],
+        "hostname": "rt1.chi.md.geant.net",
+        "interface": "ae5.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.134/31",
+          "2001:798:cc::cd/126"
+        ],
+        "hostname": "rt1.buc.ro.geant.net",
+        "interface": "ae5.0"
+      }
+    ],
+    "imsid": 745144,
+    "monitored": true,
+    "name": "BUC-CHI-IPTRUNK",
+    "scid": "201a2e2e-e629-4f2a-8b58-8943f20bd3fc",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00022",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/0/4"
+      },
+      {
+        "addresses": [
+          "62.40.114.38/31",
+          "2001:798:bb:2::41/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/0/4.0"
+      }
+    ],
+    "imsid": 708184,
+    "monitored": false,
+    "name": "PSMP-LHC-MANAGEMENT-LON-UK-VLAN0",
+    "scid": "203bd8cd-b9a4-4670-85a9-66656b2a0a33",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00359",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 719588,
+    "monitored": true,
+    "name": "AMSTERDAM-AMSTERDAM-1GBE-001(GEANT)",
+    "scid": "2048f4b8-112d-49e5-accd-dabc8881d3f6",
+    "service_type": "ETHERNET",
+    "sid": "GA-01579",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "JISC"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.100.22/31",
+          "2001:798::25/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae10.667"
+      }
+    ],
+    "imsid": 660392,
+    "monitored": false,
+    "name": "JISC-AP1-CLS",
+    "scid": "2054f883-c6b9-451d-9f75-08b056387afa",
+    "service_type": "GEANT CLOUD PEERING",
+    "sid": "GS-00612",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "xe-2/1/4"
+      }
+    ],
+    "imsid": 720006,
+    "monitored": true,
+    "name": "SCION1ILO.GEN.CH-INTERNAL-LL",
+    "scid": "207ab701-434f-4965-abe7-6fd9f318f0a3",
+    "service_type": "ETHERNET",
+    "sid": "GA-02188",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10"
+      }
+    ],
+    "imsid": 708667,
+    "monitored": true,
+    "name": "LAG-RT2.AMS.NL_AE10",
+    "scid": "20a13559-cc78-425a-b4c7-b9be4a7535e7",
+    "service_type": "ETHERNET",
+    "sid": "GA-02034",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 729770,
+    "monitored": true,
+    "name": "TARTU-TARTU-LAG-005(GEANT)",
+    "scid": "20c82aaf-ae1b-43c5-a12b-dce60ea1210e",
+    "service_type": "ETHERNET",
+    "sid": "GA-02054",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.127.132/31",
+          "2001:798:99:1::cd/126"
+        ],
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-1/2/2.17"
+      }
+    ],
+    "imsid": 660718,
+    "monitored": true,
+    "name": "VIRGIN-MEDIA-EX1-LON2-TO-CAM-SRX-VLAN17",
+    "scid": "20cf47e9-1fcf-49e3-ae88-157e3d880cae",
+    "service_type": "CORPORATE",
+    "sid": "GS-00004",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CERN"
+    ],
+    "endpoints": [],
+    "imsid": 741019,
+    "monitored": false,
+    "name": "LIS-LON-REDCLARA-SINGREN-24065",
+    "scid": "20d7173c-c4bc-4374-a79a-005ecf8bea57",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02566",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GARR"
+    ],
+    "endpoints": [],
+    "imsid": 712383,
+    "monitored": true,
+    "name": "MD-VPN-VRR-LJUBLJANA-GARR-1-IT",
+    "scid": "20e56992-62c4-466f-905c-ab827afa3ade",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01021",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.20"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28.4081"
+      }
+    ],
+    "imsid": 739675,
+    "monitored": true,
+    "name": "BELNET-ARTEV-EXPRESSROUTE-VLAN4081",
+    "scid": "210e27bc-ebc6-4022-87bf-7d68bbad573a",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01123",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 679098,
+    "monitored": true,
+    "name": "FRA-POZ-LAG",
+    "scid": "21341350-efec-4d23-98da-3fcc41214fc2",
+    "service_type": "ETHERNET",
+    "sid": "GA-01960",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "195.169.24.11/28",
+          "2001:610:9d8::b/64"
+        ],
+        "hostname": "srx2.am.office.geant.net",
+        "interface": "ge-0/0/0.10"
+      }
+    ],
+    "imsid": 663187,
+    "monitored": false,
+    "name": "SRX2-AMS-INFRASTRUCTURE-MANAGEMENT",
+    "scid": "213c036b-26ce-444f-aceb-c14185c47521",
+    "service_type": "CORPORATE",
+    "sid": "GS-01747",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 713233,
+    "monitored": true,
+    "name": "BUC-CHI-IPTRUNK",
+    "scid": "2145b532-e3c0-4ac7-a08b-99db7ea7b464",
+    "service_type": "IP TRUNK",
+    "sid": "TA-00022|TS-00022",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663074,
+    "monitored": false,
+    "name": "PS-FRA-DE-PSMP2-OWAMP-ADDITIONAL-IF",
+    "scid": "217fe55c-1bd7-458d-86af-54e9cee59f81",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00304",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT-IT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "ae31.0"
+      },
+      {
+        "addresses": [
+          "10.100.66.8/31"
+        ],
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "ae16.300"
+      }
+    ],
+    "imsid": 661549,
+    "monitored": true,
+    "name": "LONDON2-CORPORATE-NETWORK-SERVICES",
+    "scid": "21a5e397-d6f2-463b-af4b-54c9eeac7449",
+    "service_type": "CORPORATE",
+    "sid": "GS-00824",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "TEIN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-1/0/0"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae28.1"
+      }
+    ],
+    "imsid": 668866,
+    "monitored": true,
+    "name": "LON-BEIJING-LEASEDSPAN",
+    "scid": "21aa2198-7a5c-4944-8646-c793e0bda5fa",
+    "service_type": "ETHERNET",
+    "sid": "GA-01479",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.165/31",
+          "2001:798:cc::6/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae8.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.164/31",
+          "2001:798:cc::5/126"
+        ],
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae2.0"
+      }
+    ],
+    "imsid": 736813,
+    "monitored": true,
+    "name": "AMS2-LON-AMT-IPTRUNK",
+    "scid": "21c3396e-cc9d-4601-80dc-d228cbc265ce",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00012",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "WACREN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-10/0/0"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae22"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae22.1"
+      }
+    ],
+    "imsid": 669242,
+    "monitored": true,
+    "name": "WACREN-GEO-UK-1-LL",
+    "scid": "22075da7-b83a-4c5f-9a23-2697a68f9c69",
+    "service_type": "CBL1",
+    "sid": "GA-01838",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SWITCH"
+    ],
+    "endpoints": [
+      {
+        "equipment": "MIL02-GRV3",
+        "port": "1/2/3"
+      },
+      {
+        "equipment": "GEN01-GRV4",
+        "port": "1/2/3"
+      }
+    ],
+    "imsid": 734723,
+    "monitored": true,
+    "name": "GEN1-MIL2-ECMWF-SWITCH-GARR-23109-2",
+    "scid": "22096e5a-4b83-4dd5-b683-4449d800f299",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-02420",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-1/2/4"
+      }
+    ],
+    "imsid": 734102,
+    "monitored": true,
+    "name": "LONDON 2-LONDON 2-10GBE-001(GEANT)",
+    "scid": "223ce175-d3b3-4aaa-8c2a-f4eb7db5d55c",
+    "service_type": "ETHERNET",
+    "sid": "GA-01313",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CERN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.33/30",
+          "2001:798:1::25/126"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae17.333"
+      }
+    ],
+    "imsid": 663049,
+    "monitored": true,
+    "name": "CERN-AP1-IAS",
+    "scid": "225c1029-e685-424c-bc6d-4bb6fb8922ff",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00562",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NETHERLIGHT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae23.34"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae15.34"
+      }
+    ],
+    "imsid": 734612,
+    "monitored": false,
+    "name": "AMS-GEN-SCION-NETHERLIGHT-SWITCH-20018",
+    "scid": "225e173e-a434-48f0-8d45-788131e71ee2",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00639",
+    "speed": 858993459200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.fra.de.geant.net",
+        "interface": "ae0.0"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae30.3008"
+      }
+    ],
+    "imsid": 733008,
+    "monitored": false,
+    "name": "INFOBLOX-DNS-FRA-DE",
+    "scid": "2282cdd0-5dae-45c2-8678-a5c54ee6d33d",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00200",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae14.1290"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-160231"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-21:cp-1290"
+      }
+    ],
+    "imsid": 744061,
+    "monitored": false,
+    "name": "IMINDS-00670",
+    "scid": "22e12fe0-8788-470e-9098-512487831eea",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00670",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BREN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.sof.bg.geant.net",
+        "interface": "lag-20"
+      }
+    ],
+    "imsid": 744882,
+    "monitored": true,
+    "name": "BREN-AP1-LAG",
+    "scid": "23558e1f-2bd8-4802-8062-6ff1d78cb8b3",
+    "service_type": "ETHERNET",
+    "sid": "GA-01291",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [],
+    "imsid": 736730,
+    "monitored": false,
+    "name": "NORDU-TO-WIX-TEST",
+    "scid": "23866bb9-3897-498c-9057-74b1e3126df9",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00744",
+    "speed": 536870912000,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.mil2.it.geant.net",
+        "interface": "lag-6"
+      }
+    ],
+    "imsid": 745506,
+    "monitored": true,
+    "name": "ATH2-MIL2-LAG",
+    "scid": "23aa4fbe-15bc-4f69-98ce-695c23ec901b",
+    "service_type": "ETHERNET",
+    "sid": "GA-01777",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "REDIRIS"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "xe-2/0/0.937"
+      },
+      {
+        "hostname": "rt1.bil.es.geant.net",
+        "interface": "ae15.937"
+      }
+    ],
+    "imsid": 726620,
+    "monitored": false,
+    "name": "BIL-GEN-REDIRIS-RARE",
+    "scid": "23ded7cb-8234-4030-b0ff-e34a2755d9a2",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02288",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 712095,
+    "monitored": false,
+    "name": "HAM-TAL-IPTRUNK",
+    "scid": "23f280a6-88cf-44ab-a20f-34d2571b2235",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00041",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.107.220/31",
+          "2001:798:bb:2::d9/126"
+        ],
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/3/2.22"
+      }
+    ],
+    "imsid": 677828,
+    "monitored": false,
+    "name": "PS-LON2-UK-OWAMP-FPC2",
+    "scid": "2401b1fb-4bda-4d11-ab4a-9fb64e746e8e",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00327",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.10/31",
+          "2001:798:cc:1::a5/126"
+        ],
+        "hostname": "rt1.bil.es.geant.net",
+        "interface": "ae6.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.11/31",
+          "2001:798:cc:1::a6/126"
+        ],
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae6.0"
+      }
+    ],
+    "imsid": 719646,
+    "monitored": true,
+    "name": "BIL-MAD-IPTRUNK",
+    "scid": "2406e5d4-3c78-436a-81b7-62b8035e19c4",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02203",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658694,
+    "monitored": false,
+    "name": "730XD-4-VSAN-TRAFFIC-LAG",
+    "scid": "2410c8d7-52fc-41d4-93c6-e88ff83effcd",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01680",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ULAKBIM"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.sof.bg.geant.net",
+        "interface": "lag-23"
+      }
+    ],
+    "imsid": 744993,
+    "monitored": true,
+    "name": "ULAKBIM-AP2-LAG",
+    "scid": "244f1a0a-8a98-4b6d-83d5-41fd1284f564",
+    "service_type": "ETHERNET",
+    "sid": "GA-01962",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662198,
+    "monitored": true,
+    "name": "FRANKFURT-FRANKFURT-1GBE-009(ETH)",
+    "scid": "24bc000b-4935-46c6-8b19-e410c041f350",
+    "service_type": "ETHERNET",
+    "sid": "GA-01610",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661377,
+    "monitored": false,
+    "name": "TAAS-GTS-CONTROL-2",
+    "scid": "24c13d08-863d-4140-b317-62405e000083",
+    "service_type": "GTS",
+    "sid": "GS-01190",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CARNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.29/30",
+          "2001:798:1::21/126"
+        ],
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae12.333"
+      }
+    ],
+    "imsid": 730098,
+    "monitored": true,
+    "name": "CARNET-AP2-IAS",
+    "scid": "24d033d8-f66d-4a02-a81c-e5e4fb5fc895",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00560",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.140/31",
+          "2001:798:cc::d9/126"
+        ],
+        "hostname": "rt1.buc.ro.geant.net",
+        "interface": "ae2.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.141/31",
+          "2001:798:cc::da/126"
+        ],
+        "hostname": "rt0.buc.ro.geant.net",
+        "interface": "lag-2.0"
+      }
+    ],
+    "imsid": 745576,
+    "monitored": false,
+    "name": "BUC-BUC-IPTRUNK",
+    "scid": "251fabbc-0c95-4f48-a67b-61fa3a90923d",
+    "service_type": "IP TRUNK",
+    "sid": "GS-50060",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SCION"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/2/3.370"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/2/4.370"
+      },
+      {
+        "addresses": [
+          "10.0.1.254/24"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "irb.370"
+      }
+    ],
+    "imsid": 723805,
+    "monitored": false,
+    "name": "SCION-SCION-PAR-INTERNAL-VPN-VL370",
+    "scid": "25263f65-b258-43a9-81aa-f81b8645cb4a",
+    "service_type": "L3-VPN",
+    "sid": "GS-02215",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 739734,
+    "monitored": true,
+    "name": "FRA-GEN-LAG",
+    "scid": "254687bf-3b3b-4233-bea4-c91ccbec7f92",
+    "service_type": "ETHERNET",
+    "sid": "GA-01961,",
+    "speed": 858993459200,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae10"
+      }
+    ],
+    "imsid": 659346,
+    "monitored": true,
+    "name": "VIX-AT-LAG",
+    "scid": "2564019f-85c6-4bf1-af8e-a520a437f6cf",
+    "service_type": "ETHERNET",
+    "sid": "GA-01867",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.poz.pl.geant.net",
+        "interface": "lag-2"
+      }
+    ],
+    "imsid": 740198,
+    "monitored": true,
+    "name": "KIE-POZ-LAG",
+    "scid": "25726f75-9112-4125-a46f-9857eec8a21f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01996",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 709847,
+    "monitored": true,
+    "name": "BRUSSELS-BRUSSELS-1GBE-003(ETH)",
+    "scid": "25739c03-f123-4df7-b9a2-85f30f407806",
+    "service_type": "ETHERNET",
+    "sid": "GA-01359",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.27/31",
+          "2001:798:cc::2a/126"
+        ],
+        "hostname": "rt0.lon.uk.geant.net",
+        "interface": "lag-6.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.26/31",
+          "2001:798:cc::29/126"
+        ],
+        "hostname": "rt0.dub.ie.geant.net",
+        "interface": "lag-1.0"
+      }
+    ],
+    "imsid": 747278,
+    "monitored": true,
+    "name": "DUB-LON-IPTRUNK",
+    "scid": "2575bee7-a12c-43fa-95c6-f6c557f0f98a",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00031",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662231,
+    "monitored": true,
+    "name": "AMSTERDAM-AMSTERDAM-1GBE-051(ETH)",
+    "scid": "259c9445-6965-4a61-949c-2a163abcc204",
+    "service_type": "ETHERNET",
+    "sid": "GA-01578",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "mx1.vie.at - FRA-VIE Multicast Traffic",
+    "scid": "25a553ee-6c24-4c36-bcb6-b3d05b790b45",
+    "service_type": null,
+    "sid": "DS-04013",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 702111,
+    "monitored": true,
+    "name": "BRU-LON-LAG",
+    "scid": "2612879a-170c-43c6-957e-1b000b3890ee",
+    "service_type": "ETHERNET",
+    "sid": "GA-01848",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 678080,
+    "monitored": true,
+    "name": "FRANKFURT-FRANKFURT-10GBE-099(GEANT)",
+    "scid": "261e6004-60a2-46c8-9d4a-f14e5b9dcb19",
+    "service_type": "ETHERNET",
+    "sid": "GA-02132",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-1/0/4"
+      }
+    ],
+    "imsid": 717185,
+    "monitored": true,
+    "name": "LONDON 2-LONDON 2-10GBE-004(GEANT)",
+    "scid": "26229f64-bab7-46fc-9f13-7cee0376e361",
+    "service_type": "ETHERNET",
+    "sid": "GA-01240",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SINET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae12.790"
+      },
+      {
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae15.790"
+      }
+    ],
+    "imsid": 746076,
+    "monitored": true,
+    "name": "MAR-MAR-02645",
+    "scid": "263f26fc-a1ae-4070-bf40-8691c7adea88",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02645",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662364,
+    "monitored": true,
+    "name": "FRANKFURT-FRANKFURT-10GBE-077(GEANT)",
+    "scid": "264b202d-8ecc-482c-b9b4-98f68e0937e9",
+    "service_type": "ETHERNET",
+    "sid": "GA-01602",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "REDIRIS"
+    ],
+    "endpoints": [],
+    "imsid": 719490,
+    "monitored": false,
+    "name": "REDIRIS-BGP-LU-COC-AP1",
+    "scid": "266236cd-e560-472d-8456-ed48190b71d2",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01057",
+    "speed": 322122547200,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ROEDUNET"
+    ],
+    "endpoints": [],
+    "imsid": 747888,
+    "monitored": true,
+    "name": "ROEDUNET-AP1-LAG",
+    "scid": "266abd95-a109-47f6-872b-7e35b3fd833e",
+    "service_type": "ETHERNET",
+    "sid": "GA-018934",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "195.169.24.25/29",
+          "2001:610:9d8:1::1/64"
+        ],
+        "hostname": "srx1.am.office.geant.net",
+        "interface": "ge-0/0/0.50"
+      }
+    ],
+    "imsid": 662969,
+    "monitored": false,
+    "name": "SRX1-AMS-TO-FW-WAN",
+    "scid": "267508c4-2dfb-423b-aa02-5bb3434d858e",
+    "service_type": "CORPORATE",
+    "sid": "GS-01194",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "WIX"
+    ],
+    "endpoints": [],
+    "imsid": 719128,
+    "monitored": false,
+    "name": "WIX-TO-NETHERLIGHT-TEST2",
+    "scid": "2685b7a0-102d-44f9-aac3-b5e5c7908544",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00768",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663203,
+    "monitored": false,
+    "name": "LHCOPN-MDMSERVER-VLAN72",
+    "scid": "26d521ae-714c-4602-81d1-51d91f9a9d71",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00226",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661633,
+    "monitored": false,
+    "name": "OCVM-LON-UK",
+    "scid": "26f27332-b058-4c23-bf53-274e51fe295b",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00137",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.55/31",
+          "2001:798:cc:1::122/126"
+        ],
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae6.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.54/31",
+          "2001:798:cc:1::121/126"
+        ],
+        "hostname": "rt2.bra.sk.geant.net",
+        "interface": "ae6.0"
+      }
+    ],
+    "imsid": 730086,
+    "monitored": true,
+    "name": "BRA-BUD-IPTRUNK",
+    "scid": "2737a2e5-d153-4323-8a65-5415e75af1c3",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00018",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CAREN"
+    ],
+    "endpoints": [],
+    "imsid": 663186,
+    "monitored": false,
+    "name": "DE-CAREN",
+    "scid": "274e0abd-6bbf-4f73-b118-dcd8a6cb6b24",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00875",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.61/30",
+          "2001:0798:0012:10aa::11/126"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae14.160"
+      }
+    ],
+    "imsid": 663060,
+    "monitored": true,
+    "name": "RENATER-AP2",
+    "scid": "275fc372-db9f-4589-9726-7626343efa46",
+    "service_type": "GEANT IP",
+    "sid": "GS-00506",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "EENET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.57/30",
+          "2001:798:1::45/126"
+        ],
+        "hostname": "rt0.rig.lv.geant.net",
+        "interface": "lag-21.200"
+      }
+    ],
+    "imsid": 745985,
+    "monitored": true,
+    "name": "EENET-AP2-IAS",
+    "scid": "27662825-c993-4152-8cb2-84314522215f",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00569",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ASNET-TW"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "202.169.175.206/30",
+          "2001:0c08:aabb::1002/126"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "xe-0/1/5.105"
+      }
+    ],
+    "imsid": 742821,
+    "monitored": true,
+    "name": "NL-ASNET-TW",
+    "scid": "276ea9a7-bbc0-48e8-bcb1-c7496fcf1afd",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00888",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BREN"
+    ],
+    "endpoints": [],
+    "imsid": 712403,
+    "monitored": false,
+    "name": "MD-VPN-VRR-PARIS-BREN-BG",
+    "scid": "277cae1e-6d66-404d-b2e8-bfee809455b9",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01034",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "DUB2-LON2 LAG",
+    "scid": "27edbd42-08bb-4f54-bc60-3c2b8b98549b",
+    "service_type": null,
+    "sid": "GA-01763",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.226/31",
+          "2001:798:cc:1::95/126"
+        ],
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae5.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.227/31",
+          "2001:798:cc:1::96/126"
+        ],
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae2.0"
+      }
+    ],
+    "imsid": 717047,
+    "monitored": true,
+    "name": "MAD-MAR-IPTRUNK",
+    "scid": "282334ba-996c-40aa-b3b5-a74c9fa24269",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00054",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ASREN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-1/2/5"
+      }
+    ],
+    "imsid": 659069,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-065(ETH)",
+    "scid": "28287f3b-485c-4dbc-898f-b9eccd41ee9d",
+    "service_type": "ETHERNET",
+    "sid": "GA-01315",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SURF"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.233/30",
+          "2001:798:1::b9/126"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae15.333"
+      }
+    ],
+    "imsid": 734590,
+    "monitored": true,
+    "name": "SURF-AP1-IAS",
+    "scid": "282e1bce-66dc-4965-b474-f26972b3a457",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00587",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "KIFU"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.58/31",
+          "2001:798:111:1::dd/126"
+        ],
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae10.111"
+      }
+    ],
+    "imsid": 726626,
+    "monitored": true,
+    "name": "KIFU-AP1-LHCONE",
+    "scid": "285062ec-f192-4275-8e6d-b83c25ea5d8c",
+    "service_type": "L3-VPN",
+    "sid": "GS-02282",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662520,
+    "monitored": true,
+    "name": "SURFNET VLAN 100 - FOR LINK TO GEANT IT VRF VIA MX1.AMS - SURFNET SERVICE ID: 5836",
+    "scid": "285f956a-3d47-4ff4-a43a-2e497d2f374f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01263",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "MARNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.101/30",
+          "2001:798:1::7d/126"
+        ],
+        "hostname": "rt0.sof.bg.geant.net",
+        "interface": "lag-22.333"
+      }
+    ],
+    "imsid": 744958,
+    "monitored": true,
+    "name": "MARNET-AP1-IAS",
+    "scid": "2886dc7d-1ced-4483-b406-afc81766c717",
+    "service_type": "GWS - INDIRECT",
+    "sid": "GS-00536",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663248,
+    "monitored": false,
+    "name": "OWAMP-SOF-BG",
+    "scid": "2896fe35-71a6-440a-a283-8bb7ed7bb8b8",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00270",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae27"
+      }
+    ],
+    "imsid": 659351,
+    "monitored": true,
+    "name": "AKAMAI-LAG",
+    "scid": "289e8149-9523-4df8-af9f-b3aec269f266",
+    "service_type": "ETHERNET",
+    "sid": "GA-01872",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "DE-CIX"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "185.1.47.34/24",
+          "2001:7f8:36::51e5:0:1/64"
+        ],
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae22.100"
+      }
+    ],
+    "imsid": 740868,
+    "monitored": false,
+    "name": "IX-PEERINGS-IN-DE-CIX-MAR",
+    "scid": "28a95768-49ec-4c84-ab68-90981cd7ee65",
+    "service_type": "IP PEERING - NON R&E (PUBLIC)",
+    "sid": "GS-00948",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "xe-7/0/1"
+      }
+    ],
+    "imsid": 742611,
+    "monitored": true,
+    "name": "MAD-MAD-MGMT-LINK-2",
+    "scid": "28b5f700-a84f-469c-a340-96023b772ba9",
+    "service_type": "ETHERNET",
+    "sid": "GA-01660",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GRNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx2.ath.gr.geant.net",
+        "interface": "xe-2/0/0"
+      },
+      {
+        "hostname": "mx2.ath.gr.geant.net",
+        "interface": "xe-2/0/0.700"
+      }
+    ],
+    "imsid": 707137,
+    "monitored": true,
+    "name": "ATH-KOR-SMARTFIRE-GRNET-KOREN-15007",
+    "scid": "29299c5d-52b9-4701-ae0f-27eccd5ef444",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00664",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708721,
+    "monitored": false,
+    "name": "MAD-PAR-IPTRUNK",
+    "scid": "293e36a2-c231-456e-a467-e2df8a48e1d3",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00055",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "REDCLARA"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.127.150/31",
+          "2001:798:99:1::ed/126"
+        ],
+        "hostname": "mx2.lis.pt.geant.net",
+        "interface": "ae11.615"
+      }
+    ],
+    "imsid": 713837,
+    "monitored": true,
+    "name": "PT-REDCLARA",
+    "scid": "2941d1e3-998e-4c32-b31c-3c4f0fa252a8",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00903",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "UBUNTUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/3/2.801"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae26.801"
+      }
+    ],
+    "imsid": 709301,
+    "monitored": true,
+    "name": "LON-LON-MISC-UBUNTUNET-INTERNET2-170341",
+    "scid": "29642e9a-68aa-49ce-a061-7c97416c1fb3",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00729",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "LJU-ZAG TRUNK",
+    "scid": "2972bf86-150f-47a1-8365-01804aa4e57a",
+    "service_type": null,
+    "sid": "DS-19823",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ULAKBIM"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.153/30",
+          "2001:798:2b:10aa::5/126"
+        ],
+        "hostname": "rt0.sof.bg.geant.net",
+        "interface": "lag-23.100"
+      }
+    ],
+    "imsid": 745009,
+    "monitored": true,
+    "name": "ULAKBIM-AP2",
+    "scid": "2a262c6d-666d-4c05-9d7b-8cfe7c584a76",
+    "service_type": "GEANT IP",
+    "sid": "GS-00518",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "CHRouter - Traffic - New CH - OC 1Gbps Virgin Media Circuit",
+    "scid": "2a9f61a9-55b7-4f9c-98e9-72397df23d7b",
+    "service_type": null,
+    "sid": "DS-27395",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5.1003"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae12.1003"
+      }
+    ],
+    "imsid": 713695,
+    "monitored": true,
+    "name": "LON-LON-GEANTOPEN-NORDUNET-TEIN-21067",
+    "scid": "2ab8e105-efde-422b-bb2d-fbcc422dcad0",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00983",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "TEIN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "202.179.249.210/30",
+          "2001:254:8001:202::2/64"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae12.3200"
+      }
+    ],
+    "imsid": 661919,
+    "monitored": true,
+    "name": "TEIN-LON-LHCONE",
+    "scid": "2abfb54b-7d83-44fb-b948-f192bb4c3edb",
+    "service_type": "L3-VPN",
+    "sid": "GS-00867",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.225/30"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae33.2013"
+      }
+    ],
+    "imsid": 740767,
+    "monitored": true,
+    "name": "NL-NORDUNET-LHCONE-IPV4",
+    "scid": "2adb96cb-4971-49ba-b7d4-79700e61c1ac",
+    "service_type": "L3-VPN",
+    "sid": "GS-00838",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "lon-lon2_GEANTopen_NORDUNET-SINET_16008",
+    "scid": "2b060060-439c-459c-9693-d549bb3261cd",
+    "service_type": null,
+    "sid": "DS-33233",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [],
+    "imsid": 659006,
+    "monitored": true,
+    "name": "PARIS-BMS-SRV7-10GBE-001",
+    "scid": "2b15c569-3d42-497c-a47b-4a97ad413804",
+    "service_type": "ETHERNET",
+    "sid": "GA-01378",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [],
+    "imsid": 709748,
+    "monitored": true,
+    "name": "GEANT EUMETCAST AP2",
+    "scid": "2b2529bd-ca3f-4c80-b8b6-760708190d66",
+    "service_type": "EUMETSAT TERRESTRIAL",
+    "sid": "GS-01106",
+    "speed": 322122547200,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [],
+    "imsid": 678920,
+    "monitored": false,
+    "name": "SRV_CORPORATE",
+    "scid": "2b307a5d-2715-407a-82f0-b58567c3d6be",
+    "service_type": "CORPORATE",
+    "sid": "GS-00466",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "AMT1.LON2.UK",
+        "port": "AE1.20"
+      },
+      {
+        "addresses": [
+          "83.97.90.42/31"
+        ],
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "ae7.20"
+      }
+    ],
+    "imsid": 747034,
+    "monitored": false,
+    "name": "LON2-LON2-AMT-RELAYLINK-IAS",
+    "scid": "2b5b16c5-de74-45b3-b46e-08ac99e33acd",
+    "service_type": "SERVER LINK",
+    "sid": "GS-02638",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 659111,
+    "monitored": true,
+    "name": "PRAGUE-PRAGUE-1GBE-012(ETH)",
+    "scid": "2b70ed46-b4f4-4585-841a-b904010eea00",
+    "service_type": "ETHERNET",
+    "sid": "GA-01444",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "RESTENA"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae18.551"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae12.551"
+      }
+    ],
+    "imsid": 737780,
+    "monitored": true,
+    "name": "FRA-PAR-SLICES-RESTENA-RENATER-VL551",
+    "scid": "2b7a77f9-c233-44b3-ba26-c5d3205dde6f",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02485",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SWITCH"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.157/30",
+          "2001:798:1::c1/126"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae13.333"
+      }
+    ],
+    "imsid": 661345,
+    "monitored": true,
+    "name": "SWITCH-AP2-IAS",
+    "scid": "2b8232fd-2b7c-4936-85ed-5486357aca05",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00590",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CESNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.13/30",
+          "2001:798:1b:10aa::19/126"
+        ],
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae23.600"
+      }
+    ],
+    "imsid": 731676,
+    "monitored": true,
+    "name": "CESNET-AP2",
+    "scid": "2b824aa6-1daf-438e-9f6f-6ae3e5a8ffa2",
+    "service_type": "GEANT IP",
+    "sid": "GS-00445",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SWITCH"
+    ],
+    "endpoints": [],
+    "imsid": 705479,
+    "monitored": false,
+    "name": "GEN-PAR-MISC-SWITCH-INTERNET2-18046",
+    "scid": "2bc26a0c-2c47-464f-82d4-590d60efbf28",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00714",
+    "speed": 536870912000,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 712119,
+    "monitored": true,
+    "name": "SW4.LON.UK-LAG",
+    "scid": "2bd450e6-93d3-4057-bb05-e6cbd9cb6fdb",
+    "service_type": "ETHERNET",
+    "sid": "GA-01837",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663240,
+    "monitored": false,
+    "name": "CITY-HOUSE-LAB-INFINERA-MGMT-NETWORK",
+    "scid": "2bf46eee-8514-4671-8408-e70e38e78ac6",
+    "service_type": "CORPORATE",
+    "sid": "GS-00449",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658564,
+    "monitored": false,
+    "name": "730XD-2-SLOT0-PORT1-VMNIC0-PAR",
+    "scid": "2bfc77b2-e154-4208-ae7e-ccb05ad4bea1",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01285",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mil2.it.geant.net",
+        "interface": "xe-1/1/3"
+      },
+      {
+        "hostname": "mx1.mil2.it.geant.net",
+        "interface": "xe-1/1/3.1024"
+      }
+    ],
+    "imsid": 661294,
+    "monitored": true,
+    "name": "SDN-BOD-BR53-OF-7-HOST-G-ETH3",
+    "scid": "2c0feb30-6a22-4f23-858e-1d230cfdeea1",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00758",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.dub.ie.geant.net",
+        "interface": "lag-21"
+      }
+    ],
+    "imsid": 747270,
+    "monitored": true,
+    "name": "INEX-LAG",
+    "scid": "2c102103-9554-4f7e-9c0c-ae066ee731d5",
+    "service_type": "ETHERNET",
+    "sid": "GA-01924",
+    "speed": 32212254720,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "DFN"
+    ],
+    "endpoints": [],
+    "imsid": 732583,
+    "monitored": true,
+    "name": "DFN-BGP-LU-COC-AP2",
+    "scid": "2c129a08-b3fe-4caf-811d-e4973bc5e0d2",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01002",
+    "speed": 322122547200,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ARNES"
+    ],
+    "endpoints": [],
+    "imsid": 709735,
+    "monitored": true,
+    "name": "ARNES-EUMETCAST-AP1",
+    "scid": "2c3dc828-2c9d-4292-a842-181916356e09",
+    "service_type": "EUMETSAT TERRESTRIAL",
+    "sid": "GS-01096",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 732256,
+    "monitored": true,
+    "name": "ZAGREB 1-ZAGREB 1-1GBE-025(GEANT)",
+    "scid": "2c438148-250a-405d-b8ea-a1a3bdf99263",
+    "service_type": "ETHERNET",
+    "sid": "GA-01494",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ASNET-AM"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-11/1/1"
+      }
+    ],
+    "imsid": 732090,
+    "monitored": true,
+    "name": "ASNET-AM-GWS-COLT-LL1",
+    "scid": "2c5d139a-a4a7-4b13-92bf-669bcba6d9d9",
+    "service_type": "ETHERNET",
+    "sid": "GA-01600",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.100"
+      }
+    ],
+    "imsid": 663022,
+    "monitored": false,
+    "name": "CAM-OFFICE-TO-AMS-OFFICE-L2CIRCUIT",
+    "scid": "2c608dbc-da31-4cd1-87b4-5f221085e8e5",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00107",
+    "speed": 0,
+    "status": "terminated"
+  },
+  {
+    "customers": [
+      "INTERNET2"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "64.57.30.210/28",
+          "2001:468:ef00:4001::3/64"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae26.2002"
+      }
+    ],
+    "imsid": 661750,
+    "monitored": true,
+    "name": "INTERNET2-LON-LHCONE",
+    "scid": "2cd18b7b-837d-4272-97ce-404073b07e1e",
+    "service_type": "L3-VPN",
+    "sid": "GS-00830",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 732384,
+    "monitored": true,
+    "name": "BUDAPEST-BUDAPEST-1GBE-002(GEANT)",
+    "scid": "2cd614b5-134b-4be3-a581-17a16d38bd02",
+    "service_type": "ETHERNET",
+    "sid": "GA-01563",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28"
+      }
+    ],
+    "imsid": 739601,
+    "monitored": true,
+    "name": "BELNET-AP2-LAG",
+    "scid": "2cf06177-97ba-411a-a21d-4263757b0aef",
+    "service_type": "ETHERNET",
+    "sid": "GA-01842",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/0/5"
+      },
+      {
+        "addresses": [
+          "62.40.126.190/31",
+          "2001:798:111:1::69/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/0/5.0"
+      }
+    ],
+    "imsid": 708281,
+    "monitored": false,
+    "name": "PSMP-LHC-OWD-LON-UK-VLAN0",
+    "scid": "2d0afbf8-a198-496d-afc4-9bec35b8c056",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00360",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "ae16"
+      }
+    ],
+    "imsid": 659382,
+    "monitored": true,
+    "name": "LAG-MX1.LON2.UK_AE16",
+    "scid": "2d108a02-a649-482f-8d80-305623cc6005",
+    "service_type": "ETHERNET",
+    "sid": "GA-01759",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "xe-2/2/0"
+      }
+    ],
+    "imsid": 738655,
+    "monitored": true,
+    "name": "ES-MICROSOFT-EXPRESSROUTE-LL2",
+    "scid": "2d750c3d-f984-4d89-b015-496bdb1c549e",
+    "service_type": "ETHERNET",
+    "sid": "GA-01347",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SINET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae15.3018"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae2.3018"
+      }
+    ],
+    "imsid": 736074,
+    "monitored": false,
+    "name": "AMS-PAR-SINET-SD-WAN-SINET-SINET-17091",
+    "scid": "2d78e5dd-a685-453f-88a0-d0f5ec855bd4",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00660",
+    "speed": 150323855360,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [],
+    "imsid": 731506,
+    "monitored": false,
+    "name": "NORDUNET-GEO-EXPRESSROUTE-VLAN3917",
+    "scid": "2da843aa-3011-46a7-9eb7-91099e3aeb69",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02308",
+    "speed": 118111600640,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.38/31",
+          "2001:798:99:1::71/126"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae33.100"
+      }
+    ],
+    "imsid": 739582,
+    "monitored": true,
+    "name": "NORDUNET-AP3",
+    "scid": "2de818d3-8e4a-4225-aa6d-9a345a311a4b",
+    "service_type": "GEANT IP",
+    "sid": "GS-02552",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 715164,
+    "monitored": true,
+    "name": "DUB2-LON-IPTRUNK",
+    "scid": "2e0c13f9-382a-4444-a97b-7ff7e3e76779",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00032",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mil2.it.geant.net",
+        "interface": "xe-1/0/6"
+      },
+      {
+        "hostname": "mx1.mil2.it.geant.net",
+        "interface": "xe-1/0/6.4"
+      }
+    ],
+    "imsid": 661479,
+    "monitored": true,
+    "name": "SDX-L2-HOSTD-TO-BR52",
+    "scid": "2e23d8dc-cedd-4a21-989f-6e0bb61f9aa2",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00765",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [],
+    "imsid": 661961,
+    "monitored": true,
+    "name": "PIONIER-BGP-LU-COC-AP1",
+    "scid": "2e30217c-7bc5-42e9-abed-542588bc2dbc",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01055",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.4"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28.4073"
+      }
+    ],
+    "imsid": 739673,
+    "monitored": true,
+    "name": "BELNET-SCIENSAN0-EXPRESSROUTE-VLAN4073",
+    "scid": "2e3e058d-5a01-4004-86a0-b0eb31658503",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02536",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-0/0/2"
+      }
+    ],
+    "imsid": 658586,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-033(ETH)",
+    "scid": "2e578d95-5890-40a1-835c-af02c1c2ea4f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01227",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-924045"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-21:3505"
+      },
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ae11.2703"
+      }
+    ],
+    "imsid": 745320,
+    "monitored": true,
+    "name": "GEANT_EPIPE_924045",
+    "scid": "2e6f5a62-ad50-4b8d-b77c-9fe2d5590b59",
+    "service_type": "ETHERNET",
+    "sid": "GS-02488",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SURFNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-9/0/2"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae13"
+      }
+    ],
+    "imsid": 732092,
+    "monitored": true,
+    "name": "SURF-AP2-LL1",
+    "scid": "2e70c9ab-fb03-4687-ab1a-ca37e6e8abe1",
+    "service_type": "ETHERNET",
+    "sid": "GA-01482",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae2"
+      }
+    ],
+    "imsid": 740572,
+    "monitored": true,
+    "name": "LON-MX-SW-LAG",
+    "scid": "2e735d1b-89fc-488c-965d-cf10ca1d8a5d",
+    "service_type": "ETHERNET",
+    "sid": "GA-",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CSTNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.2300"
+      },
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae10.2300"
+      }
+    ],
+    "imsid": 740995,
+    "monitored": true,
+    "name": "AMS-GEN-IHEP-CERN-CSTNET",
+    "scid": "2e89f7e5-46c7-468a-9435-4d10774ee4ca",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02415",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663046,
+    "monitored": false,
+    "name": "DNA-FR-DE",
+    "scid": "2ed3ee7e-4744-4f39-8a29-78c411401286",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00134",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "mx1.bud.hu - BUD-PRA Multicast Traffic",
+    "scid": "2effb62f-f8cd-4ae6-a591-eabe9093f6ad",
+    "service_type": null,
+    "sid": "DS-12657",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-21"
+      }
+    ],
+    "imsid": 747580,
+    "monitored": true,
+    "name": "NORDUNET-AP2-LAG",
+    "scid": "2f01d25c-6c99-41ee-bbb4-a7f7aff83182",
+    "service_type": "ETHERNET",
+    "sid": "GA-01893",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "TS1.MAR.FR.GEANT.NET(OPENGEAR)",
+        "port": "NET1"
+      },
+      {
+        "equipment": "DIGITAL REALTY A-END",
+        "port": "FR153394"
+      },
+      {
+        "equipment": "DIGITAL REALTY Z-END",
+        "port": "FR153394"
+      }
+    ],
+    "imsid": 713469,
+    "monitored": false,
+    "name": "MAR01 OOB LINK",
+    "scid": "2f20a489-d2cb-4328-a882-064dec0e8a68",
+    "service_type": "OOB IP LINK",
+    "sid": "GS-00409",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 735407,
+    "monitored": true,
+    "name": "AMSTERDAM-AMSTERDAM-10G-LINK2",
+    "scid": "2f2beed5-52de-415a-959b-9dc4e90f4a75",
+    "service_type": "ETHERNET",
+    "sid": "GA-01575",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.AM.OFFICE",
+        "port": "GE-0/0/7"
+      }
+    ],
+    "imsid": 658558,
+    "monitored": true,
+    "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-019(ETH)",
+    "scid": "2f3d11fd-1712-4366-8b44-087a1c5d5ae7",
+    "service_type": "ETHERNET",
+    "sid": "GA-01252",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "DUB-LON-IPTRUNK",
+    "scid": "2f3e9279-ef7a-4da7-9929-f26d2b1ba130",
+    "service_type": null,
+    "sid": "DS-31343",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae5"
+      }
+    ],
+    "imsid": 717035,
+    "monitored": true,
+    "name": "MAD-MAR01-LAG",
+    "scid": "2f60bfa7-39d8-4759-81e4-f52f70112c03",
+    "service_type": "ETHERNET",
+    "sid": "GA-02010",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5.3918"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.38"
+      }
+    ],
+    "imsid": 732192,
+    "monitored": true,
+    "name": "NORDUNET-MSER-EXPRESSROUTE-VLAN3918",
+    "scid": "2f76e589-0179-467c-9a1f-9f8efeedbaab",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02411",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae1"
+      }
+    ],
+    "imsid": 735952,
+    "monitored": true,
+    "name": "RT1.AMS-RT2.AMS-LAG",
+    "scid": "2f9bda15-9f61-4911-8be0-23d10daa100f",
+    "service_type": "ETHERNET",
+    "sid": "GA-02033",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [],
+    "imsid": 659222,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-076(ETH)",
+    "scid": "2faa2005-f963-49aa-bc47-98889518767c",
+    "service_type": "ETHERNET",
+    "sid": "GA-01322",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 743286,
+    "monitored": true,
+    "name": "THE-THE-MGMT-LAG",
+    "scid": "2faa4b95-1848-4753-9236-f8d98ead381d",
+    "service_type": "ETHERNET",
+    "sid": "GA-02625",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 659289,
+    "monitored": true,
+    "name": "LONDON-LONDON-1GBE-014(ETH)",
+    "scid": "2fc5e92b-ea77-4bbf-a535-c189bcabe867",
+    "service_type": "ETHERNET",
+    "sid": "GA-01467",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "Nordunet_OULU_ExpressRoute_Vlan3905",
+    "scid": "2fcc0935-9fde-4538-ab79-a4f270f6222f",
+    "service_type": null,
+    "sid": "DS-52717",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae5"
+      }
+    ],
+    "imsid": 747826,
+    "monitored": true,
+    "name": "BUD-ZAG-LAG",
+    "scid": "2fcd6323-8c7b-4c92-8cfb-eef07e95ef93",
+    "service_type": "ETHERNET",
+    "sid": "GA-01738",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708218,
+    "monitored": false,
+    "name": "GTS-MANAGEMENT-PRA-CZ",
+    "scid": "2fd1b24d-5181-4e8e-aa9f-58b613fc2254",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00192",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ARNES"
+    ],
+    "endpoints": [],
+    "imsid": 709657,
+    "monitored": false,
+    "name": "ARNES-GN-PRACE-VPN-PROXY-VIENNA-L3VPN",
+    "scid": "2ff708b9-e056-43aa-981f-0140b0cda73e",
+    "service_type": "MD-VPN (PROXY)",
+    "sid": "GS-01060",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663030,
+    "monitored": false,
+    "name": "PSMP-SOF-BG-DRAC",
+    "scid": "3001ac26-62f8-4123-8918-c059cae619fa",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00367",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "AARNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "138.44.226.7/31",
+          "2001:0388:cf7f:0002::1/127"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae12.3101"
+      }
+    ],
+    "imsid": 661460,
+    "monitored": true,
+    "name": "UK-AARNET",
+    "scid": "3010291b-fe82-45c9-8fd2-313b5735eb64",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00904",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SANET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.5/30",
+          "2001:4118:0:81::2/64"
+        ],
+        "hostname": "rt1.bra.sk.geant.net",
+        "interface": "ae13.420"
+      }
+    ],
+    "imsid": 719686,
+    "monitored": true,
+    "name": "SANET-AP1",
+    "scid": "301ccc83-78c0-4d22-8916-efb503f3224d",
+    "service_type": "GEANT IP",
+    "sid": "GS-00511",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [
+      {
+        "equipment": "GEN01-GRV8",
+        "port": "1/2/3"
+      },
+      {
+        "equipment": "FRA01-GRV4",
+        "port": "1/3/3"
+      },
+      {
+        "equipment": "FRA01-GRV4",
+        "port": "1/3/5"
+      }
+    ],
+    "imsid": 739821,
+    "monitored": true,
+    "name": "GEN1-POZ-PSNC-24052-3",
+    "scid": "30716c4d-0717-4123-bfd5-5a814a40d766",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-02551",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661491,
+    "monitored": false,
+    "name": "PAR-GROOVE-1",
+    "scid": "30842b92-6e12-4c14-bf77-0acb725cb2b7",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00272",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.mil2.it.geant.net",
+        "interface": "lag-2"
+      }
+    ],
+    "imsid": 740947,
+    "monitored": true,
+    "name": "GEN-MIL2-LAG",
+    "scid": "30924b0a-4db1-4415-9158-8ffa674c3f78",
+    "service_type": "ETHERNET",
+    "sid": "GA-01774",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "DUB2-LON2-IPTRUNK",
+    "scid": "30b21d95-498c-459b-a668-f18ab032c01d",
+    "service_type": null,
+    "sid": "DS-42045",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "TS2.BRU.BE.GEANT.NET(OPENGEAR)",
+        "port": "NET1"
+      }
+    ],
+    "imsid": 726440,
+    "monitored": true,
+    "name": "BRUSSELS OOB LINK",
+    "scid": "30d7f436-a163-45d0-9204-841476926549",
+    "service_type": "ETHERNET",
+    "sid": "GA-02281",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662001,
+    "monitored": false,
+    "name": "HADES-POZ-PL-DRAC",
+    "scid": "30d964bb-a62b-4af9-a860-e11d1f03e41f",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00196",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GARR"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.201/30",
+          "2001:798:111:1::1d/126"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae12.111"
+      }
+    ],
+    "imsid": 663175,
+    "monitored": true,
+    "name": "GARR-AP2-LHCONE",
+    "scid": "30edb650-7438-48d1-8659-2d8336c44132",
+    "service_type": "L3-VPN",
+    "sid": "GS-00826",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SCION"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/3/3.2704"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae22.2704"
+      }
+    ],
+    "imsid": 737889,
+    "monitored": false,
+    "name": "LON-PAR-SCION-WACREN",
+    "scid": "3119f218-6059-41bf-8eae-cccd22f373cc",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02495",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.43"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-124074"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20:4069"
+      }
+    ],
+    "imsid": 744239,
+    "monitored": true,
+    "name": "MSEHOGENT-02573",
+    "scid": "316d6661-8b13-4ff7-8215-b8dd8dabbb76",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02573",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "KIFU"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae10.2806"
+      },
+      {
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-21:2102"
+      }
+    ],
+    "imsid": 747547,
+    "monitored": true,
+    "name": "BUD-HAM-02513",
+    "scid": "31876dae-2b17-4cec-8d98-a6b9d67d392b",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02513",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "xe-3/0/1"
+      }
+    ],
+    "imsid": 658923,
+    "monitored": true,
+    "name": "POZNAN-POZNAN-10GBE-005(ETH)",
+    "scid": "3196835f-d05a-49f1-9a87-e187775f92ad",
+    "service_type": "ETHERNET",
+    "sid": "GA-02138",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658526,
+    "monitored": false,
+    "name": "730XD-5-VSAN-TRAFFIC-LAG-PAR",
+    "scid": "31a3090a-23c3-493c-a8f2-26705c7a0d42",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01729",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708196,
+    "monitored": false,
+    "name": "PS-POZ-PL-OWAMP",
+    "scid": "31b53fae-b07b-4f0b-b41e-c15ab081bab4",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00346",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [],
+    "imsid": 712378,
+    "monitored": true,
+    "name": "MD-VPN-VRR-LJUBLJANA-FUNET-2-FI",
+    "scid": "31eeb33b-4e32-4961-b281-eba629ffe683",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01020",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663076,
+    "monitored": false,
+    "name": "KVMOIP-BUC-RO-VLAN60",
+    "scid": "322da42d-258c-4041-8340-557376761ce0",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00218",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "MICROSOFT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae26"
+      }
+    ],
+    "imsid": 732182,
+    "monitored": true,
+    "name": "MICROSOFT-EXPRESSROUTE-NORDUNET-FRA-LAG3",
+    "scid": "323d5aa9-2d6f-4e7f-84a2-507ad27ae288",
+    "service_type": "ETHERNET",
+    "sid": "GA-01946",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "IRANET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.93/30",
+          "2001:798:99:1::85/126"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "gr-4/0/0.0"
+      }
+    ],
+    "imsid": 735729,
+    "monitored": false,
+    "name": "NL-IRANET",
+    "scid": "32499fb3-e4a5-4639-8ae5-a4e0d3729d0d",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-01168",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.poz.pl.geant.net",
+        "interface": "lag-7"
+      }
+    ],
+    "imsid": 740493,
+    "monitored": true,
+    "name": "POZ-PRA-LAG",
+    "scid": "324e9c37-b810-4081-9883-bceb0105b8d3",
+    "service_type": "ETHERNET",
+    "sid": "GA-02408",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "equipment": "LON01-GRV6",
+        "port": "1/1/8"
+      }
+    ],
+    "imsid": 733792,
+    "monitored": true,
+    "name": "LON1-LON2-ESNET-23092-400G",
+    "scid": "325c451b-cc2f-46d6-bd1b-cb5d3c892f63",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-02338",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.chi.md.geant.net",
+        "interface": "ae2"
+      }
+    ],
+    "imsid": 713247,
+    "monitored": true,
+    "name": "LAG-RT2.CHI.MD_AE2-SW1.CHI.MD_AE3",
+    "scid": "3262cab0-6211-4b86-b9b1-0cd084a33884",
+    "service_type": "ETHERNET",
+    "sid": "GA-02039",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "WIX"
+    ],
+    "endpoints": [],
+    "imsid": 719130,
+    "monitored": false,
+    "name": "WIX-TO-NETHERLIGHT-TEST3",
+    "scid": "3281b907-5524-4655-9f0c-210ccf9c6eac",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00769",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.tar.ee.geant.net",
+        "interface": "lag-3"
+      }
+    ],
+    "imsid": 746303,
+    "monitored": true,
+    "name": "RIG-TAR-LAG",
+    "scid": "32a53de5-20c4-4c3b-8364-1b1b3a4b42fd",
+    "service_type": "ETHERNET",
+    "sid": "GA-02347",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708274,
+    "monitored": false,
+    "name": "GTS-IDRAC-PRA-CZ",
+    "scid": "32a84177-abe9-4b46-b87e-53fd9cc5d824",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00190",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 677585,
+    "monitored": false,
+    "name": "DUB2 OOB LINK",
+    "scid": "32b30bd1-2317-43f7-a542-5872e0ae32de",
+    "service_type": "OOB IP LINK",
+    "sid": "GS-00398",
+    "speed": 10485760,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "AZSCIENCENET"
+    ],
+    "endpoints": [],
+    "imsid": 673680,
+    "monitored": false,
+    "name": "AZSCIENCENET-TESTVLAN-TTK",
+    "scid": "32ce9a96-e5ea-4b9c-89c4-7c2a82867142",
+    "service_type": "GEANT IP",
+    "sid": "GS-00432",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661605,
+    "monitored": false,
+    "name": "PS-SIMPLE-LOOKUP-SERVICE",
+    "scid": "32cec9d5-11e5-498a-abf4-41bf0b3560ef",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00352",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "JISC"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae10.700"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae19.700"
+      }
+    ],
+    "imsid": 736674,
+    "monitored": true,
+    "name": "LON-PAR-SYNGENTA-JISC-INTERNET2-17052",
+    "scid": "32d03ddf-0e6b-48ab-8632-ded748411c2c",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00730",
+    "speed": 858993459200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "INTERNET2"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "198.71.45.237/31",
+          "2001:468:ff:15c5::2/64"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae15.102"
+      }
+    ],
+    "imsid": 661992,
+    "monitored": true,
+    "name": "FR-INTERNET2",
+    "scid": "32d3c3bd-3d5e-4534-aaa7-4be36f438019",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00884",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.AM.OFFICE",
+        "port": "GE-1/0/6"
+      }
+    ],
+    "imsid": 658466,
+    "monitored": true,
+    "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-015(ETH)",
+    "scid": "33146da9-5a76-4cea-9e41-a826b5226527",
+    "service_type": "ETHERNET",
+    "sid": "GA-01272",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GARR"
+    ],
+    "endpoints": [],
+    "imsid": 712386,
+    "monitored": false,
+    "name": "MD-VPN-VRR-PARIS-GARR-1-IT",
+    "scid": "332ea4ca-b2d9-48bf-ba52-103f9348acee",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01042",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.90.1/30",
+          "2001:798:1:3::1/126"
+        ],
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20.333"
+      }
+    ],
+    "imsid": 744232,
+    "monitored": true,
+    "name": "BELNET-AP1-IAS",
+    "scid": "3345876b-a0fc-43b1-b473-272358988c96",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00524",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661314,
+    "monitored": false,
+    "name": "PS-ATH-GR-IDRAC",
+    "scid": "3348e365-be67-41e7-aad4-2dfa2f765689",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00290",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae2"
+      }
+    ],
+    "imsid": 717035,
+    "monitored": true,
+    "name": "MAD-MAR01-LAG",
+    "scid": "334f91a2-c0f6-4b39-aebd-0493a57a94f0",
+    "service_type": "ETHERNET",
+    "sid": "GA-02171",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "ams-lon_EXPReS_JANET-NetherLight_07010",
+    "scid": "3393df68-d71d-4bda-949c-a1190db7413b",
+    "service_type": null,
+    "sid": "GS-00642",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-21:1006"
+      },
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "lag-22:1006"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-114015"
+      },
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "pwe-114015"
+      }
+    ],
+    "imsid": 747356,
+    "monitored": true,
+    "name": "FED4FIRE-00669",
+    "scid": "33c03821-badf-4fd5-9f25-dd259de16ae0",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00669",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708155,
+    "monitored": false,
+    "name": "PS-AMS-NL-BWCTL",
+    "scid": "33cb807a-3b6f-41ec-98b7-3d68b3c6cd4d",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00283",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "LON2 BMS Server #9 port 1",
+    "scid": "33d5fc19-5b56-452f-833b-cd9e6277482d",
+    "service_type": null,
+    "sid": "GA-01329",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.123.241/29",
+          "2001:798:bb:1d::1/64"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-11/1/2.100"
+      }
+    ],
+    "imsid": 736817,
+    "monitored": false,
+    "name": "DTN-LON-100G-DATA",
+    "scid": "33dd571b-92a9-45fe-917d-a658b965ad62",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00143",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "91.210.16.189/22",
+          "2001:7f8:14::95:1/64"
+        ],
+        "hostname": "rt1.pra.cz.geant.net",
+        "interface": "ae12.0"
+      }
+    ],
+    "imsid": 708283,
+    "monitored": false,
+    "name": "IX-PEERINGS-IN-NIX",
+    "scid": "33e16c3c-3f5b-42d5-a177-8bb9cfbc5353",
+    "service_type": "IP PEERING - NON R&E (PUBLIC)",
+    "sid": "GS-00953",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "TS1.POR.PT.GEANT.NET(OPENGEAR)",
+        "port": "NET1"
+      }
+    ],
+    "imsid": 712815,
+    "monitored": false,
+    "name": "PORTO OOB LINK",
+    "scid": "3407f2e5-ed4d-467f-97b3-ef130942feb9",
+    "service_type": "OOB IP LINK",
+    "sid": "GS-00412",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662248,
+    "monitored": true,
+    "name": "AMSTERDAM-AMSTERDAM-1GBE-059(ETH)",
+    "scid": "341413e9-ee0a-468a-a055-c99fe379aece",
+    "service_type": "ETHERNET",
+    "sid": "GA-01581",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 744731,
+    "monitored": true,
+    "name": "BUCHAREST 2-CHISINAU-LAG-001(GEANT)",
+    "scid": "341937b8-6090-4f9f-87fc-0baea521d04c",
+    "service_type": "ETHERNET",
+    "sid": "GA-50052",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "REDCLARA"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.173/30",
+          "2001:798:111:1::21/126"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae15.2015"
+      }
+    ],
+    "imsid": 661556,
+    "monitored": true,
+    "name": "REDCLARA-PAR-LHCONE",
+    "scid": "342dd7e8-af4d-49fd-9c10-e826ceb4906c",
+    "service_type": "L3-VPN",
+    "sid": "GS-00847",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-0/0/0"
+      }
+    ],
+    "imsid": 658553,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-027(ETH)",
+    "scid": "343898ce-fe8c-4a2c-a4f5-2668f9cbad13",
+    "service_type": "ETHERNET",
+    "sid": "GA-01207",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GRNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.100.48/31",
+          "2001:798::5d/126"
+        ],
+        "hostname": "mx2.ath.gr.geant.net",
+        "interface": "ae10.667"
+      }
+    ],
+    "imsid": 661415,
+    "monitored": true,
+    "name": "GRNET-AP1-CLS",
+    "scid": "343bb712-7756-4ebc-b6a4-478dee260c43",
+    "service_type": "GEANT CLOUD PEERING",
+    "sid": "GS-00608",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661898,
+    "monitored": false,
+    "name": "LON-GROOVE-3",
+    "scid": "347ed421-cea2-4295-b487-3afd31e620e1",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00232",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.112.19/28",
+          "2001:799:cb2:2::3/64"
+        ],
+        "hostname": "srx2.ch.office.geant.net",
+        "interface": "ge-0/0/3.500"
+      }
+    ],
+    "imsid": 662925,
+    "monitored": false,
+    "name": "CITY-HOUSE-NETWORK-INFRASTRUCTURE",
+    "scid": "34923920-01d9-43ce-bacb-819dd85b1f61",
+    "service_type": "CORPORATE",
+    "sid": "GS-00447",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 659257,
+    "monitored": true,
+    "name": "MILAN 2 CALDERA-MILAN 2 CALDERA-10GBE-025(ETH)",
+    "scid": "34c1588c-6c14-4580-954d-dec51fd415ed",
+    "service_type": "ETHERNET",
+    "sid": "GA-01335",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662182,
+    "monitored": true,
+    "name": "BUCHAREST-BUCHAREST-1GBE-004(ETH)",
+    "scid": "3528b55d-df6f-4a8b-a1be-426e18422321",
+    "service_type": "ETHERNET",
+    "sid": "GA-01598",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "MICROSOFT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae34"
+      }
+    ],
+    "imsid": 732185,
+    "monitored": true,
+    "name": "MICROSOFT-EXPRESSROUTE-NORDUNET-FRA-LAG4",
+    "scid": "35410e69-7d9e-45ac-8455-908c985b69f8",
+    "service_type": "ETHERNET",
+    "sid": "GA-01965",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "REDIRIS"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.90.18/31",
+          "2001:798:1::23d/126"
+        ],
+        "hostname": "rt1.bil.es.geant.net",
+        "interface": "ae15.340"
+      }
+    ],
+    "imsid": 718228,
+    "monitored": true,
+    "name": "REDIRIS-AP2-IAS",
+    "scid": "35452849-6d0f-40f7-b6a8-dd898b27db5b",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00582",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "TENET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.132/31",
+          "2001:798:99:1::91/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae28.100"
+      }
+    ],
+    "imsid": 717803,
+    "monitored": true,
+    "name": "UK-TENET",
+    "scid": "356661ef-ba12-4c89-a16f-aa9a448f80b7",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-01192",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661776,
+    "monitored": false,
+    "name": "MIL2-GROOVE-2-MANAGEMENT",
+    "scid": "3571e7db-d717-47e5-b078-0e52ef4ddf35",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00251",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [],
+    "imsid": 708279,
+    "monitored": false,
+    "name": "BRU-LON-IX-BELNET-LON-13019",
+    "scid": "357d9e54-2c40-4862-a683-32dccac8b303",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00673",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GRNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.89.62/31",
+          "2001:798:1::175/126"
+        ],
+        "hostname": "rt0.the.gr.geant.net",
+        "interface": "lag-20.333"
+      }
+    ],
+    "imsid": 745275,
+    "monitored": true,
+    "name": "GRNET-AP2-IAS",
+    "scid": "35b1187b-7502-4398-bf1f-807354be33c2",
+    "service_type": "GWS - INDIRECT",
+    "sid": "GS-00531",
+    "speed": 64424509440,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CAREN"
+    ],
+    "endpoints": [],
+    "imsid": 663077,
+    "monitored": true,
+    "name": "DE-CAREN-IAS",
+    "scid": "35f4ada4-7c62-47fa-bd62-7b5b85f1af7a",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00565",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 732386,
+    "monitored": true,
+    "name": "FRANKFURT-FRANKFURT-1GBE-003(GEANT)",
+    "scid": "3630599f-49ac-4051-b937-7594e865226d",
+    "service_type": "ETHERNET",
+    "sid": "GA-01618",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GRNET"
+    ],
+    "endpoints": [],
+    "imsid": 712384,
+    "monitored": false,
+    "name": "MD-VPN-VRR-PARIS-GRNET-GR",
+    "scid": "3637d441-20fe-4217-8bca-b5233c6970a8",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01044",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.zag.hr.geant.net",
+        "interface": "lag-4"
+      }
+    ],
+    "imsid": 747864,
+    "monitored": true,
+    "name": "LJU-ZAG-LAG",
+    "scid": "364148ab-46f3-42cb-8212-a1838b8808f4",
+    "service_type": "ETHERNET",
+    "sid": "GA-02374",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "MICROSOFT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-21:3919"
+      }
+    ],
+    "imsid": 747634,
+    "monitored": true,
+    "name": "AMS-HAM-MSE-02412",
+    "scid": "366042d8-9e09-4eb2-be7e-9185f699f568",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02412",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GRNET"
+    ],
+    "endpoints": [],
+    "imsid": 736761,
+    "monitored": true,
+    "name": "GRNET-BGP-LU-COC",
+    "scid": "3661d66f-9a59-4832-8f34-c4c04e39c724",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01007",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [
+      {
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae2.0"
+      },
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae7.0"
+      }
+    ],
+    "imsid": 708740,
+    "monitored": false,
+    "name": "GEN-MAD-IPTRUNK",
+    "scid": "36df3835-1f80-418b-b212-c5a30e973a02",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00037",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "UBUNTUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/3/2.602"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae22.602"
+      }
+    ],
+    "imsid": 705895,
+    "monitored": true,
+    "name": "LON-LON-UBUNTUNET-WACREN-20103",
+    "scid": "36e11a6a-4a2e-40e8-b602-c8802e96146f",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00731",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663224,
+    "monitored": false,
+    "name": "AAI-AMS-NL-VLAN75",
+    "scid": "36ec0d6b-209d-4ed3-aee4-cc0a068c8396",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00089",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "HEANET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.dub.ie.geant.net",
+        "interface": "lag-20"
+      }
+    ],
+    "imsid": 747271,
+    "monitored": true,
+    "name": "HEANET-AP1-LAG",
+    "scid": "36efa0f4-8c60-4649-8c91-8dbf4a2c3aab",
+    "service_type": "ETHERNET",
+    "sid": "GA-01925",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RESTENA"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae18"
+      }
+    ],
+    "imsid": 739247,
+    "monitored": true,
+    "name": "RESTENA-AP1-LAG",
+    "scid": "3728ab0f-f357-4ee9-b835-53005f454da4",
+    "service_type": "ETHERNET",
+    "sid": "GA-01952",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 659174,
+    "monitored": true,
+    "name": "MILAN 2 CALDERA-MILAN 2 CALDERA-1GBE-009(ETH)",
+    "scid": "37331f33-6f61-4122-a5ae-ec1802c37758",
+    "service_type": "ETHERNET",
+    "sid": "GA-01521",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "10.101.0.1/30"
+        ],
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-1/2/2.18"
+      }
+    ],
+    "imsid": 661962,
+    "monitored": false,
+    "name": "VIRGIN-MEDIA-EX1-LON2-TO-CAM-SRX-VLAN18",
+    "scid": "374c7649-9a48-49d6-b2d5-8750ae36099e",
+    "service_type": "CORPORATE",
+    "sid": "GS-00005",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "MANLAN"
+    ],
+    "endpoints": [],
+    "imsid": 727572,
+    "monitored": false,
+    "name": "PAR-PAR-MANLAN-SURFNET-60096414",
+    "scid": "375cd0d4-5362-4d73-aa88-d34fefb0b468",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02316",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.fra.de.geant.net",
+        "interface": "lag-1"
+      }
+    ],
+    "imsid": 739044,
+    "monitored": true,
+    "name": "FRA-FRA-800G-LAG",
+    "scid": "376d2dc2-2f17-410a-bfa5-8e86556ba986",
+    "service_type": "ETHERNET",
+    "sid": "GA-02460",
+    "speed": 858993459200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 677595,
+    "monitored": false,
+    "name": "FRA OOB LINK",
+    "scid": "377b4678-5e92-40a7-aa6d-e8e52f432575",
+    "service_type": "OOB IP LINK",
+    "sid": "GS-00399",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae22"
+      }
+    ],
+    "imsid": 727952,
+    "monitored": true,
+    "name": "VIENNA-VIENNA-LAG-001(GEANT)",
+    "scid": "379c35ec-a121-4ba7-8bb5-eae5879dd02b",
+    "service_type": "ETHERNET",
+    "sid": "GA-01859",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662496,
+    "monitored": true,
+    "name": "TELIA-FRA-LAG",
+    "scid": "37a1be5e-ffcb-4aa9-9801-a9b9a3c680ba",
+    "service_type": "ETHERNET",
+    "sid": "GA-01936",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ae11.2704"
+      },
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "pwe-124045"
+      },
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "lag-20:712"
+      }
+    ],
+    "imsid": 745413,
+    "monitored": true,
+    "name": "SLCUTH-02489",
+    "scid": "37ab7293-5eef-4521-bccb-9e71fc8f17d4",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02489",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [],
+    "imsid": 661705,
+    "monitored": false,
+    "name": "PIONIER-TEMPORARYVLAN",
+    "scid": "37c0cef1-9be8-40e0-9edd-9eacc5859919",
+    "service_type": "GEANT IP",
+    "sid": "GS-00494",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ge-0/3/7"
+      }
+    ],
+    "imsid": 662209,
+    "monitored": true,
+    "name": "GENEVA-GENEVA-1GBE-007(ETH)",
+    "scid": "37e79eb5-256d-4a21-ba32-8cbcdf64288c",
+    "service_type": "ETHERNET",
+    "sid": "GA-01546",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NKN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.820"
+      }
+    ],
+    "imsid": 734561,
+    "monitored": false,
+    "name": "NL-NKN",
+    "scid": "37f5e9a8-2a1e-4563-a2d7-d15074187da3",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00899",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.106.128/31",
+          "2001:798:fc00:28::1/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/2/3.22"
+      }
+    ],
+    "imsid": 678566,
+    "monitored": false,
+    "name": "PSMP-GN-OWD-LON-UK.GEANT.ORG",
+    "scid": "38019230-9f37-4c26-b7cc-ee9e9a959928",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00365",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GARR"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.217/30",
+          "2001:798:1::4d/126"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae12.333"
+      }
+    ],
+    "imsid": 663118,
+    "monitored": true,
+    "name": "GARR-AP2-IAS",
+    "scid": "38238cff-d62e-4c2a-a2ae-57ff08c7f64a",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00571",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661374,
+    "monitored": false,
+    "name": "DEEPFIELD-IDRAC-PAR-FR",
+    "scid": "38703357-9007-4565-84c2-e5ce1fa6c8ff",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00133",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 724380,
+    "monitored": false,
+    "name": "VIENNA-VERIZON-2-15133-AT-1",
+    "scid": "38734f84-1ffb-46dd-ba2c-7af19e87c1b4",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-02224",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "lon-lon_MSExpressRoutesTest_NORDUNET-SURFNET_16033",
+    "scid": "38a70b5c-2066-44cd-b64a-88e39cb99675",
+    "service_type": null,
+    "sid": "DS-34705",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "CESNET-GN-XIFI-VPN-PROXY-PRAGUE-L3VPN",
+    "scid": "38c1cc49-2a59-4943-b2b0-7c4e727398e4",
+    "service_type": null,
+    "sid": "GS-01062",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.237/31",
+          "2001:798:cc:1::aa/126"
+        ],
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae4.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.236/31",
+          "2001:798:cc:1::a9/126"
+        ],
+        "hostname": "rt0.gen.ch.geant.net",
+        "interface": "lag-4.0"
+      }
+    ],
+    "imsid": 739738,
+    "monitored": true,
+    "name": "GEN-MAR-IPTRUNK",
+    "scid": "38c31549-491d-4f7c-b7a8-93b9a8920e45",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00038",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 707277,
+    "monitored": true,
+    "name": "VIE-ZAG-LAG",
+    "scid": "38cc0fb2-467a-413d-a01a-46782ef65ba6",
+    "service_type": "ETHERNET",
+    "sid": "GA-01870",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ACONET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.mil2.it.geant.net",
+        "interface": "ae18"
+      }
+    ],
+    "imsid": 659377,
+    "monitored": true,
+    "name": "ACONET-AP2-LAG",
+    "scid": "3904f984-6286-4de8-9812-9324d22a981c",
+    "service_type": "ETHERNET",
+    "sid": "GA-01770",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "REDIRIS"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.bil.es.geant.net",
+        "interface": "ae15.411"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.3"
+      }
+    ],
+    "imsid": 706055,
+    "monitored": true,
+    "name": "REDIRIS-UCLM-EXPRESSROUTE-VLAN411",
+    "scid": "391b49a2-e3e8-48f2-8650-712782de591f",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01166",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "HEANET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.73/30",
+          "2001:798:1::5d/126"
+        ],
+        "hostname": "rt0.dub.ie.geant.net",
+        "interface": "lag-20.333"
+      }
+    ],
+    "imsid": 747283,
+    "monitored": true,
+    "name": "HEANET-AP1-IAS",
+    "scid": "39219259-4c80-4fa0-aefe-d9f2eb9d7d24",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00572",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 709297,
+    "monitored": false,
+    "name": "EXFO-MANAGEMENT-VLAN30",
+    "scid": "3927ff13-ec55-4a83-b905-64b4a8b3ac40",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00161",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "DFN"
+    ],
+    "endpoints": [],
+    "imsid": 733111,
+    "monitored": false,
+    "name": "FRA-GEN-CERN-DFN-3",
+    "scid": "3938a77e-d606-4cd0-a847-6514a28d3db0",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02445",
+    "speed": 536870912000,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/0/3.0"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "xe-0/1/4"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "xe-0/1/4.0"
+      }
+    ],
+    "imsid": 734546,
+    "monitored": true,
+    "name": "AMS-PAR-LOFAR-RENATER-NETHERLIGHT-10001",
+    "scid": "3961d120-d24f-4ed8-b381-2f1f8f8e1ffe",
+    "service_type": "GEANT - GBS",
+    "sid": "GS-00784",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 707278,
+    "monitored": true,
+    "name": "POZ-VIE-LAG",
+    "scid": "3986305e-e4b8-410e-9eaa-c43e94f8b266",
+    "service_type": "ETHERNET",
+    "sid": "GA-01869",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NEA3R"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-4/1/4.2050"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae26.2050"
+      }
+    ],
+    "imsid": 738640,
+    "monitored": true,
+    "name": "LON-LON-GEANTOPEN-ESNET-NEA3R",
+    "scid": "3999f781-b111-4b2f-8a94-a7579a0f7193",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-02250",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SURF"
+    ],
+    "endpoints": [],
+    "imsid": 714989,
+    "monitored": true,
+    "name": "SURF-AMS-LON1-SPECTRUM SERVICE 1",
+    "scid": "39b84ae2-4804-465e-b50d-7fb37c171ccd",
+    "service_type": "GEANT SPECTRUM SERVICE",
+    "sid": "GS-00071",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708181,
+    "monitored": false,
+    "name": "PS-SOF-BG-BWCTL",
+    "scid": "39beb7b4-28c8-4bfe-a4bc-e6fbfa6f761d",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00353",
+    "speed": 104857600,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "UBUNTUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae26.402"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae17.402"
+      }
+    ],
+    "imsid": 735618,
+    "monitored": true,
+    "name": "AMS-LON-MISC-UBUNTUNET-CANARIE-170352",
+    "scid": "39ddcbb1-e292-4246-a52c-f70f74902cef",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00646",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RARE"
+    ],
+    "endpoints": [],
+    "imsid": 714367,
+    "monitored": false,
+    "name": "FRA-HAM-WP7T2SF-RARE-20104-FRA",
+    "scid": "39e32e1d-003a-4bd7-af20-f7a111826336",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00691",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708165,
+    "monitored": false,
+    "name": "OOB-SINGAREN-LON2-UK",
+    "scid": "39e6c438-9dde-4138-bd78-44a452a3dfbe",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00243",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "RENAM"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.127.158/31",
+          "2001:798:99:1::fd/126"
+        ],
+        "hostname": "rt2.chi.md.geant.net",
+        "interface": "ae10.100"
+      }
+    ],
+    "imsid": 714069,
+    "monitored": true,
+    "name": "RENAM-AP2",
+    "scid": "39f75ada-0cc7-4f4c-929d-85c7a4901186",
+    "service_type": "GEANT IP",
+    "sid": "GS-00501",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.46/31",
+          "2001:798:cc:1::79/126"
+        ],
+        "hostname": "rt1.kie.ua.geant.net",
+        "interface": "ae3.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.47/31",
+          "2001:798:cc:1::7a/126"
+        ],
+        "hostname": "rt0.poz.pl.geant.net",
+        "interface": "lag-2.0"
+      }
+    ],
+    "imsid": 740201,
+    "monitored": true,
+    "name": "KIE-POZ-IPTRUNK",
+    "scid": "39fdfad7-8e05-49c4-8685-43b0c2aecd2a",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00046",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/1/6.1220"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae30.1220"
+      }
+    ],
+    "imsid": 734115,
+    "monitored": true,
+    "name": "AMS-PAR-INFINICORTEX-ESNET-RENATER-15030",
+    "scid": "3a0003dd-c73b-4e06-926a-62861f7d493a",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00653",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "JISC"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.165/30",
+          "2001:798:111:1::15/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae10.2030"
+      }
+    ],
+    "imsid": 661732,
+    "monitored": true,
+    "name": "JISC-AP1-LHCONE",
+    "scid": "3a65bfbf-21dd-45d2-acad-980c6f61cfee",
+    "service_type": "L3-VPN",
+    "sid": "GS-00832",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SINET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae15.3020"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae2.3020"
+      }
+    ],
+    "imsid": 736070,
+    "monitored": false,
+    "name": "AMS-PAR-SINET-SD-WAN-SINET-SINET-17090",
+    "scid": "3a795c56-2d2b-430a-94f0-be94d9a6a76e",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00659",
+    "speed": 150323855360,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BREN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "194.141.252.254/30",
+          "2001:4b58:acad:252::62/126"
+        ],
+        "hostname": "rt0.sof.bg.geant.net",
+        "interface": "lag-101.200"
+      }
+    ],
+    "imsid": 744952,
+    "monitored": true,
+    "name": "BREN-AP2",
+    "scid": "3acbcb54-d600-4814-846b-7caf21fdb435",
+    "service_type": "GEANT IP",
+    "sid": "GS-00439",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "lon-lon_GEANTOPEN_NEA3R-TENET_18097",
+    "scid": "3acf4897-6613-4d4f-a757-0d3eb5e2947f",
+    "service_type": null,
+    "sid": "DS-44443",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 679112,
+    "monitored": true,
+    "name": "TAL-TAL-LAG",
+    "scid": "3ae13919-0b82-4662-b408-f456ed973f5e",
+    "service_type": "ETHERNET",
+    "sid": "GA-01735",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "xe-3/0/0"
+      }
+    ],
+    "imsid": 659164,
+    "monitored": true,
+    "name": "POZNAN-POZNAN-10GBE-009(ETH)",
+    "scid": "3ae1bb23-291f-45c9-8da2-4f36c076973b",
+    "service_type": "ETHERNET",
+    "sid": "GA-02137",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SWITCH"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae23.600"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae14.600"
+      }
+    ],
+    "imsid": 734173,
+    "monitored": true,
+    "name": "AMS-GEN-NREN-IX-AMSIX-SWITCH-18008",
+    "scid": "3af45187-c28b-4e1b-8403-dcd467f9a92d",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00638",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "185.203.16.35/29"
+        ],
+        "hostname": "rt0.zag.hr.geant.net",
+        "interface": "lag-26.0"
+      }
+    ],
+    "imsid": 747942,
+    "monitored": true,
+    "name": "SETCOR-HR-61211",
+    "scid": "3b4cef24-edd8-499b-82f4-71f9c0212321",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-00942",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CESNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.29/30",
+          "2001:798:13:10aa::1/126"
+        ],
+        "hostname": "rt1.pra.cz.geant.net",
+        "interface": "ae11.600"
+      }
+    ],
+    "imsid": 725106,
+    "monitored": true,
+    "name": "CESNET-AP1",
+    "scid": "3b63449e-d8ff-4c0c-ac63-6075fbcb356e",
+    "service_type": "GEANT IP",
+    "sid": "GS-00444",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "T-SYSTEMS"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "94.100.252.88/31"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae25.333"
+      }
+    ],
+    "imsid": 732135,
+    "monitored": true,
+    "name": "DE-TSYSTEMS-IAS",
+    "scid": "3b687c63-129b-4fac-aede-1c84a9103aad",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-00927",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708763,
+    "monitored": false,
+    "name": "NL-T-SYSTEMS-IAS-1",
+    "scid": "3b744d2a-5202-4eb8-8ed7-0c25020062dd",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-00940",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 707413,
+    "monitored": true,
+    "name": "RIG-RIG-LAG",
+    "scid": "3b9229a4-3f7d-4969-b5a0-8fcae0d7c9b4",
+    "service_type": "ETHERNET",
+    "sid": "GA-02030",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663053,
+    "monitored": false,
+    "name": "GEN-GROOVE-1",
+    "scid": "3be6cb2f-73a2-4d60-83cd-093171bf441c",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00181",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NETHERLIGHT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae34"
+      }
+    ],
+    "imsid": 668883,
+    "monitored": true,
+    "name": "NL-NETHERLIGHT-100G-IP1",
+    "scid": "3be74e6d-2bc9-41df-b4aa-3dca92bf90a7",
+    "service_type": "ETHERNET",
+    "sid": "GA-01593",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [
+      {
+        "hostname": "srx1.am.office.geant.net",
+        "interface": "fxp0"
+      },
+      {
+        "addresses": [
+          "172.16.1.2/24"
+        ],
+        "hostname": "srx1.am.office.geant.net",
+        "interface": "fxp0.0"
+      }
+    ],
+    "imsid": 708164,
+    "monitored": false,
+    "name": "SRX1-AMS-FXP0",
+    "scid": "3bfda9c7-5273-4062-b5d5-126b045e7aff",
+    "service_type": "CORPORATE",
+    "sid": "GS-01534",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.109.137/30"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "gr-3/0/0.1"
+      }
+    ],
+    "imsid": 732673,
+    "monitored": false,
+    "name": "GRE-MULTICAST-TUNNEL-CBG-LAB",
+    "scid": "3c5bc75f-4bfd-4544-93e1-93697d1b5393",
+    "service_type": "EUMETSAT GRE",
+    "sid": "GS-00791",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "srx2.am.office.geant.net",
+        "interface": "ge-0/0/1"
+      }
+    ],
+    "imsid": 677379,
+    "monitored": true,
+    "name": "PHY INFASTRUCTURE | CONNECTION TO SRX1",
+    "scid": "3c691b34-5d5c-49eb-8d74-07ef1bc21a37",
+    "service_type": "ETHERNET",
+    "sid": "GA-01247",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "mx1.vie.at - Traffic - ae25 - LAG PRIVATE AWS SRF9940295",
+    "scid": "3c774ed1-2fe5-4f1f-ad7f-b4224321216f",
+    "service_type": null,
+    "sid": "GA-01856",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662220,
+    "monitored": true,
+    "name": "AMSTERDAM-AMSTERDAM-1GBE-047(ETH)",
+    "scid": "3cb58c52-e106-4384-a864-044d3886e67a",
+    "service_type": "ETHERNET",
+    "sid": "GA-01582",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "10.101.0.2/30",
+          "2001:799:cb2:1::1/64"
+        ],
+        "hostname": "srx1.ch.office.geant.net",
+        "interface": "ge-0/0/4.18"
+      }
+    ],
+    "imsid": 662977,
+    "monitored": false,
+    "name": "VIRGIN_MEDIA_EX1_LON2_TO_CAM_SRX_VLAN18-CH",
+    "scid": "3cd7a22f-5f82-4573-8d52-a9ccfd6613ea",
+    "service_type": "CORPORATE",
+    "sid": "GS-00003",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ARNES"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.237/30",
+          "2001:798:111:1::9/126"
+        ],
+        "hostname": "rt0.zag.hr.geant.net",
+        "interface": "lag-20.111"
+      }
+    ],
+    "imsid": 747853,
+    "monitored": true,
+    "name": "ARNES-AP2-LHCONE",
+    "scid": "3cda8a29-37e0-4259-ad2b-10742ef98987",
+    "service_type": "L3-VPN",
+    "sid": "GS-00808",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "FCCN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.97/30",
+          "2001:798:17:10aa::d/126"
+        ],
+        "hostname": "mx2.lis.pt.geant.net",
+        "interface": "ae10.1930"
+      }
+    ],
+    "imsid": 661976,
+    "monitored": true,
+    "name": "FCCN-AP1",
+    "scid": "3cf306a4-2eaf-4ae7-8dfa-29fa749010b4",
+    "service_type": "GEANT IP",
+    "sid": "GS-00459",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "LITNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.213/30",
+          "2001:798:1::f5/126"
+        ],
+        "hostname": "rt0.kau.lt.geant.net",
+        "interface": "lag-21.333"
+      }
+    ],
+    "imsid": 746533,
+    "monitored": true,
+    "name": "LITNET-AP1-IAS",
+    "scid": "3cf3aefa-9960-47e0-b8c6-ad9b8e3d1190",
+    "service_type": "GWS - INDIRECT",
+    "sid": "GS-00534",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "IUCC"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.1/30",
+          "2001:798:14:20aa::1/126"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae22.100"
+      }
+    ],
+    "imsid": 729999,
+    "monitored": true,
+    "name": "IUCC-AP2",
+    "scid": "3d1322b3-bb1a-4d2a-b0c0-069f6f8c3264",
+    "service_type": "GEANT IP",
+    "sid": "GS-00478",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "JISC"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.72/31",
+          "2001:798:111:1::101/126"
+        ],
+        "hostname": "rt0.lon2.uk.geant.net",
+        "interface": "lag-20.111"
+      }
+    ],
+    "imsid": 743311,
+    "monitored": true,
+    "name": "JISC-AP2-LHCONE",
+    "scid": "3d1558ee-e2a4-4ecc-aebf-cd720839816e",
+    "service_type": "L3-VPN",
+    "sid": "GS-02474",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/3/2"
+      }
+    ],
+    "imsid": 669237,
+    "monitored": true,
+    "name": "UBUNTUNET LON IP LL",
+    "scid": "3d294ddd-c1f7-464b-a68e-496c24185b56",
+    "service_type": "ETHERNET",
+    "sid": "GA-01463",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "INTERNET2"
+    ],
+    "endpoints": [],
+    "imsid": 736737,
+    "monitored": false,
+    "name": "INTERNET2-WIXRTT-TEST",
+    "scid": "3d2f3b38-5b75-4f74-8330-b267524df6c6",
+    "service_type": "GEANT IP",
+    "sid": "GS-00476",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658737,
+    "monitored": true,
+    "name": "PARIS-FLOWMON-IDRAC-1GBE-005(ETH)",
+    "scid": "3d5aab2f-b839-4a58-b5ac-5698699e5496",
+    "service_type": "ETHERNET",
+    "sid": "GA-01410",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 712093,
+    "monitored": false,
+    "name": "HA-77DCB24D4F",
+    "scid": "3d678eef-61b6-484e-b642-f22fd4386b2d",
+    "service_type": "GTS",
+    "sid": "GS-01176",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "172.18.27.1/24"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5.992"
+      }
+    ],
+    "imsid": 714244,
+    "monitored": false,
+    "name": "DCN-MANAGEMENT-HEL-FI",
+    "scid": "3d67f605-1196-42ea-a968-403953b3b4d7",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00130",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.222/31",
+          "2001:798:cc:1::75/126"
+        ],
+        "hostname": "rt1.bil.es.geant.net",
+        "interface": "ae4.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.223/31",
+          "2001:798:cc:1::76/126"
+        ],
+        "hostname": "rt0.par.fr.geant.net",
+        "interface": "lag-4.0"
+      }
+    ],
+    "imsid": 739468,
+    "monitored": true,
+    "name": "BIL-PAR-IPTRUNK",
+    "scid": "3d795236-0bc9-4c0b-9b7e-4c56f50b9826",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00016",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.76/31",
+          "2001:798:cc::79/126"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae3.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.77/31",
+          "2001:798:cc::7a/126"
+        ],
+        "hostname": "rt0.gen.ch.geant.net",
+        "interface": "lag-1.0"
+      }
+    ],
+    "imsid": 739713,
+    "monitored": true,
+    "name": "GEN-GEN-IPTRUNK",
+    "scid": "3d9cb1c6-027f-4d95-9a74-0f53d9872bf0",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02464",
+    "speed": 858993459200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.44/31",
+          "2001:798:cc:1::d/126"
+        ],
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae3.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.45/31",
+          "2001:798:cc:1::e/126"
+        ],
+        "hostname": "rt0.vie.at.geant.net",
+        "interface": "lag-9.0"
+      }
+    ],
+    "imsid": 740790,
+    "monitored": false,
+    "name": "BUD-VIE-IPTRUNK",
+    "scid": "3e75c7af-7253-4f8d-ac4a-959bff2e8162",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00026",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.gen.ch.geant.net",
+        "interface": "lag-5"
+      }
+    ],
+    "imsid": 739734,
+    "monitored": true,
+    "name": "FRA-GEN-1.6T-LAG",
+    "scid": "3e82f4ab-f77c-4ea7-98b4-69189ccfd08b",
+    "service_type": "ETHERNET",
+    "sid": "GA-01888",
+    "speed": 1717986918400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CARNET"
+    ],
+    "endpoints": [],
+    "imsid": 709737,
+    "monitored": true,
+    "name": "CARNET EUMETCAST AP2",
+    "scid": "3e87b238-ee33-428c-b4aa-2afbfbf786ff",
+    "service_type": "EUMETSAT TERRESTRIAL",
+    "sid": "GS-01098",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.fra.de.geant.net",
+        "interface": "ae0.0"
+      },
+      {
+        "addresses": [
+          "10.0.0.2/28"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "irb.3006"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae30.3006"
+      }
+    ],
+    "imsid": 733017,
+    "monitored": false,
+    "name": "TAAS-GTS-IMS-MEDIATION-FRANKFURT",
+    "scid": "3ea7703d-27d9-4281-a89d-83925bcae38b",
+    "service_type": "L3-VPN",
+    "sid": "GS-00866",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 702120,
+    "monitored": true,
+    "name": "TEST-GOC-LINK (DO NOT OPEN A TICKET)",
+    "scid": "3ea9baba-1cfc-40d7-b221-a73cb86409dd",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00376",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.15"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28.4092"
+      }
+    ],
+    "imsid": 739680,
+    "monitored": true,
+    "name": "BELNET-NCCN-EXPRESSROUTE-VLAN4092",
+    "scid": "3eb5830f-634e-4293-9fc7-55a3dcbb18e4",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01126",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663152,
+    "monitored": false,
+    "name": "PSMP-BUC-RO-VLAN124",
+    "scid": "3ecf200c-40a5-4899-9074-e3cc7354dbdd",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00364",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 743167,
+    "monitored": true,
+    "name": "COR-COR-MGMT-LAG",
+    "scid": "3f12b13d-a18a-4b04-be5a-d67a58f9e260",
+    "service_type": "ETHERNET",
+    "sid": "GA-02617",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "RASH"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.172/31",
+          "2001:798:1::91/126"
+        ],
+        "hostname": "rt0.sof.bg.geant.net",
+        "interface": "lag-24.333"
+      }
+    ],
+    "imsid": 745019,
+    "monitored": true,
+    "name": "RASH-AP2-IAS",
+    "scid": "3f1a013b-8d15-41ed-91a3-e852f9529b19",
+    "service_type": "GWS - INDIRECT",
+    "sid": "GS-00540",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-224050"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-21:3507"
+      },
+      {
+        "hostname": "rt1.bil.es.geant.net",
+        "interface": "ae15.951"
+      }
+    ],
+    "imsid": 745317,
+    "monitored": true,
+    "name": "GEANT_EPIPE_224050",
+    "scid": "3f1c0443-a1c9-4a6e-baaf-1c5630bd9a3f",
+    "service_type": "ETHERNET",
+    "sid": "GS-02515",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "T-SYSTEMS"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "80.158.74.253/31"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae27.4001"
+      }
+    ],
+    "imsid": 734863,
+    "monitored": false,
+    "name": "NL-T-SYSTEMS-IAS",
+    "scid": "3f215178-a475-499a-b9c2-e7f422af6f56",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-02271",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-0/0/18"
+      }
+    ],
+    "imsid": 658648,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-043(ETH)",
+    "scid": "3f23736f-1a0e-49ed-b650-9e8e40f5668c",
+    "service_type": "ETHERNET",
+    "sid": "GA-01244",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.109.141/30"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "gr-3/0/0.2"
+      }
+    ],
+    "imsid": 732658,
+    "monitored": false,
+    "name": "GRE-MULTICAST-TUNNEL-NCI-CSIRO",
+    "scid": "3f3093de-461c-4559-8dd2-fe8ea7e7b4ac",
+    "service_type": "EUMETSAT GRE",
+    "sid": "GS-01084",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PF1-RARE.POZ.PL.GEANT.NET",
+        "port": "XE-2"
+      },
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "xe-3/0/2.107"
+      },
+      {
+        "hostname": "rt1.pra.cz.geant.net",
+        "interface": "xe-3/0/6"
+      },
+      {
+        "hostname": "rt1.pra.cz.geant.net",
+        "interface": "xe-3/0/6.107"
+      }
+    ],
+    "imsid": 737234,
+    "monitored": false,
+    "name": "PRA-POZ-RARE-BMS9",
+    "scid": "3f320a27-40e2-4968-93f1-2677d3fbb71e",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00751",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "ams-fra_MISC_SURFNET-DFN_17070",
+    "scid": "3f4f3f8b-8f4e-48af-8691-7ebe8643350d",
+    "service_type": null,
+    "sid": "DS-40615",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "TS1.MAD.ES.GEANT.NET(OPENGEAR)",
+        "port": "NET1"
+      }
+    ],
+    "imsid": 677765,
+    "monitored": false,
+    "name": "MAD OOB LINK",
+    "scid": "3f69f5e6-e42e-4116-8be4-637697c29663",
+    "service_type": "OOB IP LINK",
+    "sid": "GS-00407",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "mx1.gen.ch - Traffic - ae7 - LAG INFRASTRUCTURE BACKBONE | GEN-MAD |",
+    "scid": "3fa425fb-9737-457d-a8ab-c9d55bb86c3e",
+    "service_type": null,
+    "sid": "GA-01879",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "FCT"
+    ],
+    "endpoints": [],
+    "imsid": 712373,
+    "monitored": true,
+    "name": "MD-VPN-VRR-LJUBLJANA-FCT-1-PT",
+    "scid": "3fb8df59-fc98-43d1-af1b-2bd04574d245",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01017",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "149.6.182.114/29",
+          "2001:978:2:26::2/112"
+        ],
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae19.0"
+      }
+    ],
+    "imsid": 708282,
+    "monitored": true,
+    "name": "COGENT-GWS-BUD",
+    "scid": "3fc038e5-7e9e-4969-bab9-dd92030d8a4c",
+    "service_type": "GWS - UPSTREAM",
+    "sid": "GS-00065",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "ams-lon_GEANTOpen_SINET-SINGAREN_CAE1_19120_VL2361",
+    "scid": "3fd04e5f-e3d2-4882-91fe-11ad0bc9ba29",
+    "service_type": null,
+    "sid": "GS-00958",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-1/0/47"
+      }
+    ],
+    "imsid": 658836,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-057(ETH)",
+    "scid": "3fe0469d-f339-4859-a9f0-879cd115dd55",
+    "service_type": "ETHERNET",
+    "sid": "GA-01230",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.182/31",
+          "2001:798:cc:1::e1/126"
+        ],
+        "hostname": "rt0.fra.de.geant.net",
+        "interface": "lag-5.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.183/31",
+          "2001:798:cc:1::e2/126"
+        ],
+        "hostname": "rt0.gen.ch.geant.net",
+        "interface": "lag-5.0"
+      }
+    ],
+    "imsid": 739737,
+    "monitored": true,
+    "name": "FRA-GEN-IPTRUNK",
+    "scid": "40573045-0dd0-4623-a68f-36044ba8523c",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00034",
+    "speed": 1717986918400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 718917,
+    "monitored": false,
+    "name": "DCN_MANAGEMENT_ZAG",
+    "scid": "406fe4ba-65b4-4f03-adcb-ab523f1d3b34",
+    "service_type": "SERVER LINK",
+    "sid": "GS-01218",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "80.249.210.137/21",
+          "2001:7f8:1::a502:1320:1/64"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae12.100"
+      }
+    ],
+    "imsid": 734937,
+    "monitored": false,
+    "name": "IX-PEERINGS-IN-AMS-IX",
+    "scid": "40792b2f-837f-493c-94a9-1a99ad9342ea",
+    "service_type": "IP PEERING - NON R&E (PUBLIC)",
+    "sid": "GS-00955",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.106.149/30",
+          "2001:798:bb:1::d/126"
+        ],
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/0/2.0"
+      }
+    ],
+    "imsid": 727045,
+    "monitored": false,
+    "name": "DTN-LON2-10G-DATA",
+    "scid": "40bb5a5c-adba-4607-b39c-9d9597d1ab53",
+    "service_type": "SERVER LINK",
+    "sid": "GS-02355",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae15"
+      }
+    ],
+    "imsid": 733833,
+    "monitored": true,
+    "name": "FR-ITER-LAG",
+    "scid": "40d68758-67a3-4aa7-8b9a-308698a0c96f",
+    "service_type": "ETHERNET",
+    "sid": "GA-02416",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/1/6"
+      }
+    ],
+    "imsid": 733211,
+    "monitored": true,
+    "name": "LONDON 2-LONDON 2-10GBE-030(GEANT)",
+    "scid": "40f1ef9e-5fcc-4cfb-b0cc-01a406ab5a0a",
+    "service_type": "ETHERNET",
+    "sid": "GA-01330",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GARR"
+    ],
+    "endpoints": [
+      {
+        "equipment": "MIL01-MTC6-1",
+        "port": "2-A-1-S9"
+      },
+      {
+        "equipment": "MIL01-MTC6-1",
+        "port": "2-A-1-S9"
+      },
+      {
+        "equipment": "MIL01-MTC6-1",
+        "port": "2-A-1-S9"
+      },
+      {
+        "equipment": "MIL01-MTC6-1",
+        "port": "2-A-1-S9"
+      }
+    ],
+    "imsid": 732748,
+    "monitored": true,
+    "name": "GARR-GEN1-MIL1 SPECTRUM SERVICE 1",
+    "scid": "4101396b-fd48-45cb-b38d-cc23ec7f795a",
+    "service_type": "GEANT SPECTRUM SERVICE",
+    "sid": "GS-02603",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RENAM"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.114/31",
+          "2001:798:1::219/126"
+        ],
+        "hostname": "rt1.chi.md.geant.net",
+        "interface": "ae10.333"
+      }
+    ],
+    "imsid": 714070,
+    "monitored": true,
+    "name": "RENAM-AP1-IAS",
+    "scid": "4118479e-f597-461e-8213-e4213301a0b3",
+    "service_type": "GWS - INDIRECT",
+    "sid": "GS-00541",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 703117,
+    "monitored": true,
+    "name": "MAD-PAR-LAG",
+    "scid": "4120f4b8-5300-4bbe-afcc-c7ad54a75221",
+    "service_type": "ETHERNET",
+    "sid": "GA-01825",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "REDIRIS-AP1-CLS|ASN766",
+    "scid": "412121b4-d1fc-4091-9316-b36e1dbdefb4",
+    "service_type": null,
+    "sid": "GS-00613",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GOOGLE"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae13"
+      }
+    ],
+    "imsid": 731115,
+    "monitored": true,
+    "name": "GOOGLE-FRA15-LAG",
+    "scid": "4131122c-3646-4d48-a141-9fcc09ea3d82",
+    "service_type": "ETHERNET",
+    "sid": "TE-01943",
+    "speed": 32212254720,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "LITNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ae10"
+      }
+    ],
+    "imsid": 745327,
+    "monitored": true,
+    "name": "LITNET-AP2-LAG",
+    "scid": "413f5dcd-71f2-4eb8-abd9-2110fe993351",
+    "service_type": "ETHERNET",
+    "sid": "GA-02071",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5.3909"
+      },
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.11"
+      }
+    ],
+    "imsid": 707121,
+    "monitored": true,
+    "name": "NORDUNET-LTU-EXPRESSROUTE-VLAN3909",
+    "scid": "41479a30-9611-4916-b26b-e85a5284458c",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01153",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "VERIZON"
+    ],
+    "endpoints": [],
+    "imsid": 731620,
+    "monitored": false,
+    "name": "FRANKFURT-VERIZON-2-15133-DE-2",
+    "scid": "416dc93b-5e72-49e3-8027-a0067c0dbb26",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-00933",
+    "speed": 32212254720,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ORACLE"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae16.415"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae40.415"
+      }
+    ],
+    "imsid": 719496,
+    "monitored": true,
+    "name": "FRA-MAD-ORACLE-REDIRIS-22010-VL415",
+    "scid": "419195fb-dcce-4588-a5fe-f7e95c69c6f7",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02096",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "10.1.0.1/24"
+        ],
+        "hostname": "srx2.ch.office.geant.net",
+        "interface": "ge-0/0/3.996"
+      }
+    ],
+    "imsid": 663240,
+    "monitored": false,
+    "name": "CITY-HOUSE-LAB-INFINERA-MGMT-NETWORK",
+    "scid": "4198f124-51f4-41bc-9759-dca44d793ecc",
+    "service_type": "CORPORATE",
+    "sid": "GS-01212",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SINGAREN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/2/5"
+      },
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/2/5.3179"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae12.3179"
+      }
+    ],
+    "imsid": 726769,
+    "monitored": false,
+    "name": "LON-LON2-GEANT2-SINGAREN-SINGAREN-17085",
+    "scid": "41d6eb6d-7112-4a7c-a7fc-715040ac6199",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00724",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661419,
+    "monitored": false,
+    "name": "PSMP-PAR-FR-DRAC",
+    "scid": "41feda79-33c7-49a7-bde6-24b7119d411d",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00366",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.90.14/31",
+          "2001:798:1::231/126"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae24.0"
+      }
+    ],
+    "imsid": 731914,
+    "monitored": true,
+    "name": "DE-EXOSCALE-IAS",
+    "scid": "420a7118-5bcd-4bf8-9f9a-2f5deb5fd3e7",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-00604",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 712569,
+    "monitored": false,
+    "name": "DCN-MANAGEMENT-PRA-CZ",
+    "scid": "421078d8-ea4e-4cb6-b035-e9f78b5a0984",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00126",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ROEDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.buc.ro.geant.net",
+        "interface": "xe-5/0/6"
+      },
+      {
+        "hostname": "rt2.chi.md.geant.net",
+        "interface": "xe-0/1/3"
+      },
+      {
+        "hostname": "rt2.chi.md.geant.net",
+        "interface": "xe-0/1/3.0"
+      },
+      {
+        "hostname": "rt1.buc.ro.geant.net",
+        "interface": "xe-5/0/6.0"
+      }
+    ],
+    "imsid": 743607,
+    "monitored": true,
+    "name": "BUC-CHI-RENAM-ROEDUNET-240752",
+    "scid": "422233ff-182c-4e42-9498-a4b305169b89",
+    "service_type": "GEANT - GBS",
+    "sid": "GS-02576",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "lon-lon-GEANTOpen-AARNET-NETHERLIGHT-21003",
+    "scid": "423c2c55-96c3-44bd-abec-b3216b1ce93b",
+    "service_type": null,
+    "sid": "DS-53405",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ASNET-TW"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "xe-0/1/5"
+      }
+    ],
+    "imsid": 742817,
+    "monitored": true,
+    "name": "NL-ASNET-TW-LL",
+    "scid": "423cf5d9-086a-4edd-90af-3a2c970a5314",
+    "service_type": "ETHERNET",
+    "sid": "GA-01635",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661197,
+    "monitored": false,
+    "name": "LON2-GROOVE-1-MANAGEMENT",
+    "scid": "425875d0-eed3-44c7-879e-c558c1063f90",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00239",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658691,
+    "monitored": false,
+    "name": "LON2-PRD-ESX11-VSAN-LAG",
+    "scid": "426f601c-483f-4046-9b01-8d40cc76c27e",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01712",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.4"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-240581"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20:4072"
+      }
+    ],
+    "imsid": 744226,
+    "monitored": true,
+    "name": "MSESCIENSAN-02535",
+    "scid": "427e94ed-8c99-4a0e-aae4-b8e8dca5c2b4",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02535",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [
+      {
+        "hostname": "srx1.ch.office.geant.net",
+        "interface": "ge-0/0/2"
+      },
+      {
+        "addresses": [
+          "62.40.112.34/31"
+        ],
+        "hostname": "srx1.ch.office.geant.net",
+        "interface": "ge-0/0/2.0"
+      }
+    ],
+    "imsid": 708237,
+    "monitored": false,
+    "name": "SRX1-CAM-TO-SWITCHCLUSTER-VME0",
+    "scid": "427f1af0-ddd2-4a15-bf80-1edcc8f07057",
+    "service_type": "CORPORATE",
+    "sid": "GS-01748",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662988,
+    "monitored": false,
+    "name": "VM-AMS-NL-IDRACS-250",
+    "scid": "4289a714-3b4c-4cb1-b446-3f66ed65a55c",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00384",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [],
+    "imsid": 662218,
+    "monitored": true,
+    "name": "HAMBURG-HAMBURG-1GBE-014(ETH)",
+    "scid": "429e5a17-a495-4972-bb00-09724c29debc",
+    "service_type": "ETHERNET",
+    "sid": "GA-01642",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661716,
+    "monitored": false,
+    "name": "PRA-GROOVE-1-MANAGEMENT",
+    "scid": "42b2a681-de66-4ece-8d38-7dfc675777a7",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00280",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CERN"
+    ],
+    "endpoints": [],
+    "imsid": 739842,
+    "monitored": false,
+    "name": "GEN-PAR-CERN-INTERNET2-22065",
+    "scid": "42fddcea-ec9b-4141-bfcb-5113a64f7ef6",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-2558",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "ae8"
+      }
+    ],
+    "imsid": 658666,
+    "monitored": false,
+    "name": "LON2-PRD-ESX12-ESXI-TRAFFIC",
+    "scid": "431944c2-5b39-43b8-ba84-f4140db6252f",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01698",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "IUCC"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.89/30",
+          "2001:798:1::6d/126"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae22.333"
+      }
+    ],
+    "imsid": 729998,
+    "monitored": true,
+    "name": "IUCC-AP2-IAS",
+    "scid": "43367b26-0a2a-4f38-84ad-453522b049a1",
+    "service_type": "GWS - INDIRECT",
+    "sid": "GS-00533",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.80/31",
+          "2001:798:cc:1::e9/126"
+        ],
+        "hostname": "rt0.ams.nl.geant.net",
+        "interface": "lag-3.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.81/31",
+          "2001:798:cc:1::ea/126"
+        ],
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-4.0"
+      }
+    ],
+    "imsid": 744129,
+    "monitored": true,
+    "name": "AMS-BRU-IPTRUNK",
+    "scid": "4354685f-d1e0-4c87-a92e-e490ab6c6647",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00008",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "xe-2/1/3"
+      }
+    ],
+    "imsid": 720004,
+    "monitored": true,
+    "name": "SCION1ILO.GEN.CH-EXTERNAL-LL",
+    "scid": "435cab2c-b6cf-4b6e-a33c-ec9a3f9e83b9",
+    "service_type": "ETHERNET",
+    "sid": "GA-02187",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "JISC"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.57/30",
+          "2001:798:99:1::7d/126"
+        ],
+        "hostname": "rt0.lon2.uk.geant.net",
+        "interface": "lag-20.1"
+      }
+    ],
+    "imsid": 743310,
+    "monitored": true,
+    "name": "JISC-AP2",
+    "scid": "436002e6-83dc-403a-9b26-3d0618a7595e",
+    "service_type": "GEANT IP",
+    "sid": "GS-00480",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662180,
+    "monitored": true,
+    "name": "FRANKFURT-FRANKFURT-1GBE-005(ETH)",
+    "scid": "4371dfdb-55d3-4f26-9de7-c39b257a5bd0",
+    "service_type": "ETHERNET",
+    "sid": "GA-01614",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "COLT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae29"
+      }
+    ],
+    "imsid": 732120,
+    "monitored": true,
+    "name": "COLT-GWS-FRA-LAG",
+    "scid": "43b33ee4-e828-42a6-99da-77c2c84d8f5d",
+    "service_type": "ETHERNET",
+    "sid": "GA-02113",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "MICROSOFT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-21:3915"
+      }
+    ],
+    "imsid": 747633,
+    "monitored": true,
+    "name": "AMS-HAM-MSE-01161",
+    "scid": "43c0d2fd-e899-48a7-90fe-6d9a2d8fe91c",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-01161",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "APPLE"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae45"
+      }
+    ],
+    "imsid": 730218,
+    "monitored": true,
+    "name": "DE-APPLE-LAG",
+    "scid": "43d11dc8-16c5-4132-977a-e957d56de5fd",
+    "service_type": "ETHERNET",
+    "sid": "GA-02394",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PF1-RARE.FRA.DE.GEANT.NET",
+        "port": "XE-2"
+      },
+      {
+        "hostname": "rt1.pra.cz.geant.net",
+        "interface": "xe-3/0/7"
+      },
+      {
+        "hostname": "rt1.pra.cz.geant.net",
+        "interface": "xe-3/0/7.104"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-0/0/2.104"
+      }
+    ],
+    "imsid": 737235,
+    "monitored": false,
+    "name": "FRA-PRA-RARE-BMS8",
+    "scid": "43eedbf4-a32c-44d4-bf30-6efbc6a48ecf",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00706",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/3/0"
+      }
+    ],
+    "imsid": 662849,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-079(GEANT)",
+    "scid": "43ffe391-ebc6-47c8-bcad-7188b38b05e9",
+    "service_type": "ETHERNET",
+    "sid": "GA-01652",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "srx2.am.office.geant.net",
+        "interface": "ge-0/0/0"
+      }
+    ],
+    "imsid": 662514,
+    "monitored": true,
+    "name": "SRX-2 TO SWITCH CLUSTER",
+    "scid": "4422026b-b5c4-4dde-8ce5-45bbc170b8fa",
+    "service_type": "ETHERNET",
+    "sid": "GA-01246",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "ae12"
+      }
+    ],
+    "imsid": 658523,
+    "monitored": false,
+    "name": "LON2-PRD-ESX02-VM-TRAFFIC",
+    "scid": "442e145d-72c8-46a8-9235-10243125b0cd",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01700",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CYNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "lag-23:505.505"
+      },
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "lag-21:505.505"
+      },
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "pwe-667"
+      }
+    ],
+    "imsid": 745484,
+    "monitored": true,
+    "name": "GRIX-00667",
+    "scid": "444df2b0-46b2-4978-ad24-c4396ff3784b",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00667",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.por.pt.geant.net",
+        "interface": "ae4"
+      }
+    ],
+    "imsid": 742838,
+    "monitored": true,
+    "name": "POR-POR-MGMT-LAG",
+    "scid": "44620c82-68ae-4fc7-992c-7fd1368dba5b",
+    "service_type": "ETHERNET",
+    "sid": "GA-02585",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658697,
+    "monitored": false,
+    "name": "730XD-3-VM-TRAFFIC-LAG-PAR",
+    "scid": "44818516-04d0-4a9a-8a86-74e4bd1917fa",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01725",
+    "speed": 32212254720,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708287,
+    "monitored": false,
+    "name": "FLOWMON-DDOS-FRA-DE-NETFLOW",
+    "scid": "448dfc45-8eb6-4c6b-bd4b-776de589b642",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00165",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "equipment": "FRA01-GRV4",
+        "port": "1/1/5"
+      },
+      {
+        "equipment": "GEN01-GRV8",
+        "port": "1/2/5"
+      },
+      {
+        "equipment": "DIGITAL REALTY A-END",
+        "port": "DE259799"
+      },
+      {
+        "equipment": "DIGITAL REALTY Z-END",
+        "port": "DE259799"
+      }
+    ],
+    "imsid": 739640,
+    "monitored": true,
+    "name": "FRA-GEN-NORDUNET-24055-1",
+    "scid": "44b6bd4c-e302-4be2-b4fd-21f3aad71dd3",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-02531",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [],
+    "imsid": 738290,
+    "monitored": true,
+    "name": "PSNC-SUNET-SLICES-KTH",
+    "scid": "44c44e92-2780-464a-9f65-5741830dbd9b",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-024914",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ANKABUT"
+    ],
+    "endpoints": [],
+    "imsid": 708290,
+    "monitored": false,
+    "name": "UK-ANKABUT",
+    "scid": "44d937fc-998d-436f-a304-6768c5379046",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00906",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SURF"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-2/0/5.3101"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-1/3/0.3101"
+      }
+    ],
+    "imsid": 726158,
+    "monitored": true,
+    "name": "LON-LON-SURF-AARNET-23009",
+    "scid": "44da7eb4-a406-4a2d-81c3-9aed23056a86",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02249",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663225,
+    "monitored": false,
+    "name": "PS-AMS-NL-IDRAC",
+    "scid": "44fd748e-9303-4ba2-8545-3a2203363489",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00285",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "INTERNET2"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/3/5.2110"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae26.2110"
+      }
+    ],
+    "imsid": 709340,
+    "monitored": true,
+    "name": "LON-PAR-GEANTOPEN-INTERNET2-HBKU-190092",
+    "scid": "4511029e-8a2b-4dba-85fd-81c19a239745",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00985",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.112.42/30",
+          "2001:799:cb2:3::2/64"
+        ],
+        "hostname": "srx2.ch.office.geant.net",
+        "interface": "ge-0/0/1.10"
+      }
+    ],
+    "imsid": 662939,
+    "monitored": false,
+    "name": "SRX2-SRX1-CH-OFFICE",
+    "scid": "4524394e-b166-4b9a-b43e-534663d73aa3",
+    "service_type": "CORPORATE",
+    "sid": "GS-00448",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.gen.ch.geant.net",
+        "interface": "lag-1"
+      }
+    ],
+    "imsid": 739712,
+    "monitored": true,
+    "name": "GEN-GEN-800G-LAG",
+    "scid": "452535d6-c624-462c-a6df-632141afaba4",
+    "service_type": "ETHERNET",
+    "sid": "GA-02463",
+    "speed": 858993459200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662961,
+    "monitored": false,
+    "name": "AMS-SINET-EDGE-DEVICE-IDRAC",
+    "scid": "453f74db-71d7-4f83-8029-a30212e35186",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00097",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658832,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-1GBE-011(ETH)",
+    "scid": "455259b6-b9de-4dd0-b0be-a22d7a459b70",
+    "service_type": "ETHERNET",
+    "sid": "GA-01513",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.17"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-240587"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20:4081"
+      }
+    ],
+    "imsid": 744143,
+    "monitored": false,
+    "name": "BELNET-ARPGAN-01130",
+    "scid": "457783ac-46db-4652-8548-a4716b496540",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01130",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ORANGE"
+    ],
+    "endpoints": [],
+    "imsid": 733922,
+    "monitored": true,
+    "name": "NL-ORANGE-LAG-2",
+    "scid": "458cd561-74cc-462d-a726-52edacccd897",
+    "service_type": "ETHERNET",
+    "sid": "GA-02181",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.the.gr.geant.net",
+        "interface": "lag-5"
+      }
+    ],
+    "imsid": 745265,
+    "monitored": true,
+    "name": "MIL2-THE-LAG",
+    "scid": "458dc566-c365-428c-aff3-be772e147f88",
+    "service_type": "ETHERNET",
+    "sid": "GA-02608",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "equipment": "AMS01-GRV2",
+        "port": "1/1/5"
+      },
+      {
+        "equipment": "DIGITAL REALTY A-END",
+        "port": "DE258133"
+      },
+      {
+        "equipment": "DIGITAL REALTY Z-END",
+        "port": "DE258133"
+      }
+    ],
+    "imsid": 739362,
+    "monitored": true,
+    "name": "AMS-FRA-NORDUNET-24054-1",
+    "scid": "45f5b94b-79a7-4364-9771-9097859a2374",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-02529",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.148/31",
+          "2001:798:111:1::25/126"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae30.111"
+      }
+    ],
+    "imsid": 734117,
+    "monitored": true,
+    "name": "NL-ESNET-LHCONE",
+    "scid": "46284a44-4369-4f04-96f0-6e5f3c9d2c55",
+    "service_type": "L3-VPN",
+    "sid": "GS-00835",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.AM.OFFICE",
+        "port": "GE-0/0/3"
+      }
+    ],
+    "imsid": 658498,
+    "monitored": true,
+    "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-016(ETH)",
+    "scid": "463da2e0-77fb-4696-b01f-99cf57aa75d3",
+    "service_type": "ETHERNET",
+    "sid": "GA-01258",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708295,
+    "monitored": false,
+    "name": "VIENNA-VERIZON-1-15133-AT-1",
+    "scid": "464e5e07-22c2-424d-af56-8d6c3bc4a320",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-00945",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661306,
+    "monitored": false,
+    "name": "ETHS-MX1.PAR.FR_GE-0/2/0.22",
+    "scid": "46ae5cf2-baf5-44d1-b997-cea28ed93346",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00267",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SWITCH"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "et-1/0/5.0 - eumet"
+      }
+    ],
+    "imsid": 709834,
+    "monitored": true,
+    "name": "SWITCH EUMETCAST AP1",
+    "scid": "46bafea3-4e98-4188-9345-8c440ba5a08b",
+    "service_type": "EUMETSAT TERRESTRIAL",
+    "sid": "GS-01120",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-124050"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-21:3506"
+      },
+      {
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae16.975"
+      }
+    ],
+    "imsid": 745316,
+    "monitored": true,
+    "name": "GEANT_EPIPE_124050",
+    "scid": "46c8f60b-4d9e-4a13-902c-c8cd3ea1fe7a",
+    "service_type": "ETHERNET",
+    "sid": "GS-02514",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661169,
+    "monitored": false,
+    "name": "LON2-SEC-ESX-DEVICES-IDRAC",
+    "scid": "47113998-b5b8-41ea-9a76-8d2bec72b4eb",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00242",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 718110,
+    "monitored": true,
+    "name": "BRA-VIE-IP4",
+    "scid": "47385e1e-d7b0-4348-bbae-201bd54fc77b",
+    "service_type": "ETHERNET",
+    "sid": "GA-01298",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658747,
+    "monitored": true,
+    "name": "PRAGUE-PRAGUE-10GBE-001(ETH)",
+    "scid": "47543186-cfab-489b-9b2e-c52c638eee41",
+    "service_type": "ETHERNET",
+    "sid": "GA-01424",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx2.lis.pt.geant.net",
+        "interface": "ae2"
+      }
+    ],
+    "imsid": 711783,
+    "monitored": true,
+    "name": "LAG-SW1.LIS.PT_AE2",
+    "scid": "4755c37d-f858-4cb4-9d34-d877df5e359a",
+    "service_type": "ETHERNET",
+    "sid": "GA-01788",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 732392,
+    "monitored": true,
+    "name": "LONDON-LONDON-1GBE-012(GEANT)",
+    "scid": "47567e20-bfd7-4142-ad45-c40eba87740c",
+    "service_type": "ETHERNET",
+    "sid": "GA-01476",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.85/30"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae13.104"
+      }
+    ],
+    "imsid": 730143,
+    "monitored": true,
+    "name": "UK-ESNET-IPV4",
+    "scid": "475970dd-f379-4b8a-87b9-90d8a0d4669c",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00915",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx2.lis.pt.geant.net",
+        "interface": "ge-0/3/7"
+      }
+    ],
+    "imsid": 677319,
+    "monitored": true,
+    "name": "LISBON-LISBON-1GBE-004(ETH)",
+    "scid": "47852c3f-1835-4d20-b57a-075fbb3da811",
+    "service_type": "ETHERNET",
+    "sid": "GA-01656",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SWITCH"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae13.40"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae15.40"
+      }
+    ],
+    "imsid": 714175,
+    "monitored": false,
+    "name": "AMS-PAR-SCION-SWITCH-NETHERLIGHT-20019",
+    "scid": "47a6fc09-7235-47e3-b49d-ea21cefde2ab",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00658",
+    "speed": 644245094400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "AZSCIENCENET"
+    ],
+    "endpoints": [],
+    "imsid": 663144,
+    "monitored": false,
+    "name": "AZSCIENCENET-TESTVLAN-E2E",
+    "scid": "47c73a84-d0d6-4030-bcd1-bee5ebcb3ce2",
+    "service_type": "GEANT IP",
+    "sid": "GS-00431",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 732258,
+    "monitored": true,
+    "name": "GENEVA-GENEVA-1GBE-002(GEANT)",
+    "scid": "47e14bca-8d11-4486-954b-e4ec26af5e00",
+    "service_type": "ETHERNET",
+    "sid": "GA-01547",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663069,
+    "monitored": false,
+    "name": "TEMPACCESS-AMS-NL-VLAN79",
+    "scid": "4849459e-772f-4455-883f-52e2c9dda260",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00375",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 732405,
+    "monitored": true,
+    "name": "A10-DDOS-SCRUBBING-FRA-DIRTY-TRAFFIC-LAG",
+    "scid": "486705a2-adad-4f58-90d8-5f1ecf084314",
+    "service_type": "ETHERNET",
+    "sid": "GA-01955",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.AM.OFFICE",
+        "port": "GE-1/0/47"
+      }
+    ],
+    "imsid": 658624,
+    "monitored": true,
+    "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-029(ETH)",
+    "scid": "48784ac1-c86c-481c-8383-de072d434ad6",
+    "service_type": "ETHERNET",
+    "sid": "GA-01268",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.127.139/31"
+        ],
+        "hostname": "srx1.ch.office.geant.net",
+        "interface": "ge-0/0/4.19"
+      }
+    ],
+    "imsid": 709123,
+    "monitored": false,
+    "name": "VIRGIN_MEDIA_EX1_LON2_TO_CAM_SRX_VLAN19-CH",
+    "scid": "48b43226-341c-43c9-982b-d07f511541bd",
+    "service_type": "CORPORATE",
+    "sid": "GS-00516",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-1/0/2"
+      }
+    ],
+    "imsid": 659047,
+    "monitored": true,
+    "name": "LONDON-LONDON-10GBE-022(ETH)",
+    "scid": "48e4f694-bb38-4431-83e5-dc5f2c2346a3",
+    "service_type": "ETHERNET",
+    "sid": "GA-01478",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [],
+    "imsid": 727421,
+    "monitored": true,
+    "name": "V-LAN_1005_RT2.BRU.BE_XE-0/1/0_",
+    "scid": "48e9d205-0a37-4545-b2c8-5a3d5d10eea9",
+    "service_type": "ETHERNET",
+    "sid": "GS-00678",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.194/31",
+          "2001:798:cc:1::81/126"
+        ],
+        "hostname": "rt1.chi.md.geant.net",
+        "interface": "ae1.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.195/31",
+          "2001:798:cc:1::82/126"
+        ],
+        "hostname": "rt2.chi.md.geant.net",
+        "interface": "ae1.0"
+      }
+    ],
+    "imsid": 713273,
+    "monitored": true,
+    "name": "CHI-CHI-IPTRUNK",
+    "scid": "49072222-cfac-4efd-92aa-e73035815706",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00028",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.pra.cz.geant.net",
+        "interface": "xe-2/0/3.1003"
+      }
+    ],
+    "imsid": 661729,
+    "monitored": true,
+    "name": "JRA1-SDN-BOD-PILOT-BR53-PRA",
+    "scid": "49132879-562a-4341-a03a-54a960132472",
+    "service_type": "L3-VPN",
+    "sid": "GS-02123",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "DFN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae16.931"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae11.931"
+      }
+    ],
+    "imsid": 719501,
+    "monitored": true,
+    "name": "FRA-MAD-DFN-REDIRIS-21028",
+    "scid": "49218421-3532-441f-9762-9d7c2d0772dc",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00692",
+    "speed": 858993459200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "COLT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae28"
+      }
+    ],
+    "imsid": 720365,
+    "monitored": true,
+    "name": "LAG-MX1.VIE.AT_AE28",
+    "scid": "4928ff63-df00-43ec-a90c-97fee746e9fc",
+    "service_type": "ETHERNET",
+    "sid": "GA-02114",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ge-0/3/0"
+      }
+    ],
+    "imsid": 732260,
+    "monitored": true,
+    "name": "VIENNA-VIENNA-1GBE-001(GEANT)",
+    "scid": "494a706e-d295-4626-8e3b-986d3104d773",
+    "service_type": "ETHERNET",
+    "sid": "GA-01483",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "AMRES"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.89.28/31",
+          "2001:798:1::1b5/126"
+        ],
+        "hostname": "rt0.zag.hr.geant.net",
+        "interface": "lag-21.333"
+      }
+    ],
+    "imsid": 747849,
+    "monitored": true,
+    "name": "AMRES-AP1-IAS",
+    "scid": "4952cd4b-c119-434a-a775-8eea4c7553e6",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00522",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CYNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.153/30",
+          "2001:798:99:1::35/126"
+        ],
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae14.100"
+      }
+    ],
+    "imsid": 733814,
+    "monitored": true,
+    "name": "CYNET-AP1",
+    "scid": "49582058-887b-46af-a913-9be8bc6674bc",
+    "service_type": "GEANT IP",
+    "sid": "GS-02441",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "MICROSOFT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-21:3908"
+      }
+    ],
+    "imsid": 747631,
+    "monitored": true,
+    "name": "AMS-HAM-MSE-01159",
+    "scid": "4976dd5b-356a-4a21-b109-0552262620f8",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-01159",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "IUCC"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.65/30",
+          "2001:798:28:20aa::5/126"
+        ],
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae21.100"
+      }
+    ],
+    "imsid": 730578,
+    "monitored": true,
+    "name": "IUCC-AP1",
+    "scid": "498dcc2a-482b-4c6d-b1f9-d3c0406c97ce",
+    "service_type": "GEANT IP",
+    "sid": "GS-00477",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661392,
+    "monitored": false,
+    "name": "PAR-GROOVE-2",
+    "scid": "49a272f3-aae1-4732-9d3b-f8279032187f",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00274",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/1/5"
+      },
+      {
+        "addresses": [
+          "62.40.120.25/29",
+          "2001:798:bb:1e::1/64"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/1/5.0"
+      }
+    ],
+    "imsid": 708302,
+    "monitored": false,
+    "name": "DTN-LON-100G-JBO-DATA",
+    "scid": "49b7f45f-5da3-48c9-8e23-101b41c1bb68",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00144",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PSMP-LHC-DRAC-LON-UK.GEANT.ORG",
+        "port": "10GE-1"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/0/7"
+      },
+      {
+        "addresses": [
+          "62.40.126.192/31",
+          "2001:798:111:1::6d/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/0/7.0"
+      }
+    ],
+    "imsid": 708314,
+    "monitored": false,
+    "name": "PS-LON-UK-PSMP-BWCTL-LHCONE",
+    "scid": "49c194fb-93af-45f0-bf79-1affb0b77923",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00320",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.the.gr.geant.net",
+        "interface": "lag-4"
+      }
+    ],
+    "imsid": 745264,
+    "monitored": true,
+    "name": "SOF-THE-LAG",
+    "scid": "49d06c0b-caf2-48bd-952a-a1f192690888",
+    "service_type": "ETHERNET",
+    "sid": "GA-02426",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "MAEEN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae27.101"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae19.101"
+      }
+    ],
+    "imsid": 736648,
+    "monitored": true,
+    "name": "LON-PAR-GEANTOPEN-MAEEN-INTERNET2-21086",
+    "scid": "49dff6cd-fac0-43c9-949c-1382db927bf5",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00728",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SURFNET"
+    ],
+    "endpoints": [],
+    "imsid": 663143,
+    "monitored": false,
+    "name": "SURFNET-AP1-LHCONE",
+    "scid": "49ecbba0-20cc-4b9c-8cbb-77183dc602c6",
+    "service_type": "L3-VPN",
+    "sid": "GS-00860",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "AARNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-1/3/0.3104"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae12.3104"
+      }
+    ],
+    "imsid": 705943,
+    "monitored": true,
+    "name": "LON-LON-GEANTOPEN-AARNET-SINGAREN-CAE1-20044-VL3104",
+    "scid": "49faeeef-7c99-4043-82ac-c58fc12cb751",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00960",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "MAEEN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.127.152/31",
+          "2001:798:99:1::f1/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae27.100"
+      }
+    ],
+    "imsid": 713957,
+    "monitored": true,
+    "name": "UK-MAEEN",
+    "scid": "49fdffe9-2dae-4aa1-96fd-47938a90e6e8",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00921",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "KIFU"
+    ],
+    "endpoints": [],
+    "imsid": 712391,
+    "monitored": true,
+    "name": "MD-VPN-VRR-LJUBLJANA-KIFU-HU",
+    "scid": "4a26efe7-ee1b-4611-aaf7-d17b326eb2c2",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01025",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "xe-4/2/3"
+      }
+    ],
+    "imsid": 719664,
+    "monitored": true,
+    "name": "VIENNA-VIENNA-10GBE-023(GEANT)",
+    "scid": "4a4ae342-0a6d-4b26-a2ca-4d2caf9f5301",
+    "service_type": "ETHERNET",
+    "sid": "GA-02147",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 728001,
+    "monitored": true,
+    "name": "AMS-PSMP-PS OWAMP(GEANT)",
+    "scid": "4a7df1f8-cf92-447c-a472-bd28636780d8",
+    "service_type": "ETHERNET",
+    "sid": "GA-01633",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708213,
+    "monitored": false,
+    "name": "PS-FRA-DE-PSMP3-BWCTL",
+    "scid": "4a92bd8b-2b89-473f-8d2b-fe4f5c4758bb",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00305",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708168,
+    "monitored": true,
+    "name": "PHYSICAL INFRASTURACTURE | TO SWITCH CLUSTER VME.0",
+    "scid": "4a98c3c4-cbb6-4ac6-b49e-6588c45bf0d1",
+    "service_type": "ETHERNET",
+    "sid": "GS-00170",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "LIS-LON-TRUNK",
+    "scid": "4a9e45b3-99e5-41d4-a858-c7ac381459b5",
+    "service_type": null,
+    "sid": "GA-01764",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 734736,
+    "monitored": false,
+    "name": "ATH2-MIL2-IPTRUNK",
+    "scid": "4aad7c02-30de-4213-90c7-75b9e7fa5fe8",
+    "service_type": "IP TRUNK",
+    "sid": "DS-000199",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.9"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28.4090"
+      }
+    ],
+    "imsid": 739678,
+    "monitored": true,
+    "name": "BELNET-FGOV-EXPRESSROUTE-VLAN4090",
+    "scid": "4b0a013b-0ace-45c8-8d22-a753cbb9b911",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01124",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 724614,
+    "monitored": true,
+    "name": "GEN-LON-800G-IPTRUNK",
+    "scid": "4b39e902-f15d-44d8-b5f6-e96e12b5e19a",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02227",
+    "speed": 858993459200,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SURF"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.2/31",
+          "2001:798:111:1::85/126"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae15.666"
+      }
+    ],
+    "imsid": 734592,
+    "monitored": true,
+    "name": "SURF-AP1-LHCONE-2",
+    "scid": "4b3f8013-ae4c-41a6-aafc-d4c8e2370559",
+    "service_type": "L3-VPN",
+    "sid": "GS-00793",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SINET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae12.2260"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae20.2260"
+      }
+    ],
+    "imsid": 706922,
+    "monitored": true,
+    "name": "AMS-LON-GEANTOPEN-SINET-SINGAREN-CAE1-19103-VL2260",
+    "scid": "4b49ec90-c550-44ba-8f81-93c90466a11d",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00957",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.104.22/31"
+        ],
+        "hostname": "rt1.pra.cz.geant.net",
+        "interface": "ae1.28"
+      }
+    ],
+    "imsid": 729004,
+    "monitored": false,
+    "name": "PRA-EUMETSAT-SERVER-DATA-TRAFFIC",
+    "scid": "4b775653-bc38-4802-a916-730c46d58ba4",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-02361",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.123.22/31"
+        ],
+        "hostname": "rt1.mil2.it.geant.net",
+        "interface": "ae5.7"
+      }
+    ],
+    "imsid": 661176,
+    "monitored": false,
+    "name": "NTP5.GEANT.NET",
+    "scid": "4b95fe57-65f3-4704-9659-8aef879ed66e",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00261",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.AM.OFFICE",
+        "port": "GE-2/0/46"
+      }
+    ],
+    "imsid": 658395,
+    "monitored": true,
+    "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-010(ETH)",
+    "scid": "4ba02003-7cd8-43a8-8fd1-29b6466c518b",
+    "service_type": "ETHERNET",
+    "sid": "GA-01264",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 702630,
+    "monitored": true,
+    "name": "PARIS 007B-PARIS 007B-LAG-006(GEANT)",
+    "scid": "4ba6de72-996e-4e13-b4a4-12f31f6c6be7",
+    "service_type": "ETHERNET",
+    "sid": "GA-01820",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [],
+    "imsid": 662192,
+    "monitored": true,
+    "name": "AMSTERDAM-AMSTERDAM-1GBE-042(ETH)",
+    "scid": "4bb5aae5-68ea-4896-9cd1-8523922b70d4",
+    "service_type": "ETHERNET",
+    "sid": "GA-01577",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.bra.sk.geant.net",
+        "interface": "ae8"
+      }
+    ],
+    "imsid": 740789,
+    "monitored": true,
+    "name": "BRA-VIE-LAG",
+    "scid": "4bb947cf-76a7-46a7-bd25-badbf401c0be",
+    "service_type": "ETHERNET",
+    "sid": "GA-01755",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ams.nl.geant.net",
+        "interface": "lag-4"
+      }
+    ],
+    "imsid": 738597,
+    "monitored": true,
+    "name": "AMS-LON-1.6T-LAG",
+    "scid": "4bdb4f3a-5ee3-4107-a444-067735a35148",
+    "service_type": "ETHERNET",
+    "sid": "GA-02267",
+    "speed": 1717986918400,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "GTS link to Server 3",
+    "scid": "4c100266-7912-4065-8227-8e6c61e156b7",
+    "service_type": null,
+    "sid": "GA-01637",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 707277,
+    "monitored": true,
+    "name": "VIE-ZAG-LAG",
+    "scid": "4c2781e7-04b0-48d2-b7ca-ef31743e0141",
+    "service_type": "ETHERNET",
+    "sid": "GA-01740",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.37"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28.4065"
+      }
+    ],
+    "imsid": 739672,
+    "monitored": true,
+    "name": "BELNET-MSER-NCCN-EXPRESSROUTE-VLAN4065",
+    "scid": "4c86107a-e6ec-4d6a-869a-19275e40aa68",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02371",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "REDIRIS"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.134/31",
+          "2001:798:99:1::61/126"
+        ],
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae16.251"
+      }
+    ],
+    "imsid": 719144,
+    "monitored": true,
+    "name": "REDIRIS-AP1",
+    "scid": "4c8a1b3a-3970-4cad-9d23-99d83384d472",
+    "service_type": "GEANT IP",
+    "sid": "GS-00498",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ge-0/3/2.991"
+      }
+    ],
+    "imsid": 707244,
+    "monitored": false,
+    "name": "DCN-MANAGEMENT-VIE-AT",
+    "scid": "4cb4410e-a671-4d9e-91a1-958d8182c762",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00379",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-99287741"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-21:1175"
+      },
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae23.25"
+      }
+    ],
+    "imsid": 745321,
+    "monitored": true,
+    "name": "GEANT_EPIPE_99287741",
+    "scid": "4ce9fda9-fe3c-4e59-b61e-7969f7612158",
+    "service_type": "ETHERNET",
+    "sid": "GS-00671",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.fra.de.geant.net",
+        "interface": "lag-5"
+      }
+    ],
+    "imsid": 739734,
+    "monitored": true,
+    "name": "FRA-GEN-1.6T-LAG",
+    "scid": "4cfe96b7-aaa1-4ead-b11d-d4b83b3513a7",
+    "service_type": "ETHERNET",
+    "sid": "GA-01961",
+    "speed": 1717986918400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SCION"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/3/3"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/3/3.2701"
+      },
+      {
+        "hostname": "rt0.tar.ee.geant.net",
+        "interface": "pwe-123050"
+      },
+      {
+        "hostname": "rt0.tar.ee.geant.net",
+        "interface": "lag-20:2701"
+      }
+    ],
+    "imsid": 746441,
+    "monitored": false,
+    "name": "PAR-TAR-SCION-EENET",
+    "scid": "4d08e5f8-3781-4c41-a0cf-3690c854ee09",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02356",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [],
+    "imsid": 727506,
+    "monitored": false,
+    "name": "BRU-LON-FED4FIRE-BELNET-JISC-14023",
+    "scid": "4d2628bc-866d-4728-98bb-849c3a3449c3",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00672",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [],
+    "imsid": 727455,
+    "monitored": false,
+    "name": "BRU-LON-IX-BELNET-BELNET-18002",
+    "scid": "4d4c7d36-caaa-460e-bee8-2844791faab1",
+    "service_type": "GEANT - GBS",
+    "sid": "GS-00788",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.7"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28.4085"
+      }
+    ],
+    "imsid": 739663,
+    "monitored": true,
+    "name": "BELNET-IMEC-EXPRESSROUTE-VLAN4085",
+    "scid": "4d511273-6029-47b2-9156-9eb8c2549a1e",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02091",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.par.fr.geant.net",
+        "interface": "ae4"
+      }
+    ],
+    "imsid": 658530,
+    "monitored": true,
+    "name": "LAG-QFX.PAR.FR_AE4",
+    "scid": "4d5b1c47-f98a-4ce7-9c19-5ee3b7da3246",
+    "service_type": "ETHERNET",
+    "sid": "GA-01717",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662967,
+    "monitored": false,
+    "name": "TAAS-CONTROL-HAMBURG",
+    "scid": "4d8bb1d6-4515-4b1e-a751-65cb06a948ae",
+    "service_type": "GTS",
+    "sid": "GS-01187",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "AMT1.FRA.DE",
+        "port": "AE1.20"
+      },
+      {
+        "addresses": [
+          "83.97.90.40/31"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae7.20"
+      }
+    ],
+    "imsid": 747180,
+    "monitored": false,
+    "name": "FRA-FRA-AMT-RELAYLINK-IAS",
+    "scid": "4d909b52-3634-4a0f-89cc-f689b2b0002c",
+    "service_type": "SERVER LINK",
+    "sid": "GS-02637",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "REDIRIS"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.127.182/31",
+          "2001:798:99:1::109/126"
+        ],
+        "hostname": "rt1.bil.es.geant.net",
+        "interface": "ae15.320"
+      }
+    ],
+    "imsid": 718229,
+    "monitored": true,
+    "name": "REDIRIS-AP2",
+    "scid": "4dd59270-a093-4653-894f-8d40ba062f34",
+    "service_type": "GEANT IP",
+    "sid": "GS-00499",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.par.fr.geant.net",
+        "interface": "ae0.0"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae30.991"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "irb.991"
+      }
+    ],
+    "imsid": 712146,
+    "monitored": false,
+    "name": "CORIANT-LIBRENMS-ACCESS-PAR-FR",
+    "scid": "4df1e811-e4a7-4847-912d-5b2fc2d95973",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00109",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BASNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "xe-1/0/0"
+      }
+    ],
+    "imsid": 669075,
+    "monitored": true,
+    "name": "BASNET-AP-LL",
+    "scid": "4df37c5f-8204-48a9-ac3e-61e22d14802a",
+    "service_type": "ETHERNET",
+    "sid": "GA-01370",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 734099,
+    "monitored": true,
+    "name": "ATH2-ATH2-IPTRUNK",
+    "scid": "4dfd1827-4094-4f4c-8f66-1d2493a73f7e",
+    "service_type": "IP TRUNK",
+    "sid": "DS-00099",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SWITCH"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-0/1/6.1304"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.1304"
+      }
+    ],
+    "imsid": 734614,
+    "monitored": true,
+    "name": "AMS-FRA-SCION-KREONET-SWITCH",
+    "scid": "4dfdd8ea-c738-401a-bbf5-c0fbe4ec7a04",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02292",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.232/31",
+          "2001:798:cc:1::a1/126"
+        ],
+        "hostname": "rt0.gen.ch.geant.net",
+        "interface": "lag-2.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.233/31",
+          "2001:798:cc:1::a2/126"
+        ],
+        "hostname": "rt0.mil2.it.geant.net",
+        "interface": "lag-2.0"
+      }
+    ],
+    "imsid": 740949,
+    "monitored": true,
+    "name": "GEN-MIL2-IPTRUNK",
+    "scid": "4e06a01f-5846-4c43-ada1-2ccab8e26253",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00039",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.33/31",
+          "2001:798:cc::4a/126"
+        ],
+        "hostname": "rt0.the.gr.geant.net",
+        "interface": "lag-4.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.32/31",
+          "2001:798:cc::49/126"
+        ],
+        "hostname": "rt0.sof.bg.geant.net",
+        "interface": "lag-4.0"
+      }
+    ],
+    "imsid": 745269,
+    "monitored": true,
+    "name": "SOF-THE-IPTRUNK",
+    "scid": "4e28d59f-ab63-47d8-a854-77e8f4cfffcf",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02424",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "COGENT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae29"
+      }
+    ],
+    "imsid": 659389,
+    "monitored": true,
+    "name": "LAG-MX1.VIE.AT_AE29",
+    "scid": "4e2e08f4-616f-48ab-9e7f-b94f5dc579fc",
+    "service_type": "ETHERNET",
+    "sid": "GA-01849",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662935,
+    "monitored": false,
+    "name": "PSMP-BUC-RO-DRAC",
+    "scid": "4e37b6ac-f019-4b4a-b20e-974cd70b64a5",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00363",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GOOGLE"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "173.194.120.187/31",
+          "2001:4860:1:1::24f3/127"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae11.0"
+      }
+    ],
+    "imsid": 734909,
+    "monitored": true,
+    "name": "NL-GOOGLE-2-15169",
+    "scid": "4e3e39df-9882-4b0c-abf1-27a14e6c9c76",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-00938",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658754,
+    "monitored": true,
+    "name": "BRATISLAVA-BRATISLAVA-1GBE-003(ETH)",
+    "scid": "4e54514a-1813-4a57-99ff-974f2abaa36d",
+    "service_type": "ETHERNET",
+    "sid": "GA-01304",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.fra.de.geant.net",
+        "interface": "ae0.0"
+      },
+      {
+        "addresses": [
+          "10.254.254.2/29"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "irb.3004"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae30.3004"
+      }
+    ],
+    "imsid": 733012,
+    "monitored": false,
+    "name": "TAAS-CONTROL-FRANKFURT-VRF-VLAN3004",
+    "scid": "4e5cd641-e4f6-4df7-be17-a8c43eb06876",
+    "service_type": "L3-VPN",
+    "sid": "GS-00862",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "WACREN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.233/30",
+          "2001:798:99:1::b1/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae22.100"
+      }
+    ],
+    "imsid": 661300,
+    "monitored": true,
+    "name": "UK-WACREN",
+    "scid": "4e849a9b-4a32-4c0c-b98b-b62354329bad",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00910",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661645,
+    "monitored": false,
+    "name": "OWAMP-MIL2-IT",
+    "scid": "4e93e676-f373-4d4f-a036-bb087af7da40",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00266",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ORANGE"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.90.10/31",
+          "2001:798:1::229/126"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae31.0"
+      }
+    ],
+    "imsid": 718722,
+    "monitored": true,
+    "name": "FR-ORANGE-2280-2",
+    "scid": "4eadbe20-6069-4885-a3ee-14e630f00e46",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-01179",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NEA3R"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-2/0/5.500"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae26.500"
+      }
+    ],
+    "imsid": 718304,
+    "monitored": true,
+    "name": "LON-LON-NEA3R-SURF-22015",
+    "scid": "4eb79c4e-640a-4266-a90f-3e52d72bf8d5",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00707",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SURF"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.100.34/31",
+          "2001:798::3d/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae11.667"
+      }
+    ],
+    "imsid": 661280,
+    "monitored": false,
+    "name": "SURFNET-AP2-CLS",
+    "scid": "4ed0e03f-9d07-42ee-b979-8adddc3713e9",
+    "service_type": "GEANT CLOUD PEERING",
+    "sid": "GS-00623",
+    "speed": 53687091200,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CYNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.49/30",
+          "2001:798:1::35/126"
+        ],
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "lag-21.333"
+      }
+    ],
+    "imsid": 745495,
+    "monitored": true,
+    "name": "CYNET-AP2-IAS",
+    "scid": "4ee20c3c-69b9-488a-8459-ec69800600eb",
+    "service_type": "GWS - INDIRECT",
+    "sid": "GS-00525",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662911,
+    "monitored": false,
+    "name": "GEN-GROOVE-2-MANAGEMENT",
+    "scid": "4eed7482-07ab-4ec7-aaea-5fb7c13132b1",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00184",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 728949,
+    "monitored": true,
+    "name": "TAR-TAR-LAG",
+    "scid": "4ef190f0-ebc2-46c6-8a43-418fde2ed294",
+    "service_type": "ETHERNET",
+    "sid": "GA-02353",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "172.18.6.1/24"
+        ],
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae3.103"
+      }
+    ],
+    "imsid": 702127,
+    "monitored": false,
+    "name": "DCN-MANAGEMENT-MAD-ES",
+    "scid": "4f096f84-b7f1-49be-bf85-cc5b4f6f03a2",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00121",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662241,
+    "monitored": true,
+    "name": "FRANKFURT-FRANKFURT-1GBE-019(ETH)",
+    "scid": "4f865222-f76e-4b5a-908c-c89ab0b0450c",
+    "service_type": "ETHERNET",
+    "sid": "GA-01606",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ORACLE"
+    ],
+    "endpoints": [],
+    "imsid": 719502,
+    "monitored": true,
+    "name": "FRA-MAD-ORACLE-REDIRIS-22009-VL414",
+    "scid": "4f8872aa-5de1-4686-94ce-9fc5ba4121f2",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02095",
+    "speed": 225485783040,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.38/31",
+          "2001:798:cc::61/126"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae5.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.39/31",
+          "2001:798:cc::62/126"
+        ],
+        "hostname": "rt0.ams.nl.geant.net",
+        "interface": "lag-5.0"
+      }
+    ],
+    "imsid": 735616,
+    "monitored": true,
+    "name": "AMS-AMS-IPTRUNK",
+    "scid": "4f9a5909-fbfa-465c-b264-f8101f82774d",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02458",
+    "speed": 858993459200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708221,
+    "monitored": false,
+    "name": "PS-PAR-FR-OWAMP",
+    "scid": "4fa11497-1bff-491d-9f27-c7256dc101e5",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00342",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663063,
+    "monitored": false,
+    "name": "AMS-GROOVE-2",
+    "scid": "4fba9d4f-58bf-4578-86a5-4b5a0f8ef6c7",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00093",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CERN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae21.120"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae15.120"
+      }
+    ],
+    "imsid": 713981,
+    "monitored": true,
+    "name": "GEN-PAR-CERN-REDCLARA-21072",
+    "scid": "4fbc30c8-9bfe-48c8-8896-8b4969b70625",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00716",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.AM.OFFICE",
+        "port": "GE-0/0/2"
+      }
+    ],
+    "imsid": 658590,
+    "monitored": true,
+    "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-023(ETH)",
+    "scid": "4ff377c1-bf3c-4cc0-9d46-0f2ae9bb495f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01259",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ge-0/2/2"
+      }
+    ],
+    "imsid": 727547,
+    "monitored": true,
+    "name": "POZNAN 1-POZNAN 1-1GBE-003(GEANT)",
+    "scid": "5007a914-9a24-422b-82f9-be34fd91738c",
+    "service_type": "ETHERNET",
+    "sid": "GA-01376",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708989,
+    "monitored": false,
+    "name": "EUMETSAT-GRE-CMA",
+    "scid": "500d1dac-0903-4092-8dac-d744afa98945",
+    "service_type": "EUMETSAT GRE",
+    "sid": "GS-01073",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "ams-poz_EXPReS_NetherLight-PIONIER_07001",
+    "scid": "5031cdcf-2895-4508-b707-a5fc4512aa56",
+    "service_type": null,
+    "sid": "DS-28664",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 660558,
+    "monitored": false,
+    "name": "JRA1-SDX-L2-PILOT-VLAN1002",
+    "scid": "5038a9e2-47c6-4dea-8457-dfbcb82265d0",
+    "service_type": "L3-VPN",
+    "sid": "GS-00799",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "TEIN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "202.179.249.34/30",
+          "2001:254:8001:9::2/64"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae12.3202"
+      }
+    ],
+    "imsid": 661949,
+    "monitored": true,
+    "name": "UK-TEIN",
+    "scid": "503f0386-24c9-465d-91b2-dd1ca7172654",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00924",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.pra.cz.geant.net",
+        "interface": "lag-6"
+      }
+    ],
+    "imsid": 740464,
+    "monitored": true,
+    "name": "FRA-PRA-LAG",
+    "scid": "5044ca4d-2dec-4fd5-9b9f-cc444b18ee6d",
+    "service_type": "ETHERNET",
+    "sid": "GA-01827",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663233,
+    "monitored": false,
+    "name": "OPERATIONS-AMS-NL-VLAN550",
+    "scid": "50533c53-b11b-4b57-8c81-dd6b552db7a5",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00263",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.par.fr.geant.net",
+        "interface": "ae0.0"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae30.3000"
+      }
+    ],
+    "imsid": 712149,
+    "monitored": true,
+    "name": "VM-DATANETWORK-PAR",
+    "scid": "507645af-9c34-4ff2-8e2e-2b971bb50387",
+    "service_type": "POP LAN LINK",
+    "sid": "GS-00085",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "TENET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae26.420"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae28.420"
+      }
+    ],
+    "imsid": 718087,
+    "monitored": true,
+    "name": "LON-LON-GEANTOPEN-NEA3R-TENET-18097",
+    "scid": "5091f195-6143-4b73-8651-6814fb42f77d",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00971",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "ham_par-SCION-GTS_20055",
+    "scid": "50b1ed0a-649f-41ad-96fb-e6e5df9e2f5e",
+    "service_type": null,
+    "sid": "DS-51662",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SINGAREN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.90.25/30",
+          "2001:798:1::251/126"
+        ],
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/2/5.333"
+      }
+    ],
+    "imsid": 729063,
+    "monitored": true,
+    "name": "SINGAREN-IAS",
+    "scid": "50bf3f31-b635-4399-9b10-617b60f4995b",
+    "service_type": "GWS - INDIRECT",
+    "sid": "GS-02359",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "REDIRIS"
+    ],
+    "endpoints": [],
+    "imsid": 719548,
+    "monitored": false,
+    "name": "BRU-MAD-FED4FIRE-BELNET-REDIRIS-14010",
+    "scid": "50c86dde-3200-4767-8dd4-2479f265f3ed",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00674",
+    "speed": 332859965440,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.AM.OFFICE",
+        "port": "GE-0/0/0"
+      }
+    ],
+    "imsid": 658559,
+    "monitored": true,
+    "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-020(ETH)",
+    "scid": "513410e5-0608-4d13-a8ac-c7dff1c36227",
+    "service_type": "ETHERNET",
+    "sid": "GA-01260",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "TS1.DUB.IE.GEANT.NET(OPENGEAR)",
+        "port": "NET1"
+      }
+    ],
+    "imsid": 677584,
+    "monitored": false,
+    "name": "DUB OOB LINK",
+    "scid": "51a3bab9-9947-4470-be17-587a980fe1c0",
+    "service_type": "OOB IP LINK",
+    "sid": "GS-00397",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 713233,
+    "monitored": true,
+    "name": "BUC-CHI-IPTRUNK-40G",
+    "scid": "51c2ef33-a40b-40c2-bbd3-49c59e56cc83",
+    "service_type": "IP TRUNK",
+    "sid": "GS-90022",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662323,
+    "monitored": true,
+    "name": "FRANKFURT-FRANKFURT-10GBE-064(GEANT)",
+    "scid": "51ce3e9a-e135-47d3-93db-21ffc871cce2",
+    "service_type": "ETHERNET",
+    "sid": "GA-01601",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "HBKU"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/3/5"
+      }
+    ],
+    "imsid": 669635,
+    "monitored": true,
+    "name": "HBKU COLT",
+    "scid": "51de3c06-8d66-452e-a07c-d224108099bb",
+    "service_type": "ETHERNET",
+    "sid": "GA-01398",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "185.6.36.108/23",
+          "2001:7f8:18::108/64"
+        ],
+        "hostname": "rt0.dub.ie.geant.net",
+        "interface": "lag-21.0"
+      }
+    ],
+    "imsid": 747291,
+    "monitored": false,
+    "name": "IX-PEERINGS-IN-INEX",
+    "scid": "51e0759a-e87b-48de-8287-5102cc44715c",
+    "service_type": "IP PEERING - NON R&E (PUBLIC)",
+    "sid": "GS-00950",
+    "speed": 0,
+    "status": "planned"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.205/30"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae12.111"
+      }
+    ],
+    "imsid": 660442,
+    "monitored": false,
+    "name": "RENATER-AP1-IPV4-LHCONE",
+    "scid": "520484d0-2bdb-4c3b-a340-cc4dbd0f2e24",
+    "service_type": "L3-VPN",
+    "sid": "GS-00853",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "WP6T3"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-1/2/7"
+      },
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/0/5"
+      },
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-1/2/7.10"
+      },
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/0/5.10"
+      }
+    ],
+    "imsid": 715032,
+    "monitored": false,
+    "name": "LON2-LON2-WP7T2SF-BMS7-JRA2T4-21089",
+    "scid": "520b4d86-effe-4f0a-b203-37e8480b2da2",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00739",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RARE"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PF1-RARE.AMS.NL.GEANT.NET",
+        "port": "XE-2"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-11/0/0.102"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "xe-9/0/3.102"
+      }
+    ],
+    "imsid": 736095,
+    "monitored": false,
+    "name": "AMS-PAR-RARE-RARE-21101",
+    "scid": "5281120d-30be-46aa-8e16-facecba8d7d0",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00656",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661519,
+    "monitored": false,
+    "name": "ETHS-MX1.POZ.PL_GE-0/2/0.24",
+    "scid": "529bd1e9-6c63-4a3b-bf29-55d5f7d0e19e",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00345",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "GEN01-GRV4",
+        "port": "1/1/5"
+      },
+      {
+        "equipment": "AMS01-GRV2",
+        "port": "1/2/3"
+      }
+    ],
+    "imsid": 739638,
+    "monitored": true,
+    "name": "AMS-GEN1-SURF-24056-1",
+    "scid": "52a9b40e-0864-476a-b0e4-8535dca9e441",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-02533",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "REDIRIS"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.90.20/31",
+          "2001:798:1::241/126"
+        ],
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae16.252"
+      }
+    ],
+    "imsid": 719126,
+    "monitored": true,
+    "name": "REDIRIS-AP1-IAS",
+    "scid": "52cbff63-5e9e-449c-a1ed-c949a411e48d",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00581",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SWITCH"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/3/3.1305"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae12.1305"
+      }
+    ],
+    "imsid": 727330,
+    "monitored": false,
+    "name": "LON-PAR-SCION-KREONET-SWITCH",
+    "scid": "52d3dbd0-d095-49a3-b422-f3644a8c4edb",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02293",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GOOGLE"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "72.14.209.139/31",
+          "2001:4860:1:1::30d7/127"
+        ],
+        "hostname": "rt1.mil2.it.geant.net",
+        "interface": "ae12.0"
+      }
+    ],
+    "imsid": 708198,
+    "monitored": true,
+    "name": "GOOGLE-15169-IT",
+    "scid": "52e664c9-4551-4854-9da3-3c0f1309b148",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-00935",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-1/0/2"
+      }
+    ],
+    "imsid": 658497,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-025(ETH)",
+    "scid": "52e9f1a8-1a5c-46eb-a60b-48812e9be2e0",
+    "service_type": "ETHERNET",
+    "sid": "GA-01226",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-0/0/19"
+      }
+    ],
+    "imsid": 658555,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-029(ETH)",
+    "scid": "52eacb7a-60b9-4203-97bf-677e4cc06f0d",
+    "service_type": "ETHERNET",
+    "sid": "GA-01221",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "T-SYSTEMS"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "80.158.74.251/31"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae27.4002"
+      }
+    ],
+    "imsid": 734872,
+    "monitored": true,
+    "name": "NL-T-SYSTEMS-R&E",
+    "scid": "52f9003c-1b2c-4db7-99f4-124cde623974",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-02329",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 659039,
+    "monitored": true,
+    "name": "PRAGUE-PRAGUE-10GBE-014(ETH)",
+    "scid": "530d9310-a744-4d1e-b8ee-d33e81c1a267",
+    "service_type": "ETHERNET",
+    "sid": "GA-01418",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.gen.ch.geant.net",
+        "interface": "lag-4"
+      }
+    ],
+    "imsid": 739735,
+    "monitored": true,
+    "name": "GEN-MAR-LAG",
+    "scid": "5318fb3e-a100-47d2-9bcc-62cd76321c12",
+    "service_type": "ETHERNET",
+    "sid": "GA-01878",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "FACEBOOK"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "et-2/0/1"
+      }
+    ],
+    "imsid": 731651,
+    "monitored": true,
+    "name": "FACEBOOK-FRA-100G-LL1",
+    "scid": "531c2a7c-d566-41ae-b14e-078b0d1c1af6",
+    "service_type": "ETHERNET",
+    "sid": "GA-20365",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 707223,
+    "monitored": false,
+    "name": "DCN-MANAGEMENT-GEN-CH",
+    "scid": "53230070-f34d-45e1-9df1-ce1f11ad01b0",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00180",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GRENA"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.64/31",
+          "2001:798:1::18d/126"
+        ],
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae20.333"
+      }
+    ],
+    "imsid": 747643,
+    "monitored": false,
+    "name": "GRENA-AP1-IAS",
+    "scid": "534d1155-56fa-41a4-b767-e68448cb4970",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-02653",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "ae14"
+      }
+    ],
+    "imsid": 658686,
+    "monitored": false,
+    "name": "LON2-SEC-ESX20-VM-TRAFFIC",
+    "scid": "53699a26-68e3-4d8f-9c7a-d7349b0e8ee0",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01702",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 732505,
+    "monitored": true,
+    "name": "FRANKFURT-FRANKFURT-1GBE-006(GEANT)",
+    "scid": "5376e6c9-50d5-438c-951e-f61473ca4f40",
+    "service_type": "ETHERNET",
+    "sid": "GA-01624",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CESNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.41/30",
+          "2001:798:1::2d/126"
+        ],
+        "hostname": "rt1.pra.cz.geant.net",
+        "interface": "ae11.333"
+      }
+    ],
+    "imsid": 661262,
+    "monitored": true,
+    "name": "CESNET-AP1-IAS",
+    "scid": "5396cbf4-49c3-4f23-aaec-d2f808b22073",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00563",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CERN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.217/30",
+          "2001:798:111:1::11/126"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae10.111"
+      }
+    ],
+    "imsid": 663086,
+    "monitored": true,
+    "name": "CERN-GEN-LHCONE",
+    "scid": "539a5eb6-04b1-4e04-b3e2-399d0c33f858",
+    "service_type": "L3-VPN",
+    "sid": "GS-00811",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae18"
+      }
+    ],
+    "imsid": 662508,
+    "monitored": true,
+    "name": "BIX-HU-LAG",
+    "scid": "539fe189-90a4-437f-b047-c76e05d2b736",
+    "service_type": "ETHERNET",
+    "sid": "GA-01900",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [],
+    "imsid": 712392,
+    "monitored": false,
+    "name": "MD-VPN-VRR-PARIS-FUNET-2-FI",
+    "scid": "53a1394d-b82c-4a40-b674-585a27c70c94",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01041",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CARNET"
+    ],
+    "endpoints": [],
+    "imsid": 712402,
+    "monitored": false,
+    "name": "MD-VPN-VRR-PARIS-CARNET-HR",
+    "scid": "53aa0545-9890-495d-8db1-e06a908ad5b1",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01035",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.lon2.uk.geant.net",
+        "interface": "lag-8"
+      }
+    ],
+    "imsid": 739434,
+    "monitored": true,
+    "name": "LON2-PAR-1.6T-LAG",
+    "scid": "53fb0ca0-c2ca-40e4-a429-215cc613ee75",
+    "service_type": "ETHERNET",
+    "sid": "GA-01762",
+    "speed": 1717986918400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658794,
+    "monitored": true,
+    "name": "FR-ORANGE-LL #1",
+    "scid": "545cc131-62bf-4f96-8ba3-45cd3b53bc52",
+    "service_type": "ETHERNET",
+    "sid": "GA-01386",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.bil.es.geant.net",
+        "interface": "ae15.3532"
+      },
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ae11.3532"
+      }
+    ],
+    "imsid": 745529,
+    "monitored": false,
+    "name": "RARE-02644",
+    "scid": "5481f2bb-0ac6-46e7-8c6a-38ce8730ab3a",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02644",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "MICROSOFT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.35"
+      },
+      {
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-21:3918"
+      }
+    ],
+    "imsid": 747549,
+    "monitored": true,
+    "name": "AMS-HAM-MSE-02328",
+    "scid": "5496fbf5-74d0-497c-af42-3b79d94646e1",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02328",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662239,
+    "monitored": true,
+    "name": "FRANKFURT-FRANKFURT-1GBE-018(ETH)",
+    "scid": "54cacdf7-0fff-40f6-afd4-6773450bdfd6",
+    "service_type": "ETHERNET",
+    "sid": "GA-01620",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae31"
+      }
+    ],
+    "imsid": 718721,
+    "monitored": true,
+    "name": "FR-ORANGE-LAG-4",
+    "scid": "54d55066-809b-44a9-901d-0b4a96a9b5ab",
+    "service_type": "ETHERNET",
+    "sid": "GA-02145",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "AMT1.AMS.NL",
+        "port": "AE1"
+      }
+    ],
+    "imsid": 744346,
+    "monitored": true,
+    "name": "AMS-AMT-LAG",
+    "scid": "54d6fea1-1060-4215-bbd3-20febb41317d",
+    "service_type": "ETHERNET",
+    "sid": "GA-02299",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "KAUST"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.3610"
+      }
+    ],
+    "imsid": 734575,
+    "monitored": true,
+    "name": "NL-KAUST",
+    "scid": "54e08b7d-2f8b-4d2d-8427-b535a98c7b92",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00895",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662401,
+    "monitored": true,
+    "name": "AMSTERDAM-AMSTERDAM-10GBE-032(GEANT)",
+    "scid": "54eed323-fbbb-4b12-95e5-68dfd228ec8c",
+    "service_type": "ETHERNET",
+    "sid": "GA-01574",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NETHERLIGHT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-2/0/5.2779"
+      }
+    ],
+    "imsid": 707103,
+    "monitored": true,
+    "name": "LON-LON-GEANTOPEN-NETHERLIGHT-WIX",
+    "scid": "55093fa1-130d-4b34-831b-40bc17204434",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00973",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "xe-5/2/2"
+      }
+    ],
+    "imsid": 739293,
+    "monitored": true,
+    "name": "BUDAPEST-BUDAPEST-10GBE-004(GEANT)",
+    "scid": "5513e63a-8be0-4e31-9e4f-f166d8ba8537",
+    "service_type": "ETHERNET",
+    "sid": "GA-01567",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "Nordunet_OULU_ExpressRoute_Vlan3904",
+    "scid": "5540e589-fdde-4ecf-b345-78793c2681cd",
+    "service_type": null,
+    "sid": "DS-52713",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "LITNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.105/30",
+          "2001:798:1f:10aa::5/126"
+        ],
+        "hostname": "rt0.kau.lt.geant.net",
+        "interface": "lag-21.100"
+      }
+    ],
+    "imsid": 746528,
+    "monitored": true,
+    "name": "LITNET-AP1",
+    "scid": "554ef71b-a308-4289-9af0-6d54623c6333",
+    "service_type": "GEANT IP",
+    "sid": "GS-00486",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GARR"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae12.4087"
+      },
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.23"
+      }
+    ],
+    "imsid": 707644,
+    "monitored": true,
+    "name": "GARR-UDMILANO-EXPRESSROUTE-VLAN4087",
+    "scid": "557054e0-25c8-4caf-9530-696d09fece29",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01146",
+    "speed": 332859965440,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SURFNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-10/3/0"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-9/1/5"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae19"
+      }
+    ],
+    "imsid": 732097,
+    "monitored": true,
+    "name": "SURF-AP2-LL2",
+    "scid": "5579c1d1-c3eb-477a-a678-19fccb513243",
+    "service_type": "ETHERNET",
+    "sid": "GA-01477",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661170,
+    "monitored": false,
+    "name": "LON2-GROOVE-2-MANAGEMENT",
+    "scid": "557d8ee7-6305-4782-b621-2d627e591fdc",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00241",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SWITCH"
+    ],
+    "endpoints": [],
+    "imsid": 705424,
+    "monitored": false,
+    "name": "GEN-PAR-SYNGENTA-SWITCH-INTERNET2-17045",
+    "scid": "557e4343-5450-47c8-b9b1-87636e915738",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00715",
+    "speed": 536870912000,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.188/31",
+          "2001:798:cc:1::e5/126"
+        ],
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae5.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.189/31",
+          "2001:798:cc:1::e6/126"
+        ],
+        "hostname": "rt0.zag.hr.geant.net",
+        "interface": "lag-3.0"
+      }
+    ],
+    "imsid": 747898,
+    "monitored": true,
+    "name": "BUD-ZAG-IPTRUNK",
+    "scid": "5595358e-dce2-421d-ab8a-f8d6971a278e",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00027",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 726336,
+    "monitored": true,
+    "name": "BUD-UTIC-LAG",
+    "scid": "55a0af3e-1a6f-48a6-b279-59e84a2f2cfe",
+    "service_type": "ETHERNET",
+    "sid": "GA-02231",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.poz.pl.geant.net",
+        "interface": "lag-4"
+      }
+    ],
+    "imsid": 740146,
+    "monitored": true,
+    "name": "HAM-POZ-LAG",
+    "scid": "55aa8fb7-4351-4f70-a2bd-940b1623b4d5",
+    "service_type": "ETHERNET",
+    "sid": "GA-02341",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW2.PRA.CZ",
+        "port": "AE2"
+      }
+    ],
+    "imsid": 725149,
+    "monitored": true,
+    "name": "PRAGUE 2-PRAGUE 2-LAG-001(GEANT)",
+    "scid": "55ba74b7-3257-490b-ad7c-65fdfc827376",
+    "service_type": "ETHERNET",
+    "sid": "GA-02064",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "GRNET"
+    ],
+    "endpoints": [],
+    "imsid": 709754,
+    "monitored": true,
+    "name": "GRNET EUMETCAST AP1",
+    "scid": "55bc45e1-6f48-4f4b-aef2-5b712e9be889",
+    "service_type": "EUMETSAT TERRESTRIAL",
+    "sid": "GS-01107",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/2/3"
+      }
+    ],
+    "imsid": 678558,
+    "monitored": true,
+    "name": "LONDON-LONDON-10GBE-005(GEANT)",
+    "scid": "55c59749-330b-481d-aa7f-b53563370e76",
+    "service_type": "ETHERNET",
+    "sid": "GA-01657",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661926,
+    "monitored": false,
+    "name": "OWAMP-POZ-PL",
+    "scid": "5605c2f7-2106-4195-8620-c52aaf4449c2",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00268",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "TS1.LIS.PT.GEANT.NET(OPENGEAR)",
+        "port": "NET1"
+      }
+    ],
+    "imsid": 677667,
+    "monitored": false,
+    "name": "LIS OOB LINK",
+    "scid": "56778e0f-9738-489d-aaea-830ecea74433",
+    "service_type": "OOB IP LINK",
+    "sid": "GS-00403",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CERN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae17"
+      }
+    ],
+    "imsid": 662503,
+    "monitored": true,
+    "name": "CERN-AP1-LAG",
+    "scid": "567aaef5-21ee-4aa4-a5c3-6d3d9ebc54a1",
+    "service_type": "ETHERNET",
+    "sid": "GA-01882",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CERN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae10"
+      }
+    ],
+    "imsid": 662468,
+    "monitored": true,
+    "name": "CERN-LHCONE-LAG#2",
+    "scid": "5694963d-3223-4280-b235-04d3d6157fee",
+    "service_type": "ETHERNET",
+    "sid": "GA-01885",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "AMRES"
+    ],
+    "endpoints": [],
+    "imsid": 712352,
+    "monitored": true,
+    "name": "MD-VPN-VRR-LJUBLJANA-AMRES-RS",
+    "scid": "56e16d98-13bb-4667-85a1-1c3a457ef36a",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01011",
+    "speed": 32212254720,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.bil.es.geant.net",
+        "interface": "ae6"
+      }
+    ],
+    "imsid": 719610,
+    "monitored": true,
+    "name": "BIL-MAD-LAG",
+    "scid": "57098cef-f809-4f64-8ac1-e65c2e4275d3",
+    "service_type": "ETHERNET",
+    "sid": "GA-02144",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.bil.es.geant.net",
+        "interface": "ae4"
+      }
+    ],
+    "imsid": 739463,
+    "monitored": true,
+    "name": "BIL-PAR-LAG",
+    "scid": "572a5a34-00d5-473f-8b8b-8ebb9204b63e",
+    "service_type": "ETHERNET",
+    "sid": "GA-02087",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "INTERNET2"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-2/0/5.906"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/2/3"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/2/3.906"
+      }
+    ],
+    "imsid": 661593,
+    "monitored": false,
+    "name": "LON-LON-MISC-GEANT-INTERNET2-9940197",
+    "scid": "572fb3c8-7022-42c3-8382-7fd9b0eb3a2d",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00726",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661576,
+    "monitored": false,
+    "name": "DANTE-TECHNICAL-CUSTOMER-SUPPORT",
+    "scid": "57891c76-8dc8-427e-9e3e-c452268ee3ea",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00111",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae24"
+      }
+    ],
+    "imsid": 731896,
+    "monitored": true,
+    "name": "DE-EXOSCALE-IAS-LAG",
+    "scid": "578d3bd6-6fc9-4ef7-a7f4-9b83e6af06d0",
+    "service_type": "ETHERNET",
+    "sid": "GA-01948",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "INTERNET2"
+    ],
+    "endpoints": [],
+    "imsid": 718086,
+    "monitored": true,
+    "name": "LON-LON-GEANTOPEN-INTERNET2-TENET-19004",
+    "scid": "579292fb-f890-4b98-b51d-0288e1804645",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00943",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "FCCN_IPP_ExpressRoute_Vlan1942",
+    "scid": "57d08b05-de28-49c2-ae28-714f39717ef7",
+    "service_type": null,
+    "sid": "DS-51564",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae1"
+      }
+    ],
+    "imsid": 746144,
+    "monitored": true,
+    "name": "MAR-MIL2-LAG",
+    "scid": "57dd753d-b3c2-4d80-8b18-7ca96e791ea5",
+    "service_type": "ETHERNET",
+    "sid": "GA-02164",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "PRO-M/NIIF"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae10"
+      }
+    ],
+    "imsid": 662452,
+    "monitored": true,
+    "name": "KIFU-AP1-LAG",
+    "scid": "57e18d43-682b-4b63-b1b8-6fcf0ad7375e",
+    "service_type": "ETHERNET",
+    "sid": "GA-01905",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-11/2/0"
+      }
+    ],
+    "imsid": 659244,
+    "monitored": true,
+    "name": "PARIS-DTN-10G-1",
+    "scid": "57e4c151-bcdb-4210-b81e-1f6af1f16346",
+    "service_type": "ETHERNET",
+    "sid": "GA-01377",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 735202,
+    "monitored": true,
+    "name": "THESSALONIKI-THESSALONIKI-LAG-004(GEANT)",
+    "scid": "580129d9-fe5f-4d38-a8cc-a2d6caf115db",
+    "service_type": "ETHERNET",
+    "sid": "DA-01794",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663033,
+    "monitored": false,
+    "name": "PS-AMS-NL-IDRAC2",
+    "scid": "581e6eab-dfa1-4708-99a6-ddf28ed571aa",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00286",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.AM.OFFICE",
+        "port": "GE-1/0/46"
+      }
+    ],
+    "imsid": 658393,
+    "monitored": true,
+    "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-009(ETH)",
+    "scid": "582c0e78-f59d-49fe-8a86-a0674b41670f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01271",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 738104,
+    "monitored": true,
+    "name": "ZAGREB 1-ZAGREB 1-10GBE-006(GEANT)",
+    "scid": "58399ae4-e83f-44c9-8fa2-6ebc9ab27620",
+    "service_type": "ETHERNET",
+    "sid": "GA-02099",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-1/2/2.12"
+      }
+    ],
+    "imsid": 661358,
+    "monitored": false,
+    "name": "CORSA-MANAGEMENT-LON2-UK",
+    "scid": "585f1c2d-1ae1-47e0-b8de-b1d3c2a2e137",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00110",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.sof.bg.geant.net",
+        "interface": "lag-3"
+      }
+    ],
+    "imsid": 747866,
+    "monitored": true,
+    "name": "SOF-ZAG-LAG",
+    "scid": "58b2496b-451c-4c75-b574-06bd08b4b328",
+    "service_type": "ETHERNET",
+    "sid": "GA-02368",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/0/4"
+      }
+    ],
+    "imsid": 669239,
+    "monitored": true,
+    "name": "UK-PS-LHCONE-MGMT",
+    "scid": "58d81517-ef85-4ab2-90bd-b954de0d97be",
+    "service_type": "ETHERNET",
+    "sid": "GA-01462",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.dub.ie.geant.net",
+        "interface": "lag-1"
+      }
+    ],
+    "imsid": 747277,
+    "monitored": true,
+    "name": "DUB-LON-LAG",
+    "scid": "58d9da77-a2be-4a06-934a-41eabbc43e70",
+    "service_type": "ETHERNET",
+    "sid": "GA-02008",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.109.198/31"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "gr-3/0/0.14"
+      }
+    ],
+    "imsid": 732677,
+    "monitored": false,
+    "name": "GRE-MULTICAST-TUNNEL-JPL",
+    "scid": "58f59360-f10e-4eda-99e7-d0b494af1edd",
+    "service_type": "EUMETSAT GRE",
+    "sid": "GS-01081",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "KIAE"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae16"
+      }
+    ],
+    "imsid": 734243,
+    "monitored": true,
+    "name": "NL-KIAE-LAG",
+    "scid": "59014dbf-426d-42d9-a0ac-7ab6ea953a4e",
+    "service_type": "ETHERNET",
+    "sid": "GA-01918",
+    "speed": 32212254720,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663191,
+    "monitored": false,
+    "name": "MDVPN-SECURITYTOOL-DUB-IE-VLAN210",
+    "scid": "59206bdf-206e-4796-9ac9-135f7576487a",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00246",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661562,
+    "monitored": false,
+    "name": "DASHBOARD-SERVER-LON2-VLAN50_",
+    "scid": "594d9fdb-4d30-4811-b918-5137227ff361",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00112",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.20"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-240583"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20:4090"
+      }
+    ],
+    "imsid": 744265,
+    "monitored": true,
+    "name": "MSEARTEV-01131",
+    "scid": "5953760f-6295-48a3-bcd7-56f80409092f",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01131",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708715,
+    "monitored": true,
+    "name": "RIG-RIG-IPTRUNK",
+    "scid": "598594e6-9a37-4a4a-9c46-9c3b40d3b2aa",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00060",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-1/0/25"
+      }
+    ],
+    "imsid": 658455,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-010(ETH)",
+    "scid": "599f00dd-75e0-4cc4-83b2-1bb00d3dbb7d",
+    "service_type": "ETHERNET",
+    "sid": "GA-01217",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CERN"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PF1-RARE.AMS.NL.GEANT.NET",
+        "port": "XE-2"
+      },
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "xe-2/0/0.472"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "xe-9/0/3.472"
+      }
+    ],
+    "imsid": 736071,
+    "monitored": false,
+    "name": "AMS-GEN-CERN-RARE-123010",
+    "scid": "59a82de1-15d8-4387-b3f6-db0bfb3d9828",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02262",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "ae30"
+      }
+    ],
+    "imsid": 721403,
+    "monitored": true,
+    "name": "LONDON 2-LONDON 2-LAG-002(GEANT)",
+    "scid": "59a93e23-ce24-406a-b7f0-0ea2a7562855",
+    "service_type": "ETHERNET",
+    "sid": "GA-01709",
+    "speed": 0,
+    "status": "terminated"
+  },
+  {
+    "customers": [
+      "AMS-IX"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae12"
+      }
+    ],
+    "imsid": 734926,
+    "monitored": true,
+    "name": "NL-AMS-IX-LAG",
+    "scid": "59b7c90f-2d1e-4776-97f9-6de08e1dbcb2",
+    "service_type": "ETHERNET",
+    "sid": "GA-01920",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae12.1390"
+      },
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae23.1390"
+      }
+    ],
+    "imsid": 714179,
+    "monitored": false,
+    "name": "GEN-PAR-SCION-RENATER-SWITCH-20026",
+    "scid": "59c46342-d5fb-4bc3-a884-924d9223c782",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00717",
+    "speed": 751619276800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 745430,
+    "monitored": false,
+    "name": "ATH2-ATH2-IPTRUNK",
+    "scid": "59f5c567-09a2-4854-8f7a-eb2aa5756262",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00013",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CYNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "lag-23"
+      }
+    ],
+    "imsid": 745468,
+    "monitored": true,
+    "name": "GRIX-LAG",
+    "scid": "5a04dbf3-80f0-4e14-b805-c887c47927a1",
+    "service_type": "ETHERNET",
+    "sid": "GA-01640",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.fra.de.geant.net",
+        "interface": "ae9"
+      }
+    ],
+    "imsid": 658532,
+    "monitored": false,
+    "name": "FRANKFURT 15-FRANKFURT 15-LAG-064(GEANT)",
+    "scid": "5a0f322f-7364-4428-9c28-dbfae037ee51",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01681",
+    "speed": 32212254720,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.fra.de.geant.net",
+        "interface": "ae0.0"
+      },
+      {
+        "addresses": [
+          "62.40.108.129/27",
+          "2001:798:ee:18::1/64"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae30.2001"
+      }
+    ],
+    "imsid": 733918,
+    "monitored": false,
+    "name": "ESXI-MANAGEMENT-FRA",
+    "scid": "5a17e036-61de-441e-b241-9d1ec074cf86",
+    "service_type": "POP LAN LINK",
+    "sid": "GS-00073",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "BUD-SOF TRUNK",
+    "scid": "5a2ad8ee-9b9a-4639-b149-f5ed13730427",
+    "service_type": null,
+    "sid": "DS-12661",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CYNET"
+    ],
+    "endpoints": [],
+    "imsid": 708701,
+    "monitored": false,
+    "name": "CYNET-GN-PRACE-VPN-PROXY-FRANKFURT-L3VPN",
+    "scid": "5a32a28e-f6e1-4805-b33c-729a9aba0007",
+    "service_type": "MD-VPN (PROXY)",
+    "sid": "GS-01063",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708246,
+    "monitored": false,
+    "name": "PS-AMS-NL-OWAMP",
+    "scid": "5a3635d2-7492-4264-82f3-0701288caced",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00289",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "equipment": "GEN02-GRV-2",
+        "port": "1/1/8"
+      }
+    ],
+    "imsid": 739944,
+    "monitored": true,
+    "name": "GEN2-LON1-ESNET-24015-2-400G",
+    "scid": "5a4a5fc1-b015-4977-a704-1c508c63265e",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-02453",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CERN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-2/0/5.2126"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae19.2126"
+      }
+    ],
+    "imsid": 736734,
+    "monitored": true,
+    "name": "LON-PAR-CANARIE-CERN-15014",
+    "scid": "5a743cd3-fb7d-4ea1-9099-bd83a4897a2f",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00720",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "HEANET"
+    ],
+    "endpoints": [],
+    "imsid": 732235,
+    "monitored": true,
+    "name": "HEANET-BGP-LU-COC-AP2",
+    "scid": "5a774eb9-3577-48dd-b73f-ebe5a14d3a2e",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01009",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.106/31",
+          "2001:798:cc:1::b9/126"
+        ],
+        "hostname": "rt0.lon2.uk.geant.net",
+        "interface": "lag-8.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.107/31",
+          "2001:798:cc:1::ba/126"
+        ],
+        "hostname": "rt0.par.fr.geant.net",
+        "interface": "lag-8.0"
+      }
+    ],
+    "imsid": 739436,
+    "monitored": true,
+    "name": "LON2-PAR-IPTRUNK",
+    "scid": "5a7c517a-0581-48bf-92b3-6bca478f5ac6",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00053",
+    "speed": 1717986918400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 677589,
+    "monitored": false,
+    "name": "HAM OOB LINK",
+    "scid": "5a8a6e2c-22c0-4315-805e-eac80f2597f5",
+    "service_type": "OOB IP LINK",
+    "sid": "GS-00401",
+    "speed": 10485760,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ORANGE"
+    ],
+    "endpoints": [],
+    "imsid": 733925,
+    "monitored": false,
+    "name": "NL-ORANGE-2281-2",
+    "scid": "5ab4d709-c473-4b06-9a07-10e03b74998e",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-02182",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "RENAM"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.chi.md.geant.net",
+        "interface": "ae10"
+      }
+    ],
+    "imsid": 714060,
+    "monitored": true,
+    "name": "RENAM-AP2-LAG",
+    "scid": "5ad22108-183d-4d49-aa2c-edc15ecf2008",
+    "service_type": "ETHERNET",
+    "sid": "GA-02038",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "ham-ham_SCION_GTS-DFN_20020",
+    "scid": "5afeb2b4-f9a6-4fc1-8ec4-b29cd6f3e567",
+    "service_type": null,
+    "sid": "DS-51507",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658689,
+    "monitored": false,
+    "name": "730XD-2-VSAN-TRAFFIC-LAG",
+    "scid": "5b365f3b-2906-4c03-bccc-c87c2605a45b",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01676",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 678987,
+    "monitored": true,
+    "name": "DUB-DUB2-LAG",
+    "scid": "5b6a39c8-9066-4622-bde1-c3368a90c023",
+    "service_type": "ETHERNET",
+    "sid": "GA-01891",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 715163,
+    "monitored": true,
+    "name": "DUB2-LON-LAG",
+    "scid": "5b6cffcd-1c22-4469-ba8e-3a799f037103",
+    "service_type": "ETHERNET",
+    "sid": "GA-02007",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [],
+    "imsid": 661892,
+    "monitored": true,
+    "name": "GEN-PAR-LSST-RENATER-INTERNET2-16005",
+    "scid": "5bc855a6-fd97-4ac4-af0d-ab3ea6761c7c",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00713",
+    "speed": 536870912000,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CAAREN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.109.14/31",
+          "2001:798:dd:9::1/126"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "gr-3/0/0.23"
+      }
+    ],
+    "imsid": 732664,
+    "monitored": false,
+    "name": "GRE-MULTICAST-TUNNEL-CAAREN",
+    "scid": "5bcf72e9-c2ff-453e-9ab3-449f1dc51123",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-02376",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CARNET"
+    ],
+    "endpoints": [],
+    "imsid": 712355,
+    "monitored": true,
+    "name": "MD-VPN-VRR-LJUBLJANA-CARNET",
+    "scid": "5bcfba64-7a34-4ea9-93d0-def486730fcc",
+    "service_type": "MD-VPN (PROXY)",
+    "sid": "GS-01014",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.lon.uk.geant.net",
+        "interface": "lag-2"
+      }
+    ],
+    "imsid": 738840,
+    "monitored": true,
+    "name": "LON-LON2-1.6T-LAG",
+    "scid": "5bdb6856-4078-448f-8589-fef8dcc10717",
+    "service_type": "ETHERNET",
+    "sid": "GA-01846",
+    "speed": 1717986918400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "INTERNET2"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/2/3"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/2/3.902"
+      }
+    ],
+    "imsid": 678922,
+    "monitored": false,
+    "name": "LON-LON-MISC-GEANT-INTERNET2-9940169",
+    "scid": "5bdd1b9c-d46e-400d-ae89-19af288cf1e4",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00725",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.AM.OFFICE",
+        "port": "GE-0/0/47"
+      }
+    ],
+    "imsid": 658465,
+    "monitored": true,
+    "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-014(ETH)",
+    "scid": "5be9ef48-8006-428a-8429-d514c437fbb9",
+    "service_type": "ETHERNET",
+    "sid": "GA-01251",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "ath-lon-FutureInternet-GRNET-JANET-12204",
+    "scid": "5c3bf324-1a95-4c9c-ada1-7ce98428f365",
+    "service_type": null,
+    "sid": "GS-00666",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661493,
+    "monitored": false,
+    "name": "BOD-SDN-PILOT-HOST-ETH0-PRAGUE",
+    "scid": "5c41ebaf-52ef-4741-b0bb-a82f857686a5",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00101",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708729,
+    "monitored": false,
+    "name": "BRU-LON-IPTRUNK",
+    "scid": "5c4af477-5de7-4ef1-bda2-346db258a4d6",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00020",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SWITCH"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae23"
+      }
+    ],
+    "imsid": 702102,
+    "monitored": true,
+    "name": "SWITCH-AP1-LAG",
+    "scid": "5c4f5fb4-f916-477a-8e2d-2f4ee2759098",
+    "service_type": "ETHERNET",
+    "sid": "GA-01880",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 741099,
+    "monitored": false,
+    "name": "LIS-PAR-BELLA-IPTRUNK",
+    "scid": "5c5d0c2a-44b0-4458-b54e-0c242ac60b8a",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02572",
+    "speed": 429496729600,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NETHERLIGHT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "10.10.10.1/30"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-2/0/5.750"
+      }
+    ],
+    "imsid": 661590,
+    "monitored": true,
+    "name": "LON-NETHERLIGHT-OPEN-TEST-VLAN",
+    "scid": "5c5f7752-1a40-4383-9f6c-a6ee3dcb5929",
+    "service_type": "GEANT IP",
+    "sid": "GS-00488",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-0/0/6"
+      }
+    ],
+    "imsid": 658492,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-020(ETH)",
+    "scid": "5c6b0e1a-6320-48bd-b042-8ee96adbaa55",
+    "service_type": "ETHERNET",
+    "sid": "GA-01232",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CLOUDFERRO"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae35"
+      }
+    ],
+    "imsid": 731783,
+    "monitored": true,
+    "name": "CLOUDFERRO-FRA-LAG",
+    "scid": "5c6b2d3e-6771-46e1-958e-148cc450b937",
+    "service_type": "ETHERNET",
+    "sid": "GA-01966",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ENSTINET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.300"
+      }
+    ],
+    "imsid": 734576,
+    "monitored": true,
+    "name": "NL-ENSTINET-AP1",
+    "scid": "5c88fe16-a180-4f16-901f-1d09c2cd9c4a",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00892",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "ae13"
+      }
+    ],
+    "imsid": 658695,
+    "monitored": false,
+    "name": "LON2-PRD-ESX03-VM-TRAFFIC",
+    "scid": "5ca32973-71d2-4001-a98a-de0d5ce4fc63",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01701",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GOOGLE"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.89.24/31",
+          "2001:798:1::e5/126"
+        ],
+        "hostname": "rt1.mil2.it.geant.net",
+        "interface": "ae15.0"
+      }
+    ],
+    "imsid": 733062,
+    "monitored": false,
+    "name": "GOOGLE-2-15169-IT",
+    "scid": "5cb191e2-4708-4133-8f4f-a6b9a56305ed",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-02248",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [],
+    "imsid": 712374,
+    "monitored": false,
+    "name": "MD-VPN-VRR-PARIS-NORDUNET-1-DK",
+    "scid": "5cc08d50-aaf3-43a0-ab95-cf8a87bf21df",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01047",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708259,
+    "monitored": false,
+    "name": "VEEAMSERVER-BRA-IDRAC",
+    "scid": "5cda5c86-7569-4ac1-ad5c-2e49cbcbbc31",
+    "service_type": "POP LAN LINK",
+    "sid": "GS-00083",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "LAT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.145/30",
+          "2001:798:1::b1/126"
+        ],
+        "hostname": "rt0.kau.lt.geant.net",
+        "interface": "lag-20.33"
+      }
+    ],
+    "imsid": 746531,
+    "monitored": true,
+    "name": "LAT-AP2-IAS",
+    "scid": "5d29ec85-4dbf-4b58-812c-d6b8b5cea92d",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00578",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661352,
+    "monitored": false,
+    "name": "NPL-TEST-LON-UK-VLAN300",
+    "scid": "5d4eae42-8d7d-44ea-b542-cb73836633a4",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00259",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 677777,
+    "monitored": false,
+    "name": "POZ OOB LINK",
+    "scid": "5d6b1b26-8dae-4676-93af-b39682d1e7ce",
+    "service_type": "OOB IP LINK",
+    "sid": "GS-00413",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "MIL-VIE-TRUNK",
+    "scid": "5daeab3f-418c-42c4-a50a-f638c7676edc",
+    "service_type": null,
+    "sid": "DS-12689",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "AZSCIENCENET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-11/2/5"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae37"
+      }
+    ],
+    "imsid": 731781,
+    "monitored": true,
+    "name": "AZSCIENCENET-FRA-LL-1",
+    "scid": "5dcdb879-3ad3-4f22-b310-c746d129f839",
+    "service_type": "ETHERNET",
+    "sid": "GA-01599",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "TS1.LJU2.SI.GEANT.NET(OPENGEAR)",
+        "port": "NET1"
+      }
+    ],
+    "imsid": 669568,
+    "monitored": false,
+    "name": "LJU OOB IP LINK",
+    "scid": "5df60e13-66ef-4dcb-a662-5fddccb10b6d",
+    "service_type": "OOB IP LINK",
+    "sid": "GS-00404",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662971,
+    "monitored": false,
+    "name": "RARE-P4-MANAGEMENT-VLAN26",
+    "scid": "5e061145-adfe-4a20-9231-39aa6a2dcf0d",
+    "service_type": "L2SERVICES",
+    "sid": "GS-00775",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "172.21.5.1/24"
+        ],
+        "hostname": "mx2.lis.pt.geant.net",
+        "interface": "ae2.998"
+      }
+    ],
+    "imsid": 679551,
+    "monitored": false,
+    "name": "EX3400-MANAGEMENT-LIS-PT",
+    "scid": "5e73dd25-c9b5-430e-ac21-cd8c4c09ed13",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00153",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.19"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-240592"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20:4061"
+      }
+    ],
+    "imsid": 744266,
+    "monitored": true,
+    "name": "MSESTAD-02245",
+    "scid": "5ea103fa-88e1-4f5b-9471-2948d0559b08",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02245",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "149.6.175.250/29",
+          "2001:978:2::3c:2/112"
+        ],
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae29.0"
+      }
+    ],
+    "imsid": 708322,
+    "monitored": true,
+    "name": "COGENT-GWS-VIE",
+    "scid": "5eb259ba-53a9-4e31-91d7-f3136aac9aab",
+    "service_type": "GWS - UPSTREAM",
+    "sid": "GS-00067",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CESNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.254/31",
+          "2001:798:111:1::45/126"
+        ],
+        "hostname": "rt1.pra.cz.geant.net",
+        "interface": "ae11.111"
+      }
+    ],
+    "imsid": 725154,
+    "monitored": true,
+    "name": "CESNET-AP1-LHCONE",
+    "scid": "5ec1ebab-ecb8-4969-8652-6c696851a063",
+    "service_type": "L3-VPN",
+    "sid": "GS-00813",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "AMT1.FRA.DE",
+        "port": "AE1.0"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae7.0"
+      }
+    ],
+    "imsid": 744390,
+    "monitored": true,
+    "name": "FRA-FRA-AMT-RELAYLINK",
+    "scid": "5ec2ccb7-1de2-4e89-a53d-6e6d0cf1b364",
+    "service_type": "SERVER LINK",
+    "sid": "GS-02306",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.mil2.it.geant.net",
+        "interface": "lag-5"
+      }
+    ],
+    "imsid": 745265,
+    "monitored": true,
+    "name": "MIL2-THE-LAG",
+    "scid": "5eed4367-d2e9-441e-b825-638b6b41e91a",
+    "service_type": "ETHERNET",
+    "sid": "GA-02607",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PF1-RARE.FRA.DE.GEANT.NET",
+        "port": "XE-2"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-11/2/0.702"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-0/0/2.702"
+      }
+    ],
+    "imsid": 733002,
+    "monitored": false,
+    "name": "PAR-FRA-DTN-GENERATOR",
+    "scid": "5eefc369-de0e-4f84-8706-4bc214ec7ca8",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00745",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SWITCH"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.66/31",
+          "2001:798:111:1::f9/126"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae23.611"
+      }
+    ],
+    "imsid": 729642,
+    "monitored": true,
+    "name": "SWITCH-UNIBE-LHCONE",
+    "scid": "5f30d7c0-b8d2-4f3e-abf1-0a2e1b19f280",
+    "service_type": "L3-VPN",
+    "sid": "GS-02378",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae2.3005"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae2.3501"
+      },
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ae11.3501"
+      }
+    ],
+    "imsid": 736109,
+    "monitored": false,
+    "name": "RARE-P4-MANAGEMENT-VLAN26",
+    "scid": "5f46fcf2-facf-4544-b989-84dd78515b34",
+    "service_type": "L2SERVICES",
+    "sid": "GS-02639",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SURF"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "xe-2/1/4.1337"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae15.1337"
+      }
+    ],
+    "imsid": 726378,
+    "monitored": false,
+    "name": "AMS-GEN-SCION-SURF-SCION-23012",
+    "scid": "5f6fe82b-6979-4bf2-a852-b81cb1a104b2",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02263",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661744,
+    "monitored": false,
+    "name": "TAAS-GTS-GATE",
+    "scid": "5f7ff061-cb43-49ad-ab9d-f6ff9bafbcf2",
+    "service_type": "GTS",
+    "sid": "GS-01191",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "T-SYSTEMS"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae27"
+      }
+    ],
+    "imsid": 734842,
+    "monitored": true,
+    "name": "NL-T-SYSTEM-LAG",
+    "scid": "5f8e4602-2fb8-4c07-91f0-47fd237874db",
+    "service_type": "ETHERNET",
+    "sid": "GA-02270",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PF1-RARE.AMS.NL.GEANT.NET",
+        "port": "XE-2"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "xe-9/0/3.2200"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae12.2200"
+      }
+    ],
+    "imsid": 736080,
+    "monitored": false,
+    "name": "AMS-PAR-RENATER-RARE-20070",
+    "scid": "5faba6a7-a8fe-4de0-90d0-0dce30cc8f69",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00657",
+    "speed": 332859965440,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.109.30/31",
+          "2001:798:dd:6::5/126"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-11/0/0.666"
+      }
+    ],
+    "imsid": 716843,
+    "monitored": false,
+    "name": "RARE-PAR-FR",
+    "scid": "5fc2b664-0190-490d-8bb8-3c88175d267d",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00369",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.fra.de.geant.net",
+        "interface": "ae11"
+      }
+    ],
+    "imsid": 658655,
+    "monitored": false,
+    "name": "FRANKFURT 15-FRANKFURT 15-LAG-052(GEANT)",
+    "scid": "5fe0fc36-a470-4f12-83b1-02a2ed2b0042",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01683",
+    "speed": 32212254720,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 743128,
+    "monitored": true,
+    "name": "RIG-RIG-MGMT-LAG",
+    "scid": "5fe35af3-9e2b-4eab-aa4f-a2538171937e",
+    "service_type": "ETHERNET",
+    "sid": "GA-02611",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708006,
+    "monitored": true,
+    "name": "RIG-TAL-LAG",
+    "scid": "60248db0-848f-4eb4-b38a-de80b3109513",
+    "service_type": "ETHERNET",
+    "sid": "GA-01734",
+    "speed": 32212254720,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 718155,
+    "monitored": true,
+    "name": "BRATISLAVA-BRATISLAVA-10GBE-003(GEANT)",
+    "scid": "60385cb5-e120-46f2-8113-5cd839876970",
+    "service_type": "ETHERNET",
+    "sid": "GA-01295",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ge-0/3/2.60"
+      }
+    ],
+    "imsid": 661623,
+    "monitored": false,
+    "name": "KVMOIP-VIE-AT",
+    "scid": "60421eeb-95b6-418c-90e6-0a286893fcae",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00224",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "MANLAN"
+    ],
+    "endpoints": [],
+    "imsid": 727573,
+    "monitored": false,
+    "name": "PAR-PAR-MANLAN-SURFNET-6009641475",
+    "scid": "60942ce5-1df0-4996-a033-93eec9f96792",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02317",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SURF"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-2/0/5.3100"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae12.3100"
+      }
+    ],
+    "imsid": 705937,
+    "monitored": true,
+    "name": "LON-LON-SURF-AARNET-19097",
+    "scid": "60bfe66b-a9c4-485b-8e23-2411c90179f0",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00721",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.fra.de.geant.net",
+        "interface": "ae17"
+      }
+    ],
+    "imsid": 658654,
+    "monitored": false,
+    "name": "FRANKFURT 15-FRANKFURT 15-LAG-051(GEANT)",
+    "scid": "60cee9da-b952-49dd-a46d-4ae990d2c92e",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01689",
+    "speed": 32212254720,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PF1-RARE.FRA.DE.GEANT.NET",
+        "port": "XE-1"
+      },
+      {
+        "equipment": "PF1-RARE.BUD.HU.GEANT.NET",
+        "port": "XE-1"
+      },
+      {
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "xe-3/0/1.0"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-0/0/1.0"
+      }
+    ],
+    "imsid": 708177,
+    "monitored": false,
+    "name": "BUD-FRA-RARE-P4-9951387",
+    "scid": "60ee5b00-c0a2-4b23-b02d-5c06fb830712",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00684",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "LIS01-GRV-1",
+        "port": "1/1/4"
+      },
+      {
+        "equipment": "POR01-GRV-1",
+        "port": "1/1/4"
+      },
+      {
+        "hostname": "mx2.lis.pt.geant.net",
+        "interface": "et-4/0/5"
+      },
+      {
+        "hostname": "rt1.por.pt.geant.net",
+        "interface": "et-0/1/2"
+      }
+    ],
+    "imsid": 712167,
+    "monitored": true,
+    "name": "LIS-POR-IP2",
+    "scid": "60f86de5-9e02-48ba-9ee4-ffc59d32063a",
+    "service_type": "ETHERNET",
+    "sid": "GS-00800",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/1/6"
+      }
+    ],
+    "imsid": 669221,
+    "monitored": true,
+    "name": "RENATER GN2PLUS LL",
+    "scid": "610e0c6b-02f6-479c-8df4-a954f5960975",
+    "service_type": "ETHERNET",
+    "sid": "GA-01385",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "EENET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.49/30",
+          "2001:798:16:10aa::1/126"
+        ],
+        "hostname": "rt0.tar.ee.geant.net",
+        "interface": "lag-20.100"
+      }
+    ],
+    "imsid": 746455,
+    "monitored": true,
+    "name": "EENET-AP1",
+    "scid": "614ff2fd-99a8-4451-a4d9-a6cb6dd21be7",
+    "service_type": "GEANT IP",
+    "sid": "GS-00454",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "MICROSOFT-LAG-2",
+    "scid": "615600da-fc4d-407c-98e2-af87dddec7bc",
+    "service_type": null,
+    "sid": "GA-01797",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "LAT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.237/30",
+          "2001:798:99:1::51/126"
+        ],
+        "hostname": "rt0.rig.lv.geant.net",
+        "interface": "lag-20.83"
+      }
+    ],
+    "imsid": 745983,
+    "monitored": true,
+    "name": "LAT-AP1",
+    "scid": "618967ae-7cb7-4440-af58-bc5c1c87becf",
+    "service_type": "GEANT IP",
+    "sid": "GS-00484",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "mx1.lon2.uk - Traffic - xe-2/0/5.13 - SRV_L2CIRCUIT CUSTOMER WP6T3 WP6T3 #lon2_pra-WP6-GTS_20063 |",
+    "scid": "619a1480-a935-4cfa-85be-4aa20f6cc0fc",
+    "service_type": null,
+    "sid": "DS-52366",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663089,
+    "monitored": false,
+    "name": "AMS-GROOVE-3",
+    "scid": "61a97882-e717-494b-baec-9619ce879bbb",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00095",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708863,
+    "monitored": true,
+    "name": "DUB-DUB2-IPTRUNK",
+    "scid": "61d5f9af-3f6a-48b4-a5df-99bf124ff545",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00030",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae21"
+      }
+    ],
+    "imsid": 727954,
+    "monitored": true,
+    "name": "T-SYSTEMS FRA 100G LAG",
+    "scid": "61f45093-67ac-4261-967e-c27721b127d2",
+    "service_type": "ETHERNET",
+    "sid": "GA-02272",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-9"
+      }
+    ],
+    "imsid": 739968,
+    "monitored": true,
+    "name": "AMS-HAM-LAG-300G",
+    "scid": "62520bbe-774f-4d47-9ed3-c8572be551d5",
+    "service_type": "ETHERNET",
+    "sid": "GA-01896",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-1"
+      }
+    ],
+    "imsid": 746301,
+    "monitored": true,
+    "name": "HAM-TAR-LAG",
+    "scid": "626d1035-cc8c-4d04-b1f8-d83ee5e2294b",
+    "service_type": "ETHERNET",
+    "sid": "GA-02349",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "COGENT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae32"
+      }
+    ],
+    "imsid": 731784,
+    "monitored": true,
+    "name": "COGENT-FRA-LAG",
+    "scid": "62bebeba-9d0b-4cd2-b043-eddcba0f45a0",
+    "service_type": "ETHERNET",
+    "sid": "GA-01939",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "UOM"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae19"
+      }
+    ],
+    "imsid": 720364,
+    "monitored": true,
+    "name": "UOM-AP2-100G-LAG",
+    "scid": "62c2786b-5087-475d-b82c-08681a4a7e5f",
+    "service_type": "ETHERNET",
+    "sid": "GA-02163",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708313,
+    "monitored": false,
+    "name": "PS-FRA-DE-PSMP2-BWCTL",
+    "scid": "62ca3c46-1628-40c4-a920-946c3fb7ba3a",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00302",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 659094,
+    "monitored": true,
+    "name": "PARIS-FLOWMON-NET-1GBE-009(ETH)",
+    "scid": "62d26f33-f331-4a6c-a47b-c8134d1d85da",
+    "service_type": "ETHERNET",
+    "sid": "GA-01402",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SWITCH"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.153/30",
+          "2001:798:1::bd/126"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae23.333"
+      }
+    ],
+    "imsid": 663229,
+    "monitored": true,
+    "name": "SWITCH-AP1-IAS",
+    "scid": "62da0b17-5cf1-43c3-b882-2789a00a949f",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00589",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "JISC"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae10.3260"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae26.3260"
+      }
+    ],
+    "imsid": 732707,
+    "monitored": true,
+    "name": "LON-LON-GEANTOPEN-JISC-NEA3R",
+    "scid": "62de5e96-007d-49e3-bc14-a6dc4aa4358b",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-02399",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.poz.pl.geant.net",
+        "interface": "lag-3"
+      }
+    ],
+    "imsid": 740147,
+    "monitored": true,
+    "name": "POZ-POZ-LAG",
+    "scid": "62f0b62d-ab89-48b5-9fb9-e8248b721d81",
+    "service_type": "ETHERNET",
+    "sid": "GA-02527",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ORANGE"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.90.8/31",
+          "2001:798:1::225/126"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae32.0"
+      }
+    ],
+    "imsid": 720102,
+    "monitored": true,
+    "name": "FR-ORANGE-2280",
+    "scid": "62f70f04-2a06-498c-81c0-7fa7202a68c9",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-02180",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708261,
+    "monitored": false,
+    "name": "FLOWMON-PAR-FR-NETFLOW",
+    "scid": "630bf59c-1f88-49cd-8bbe-4cfce53b903f",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00169",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CERN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.fra.de.geant.net",
+        "interface": "ae19.113"
+      },
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae10.113"
+      }
+    ],
+    "imsid": 705431,
+    "monitored": true,
+    "name": "FRA-GEN-ORACLE-CERN-19114",
+    "scid": "6321c237-8890-48d6-ab96-ae8e0abf8c71",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00697",
+    "speed": 128849018880,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.lju.si.geant.net",
+        "interface": "lag-3"
+      }
+    ],
+    "imsid": 747864,
+    "monitored": true,
+    "name": "LJU-ZAG-LAG",
+    "scid": "632286fd-79c5-4541-8e87-bca20782af51",
+    "service_type": "ETHERNET",
+    "sid": "GA-02373",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PSMP-GN-DRAC-LON2-UK.GEANT.ORG",
+        "port": "0-2"
+      },
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/3/0"
+      },
+      {
+        "addresses": [
+          "62.40.107.222/31",
+          "2001:798:bb:2::d1/126"
+        ],
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/3/0.0"
+      }
+    ],
+    "imsid": 708222,
+    "monitored": false,
+    "name": "PSMP-MANAGEMENT-LON2-UK",
+    "scid": "63360d55-2a7d-4f23-8d47-ec95bf1a27dc",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00361",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.100.38/31",
+          "2001:798::45/126"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae14.667"
+      }
+    ],
+    "imsid": 662915,
+    "monitored": false,
+    "name": "RENATER-AP2-CLS",
+    "scid": "63449276-bb8b-4fcb-aa7c-56fbad888b43",
+    "service_type": "GEANT CLOUD PEERING",
+    "sid": "GS-00619",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 703027,
+    "monitored": true,
+    "name": "SOF-VIE-LAG",
+    "scid": "635f2547-2e38-42fc-823c-c09a0ceed4e0",
+    "service_type": "ETHERNET",
+    "sid": "GA-01731",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "AARNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "138.44.226.19/31"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-2/0/5.2102"
+      }
+    ],
+    "imsid": 709695,
+    "monitored": false,
+    "name": "AARNET-LON-LHCONE-AER",
+    "scid": "63614065-ea3f-4734-8607-05873d8ed563",
+    "service_type": "L3-VPN",
+    "sid": "GS-00806",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "JISC"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.4006"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae10.4006"
+      }
+    ],
+    "imsid": 719849,
+    "monitored": true,
+    "name": "AMS-LON-5GUK-JISC-NKN-22048",
+    "scid": "636b6093-7ae5-4d20-803f-eff875a1386f",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02162",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SANET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.10/31",
+          "2001:798:99:1::49/126"
+        ],
+        "hostname": "rt2.bra.sk.geant.net",
+        "interface": "ae13.420"
+      }
+    ],
+    "imsid": 733189,
+    "monitored": false,
+    "name": "SANET-AP2",
+    "scid": "638759b1-1bb4-46c0-b47c-2593a90333c3",
+    "service_type": "GEANT IP",
+    "sid": "GS-02438",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663245,
+    "monitored": false,
+    "name": "IPCAMERA-FRA-DE",
+    "scid": "6399fc15-c6e9-4d99-802b-7d2f1ea3be74",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00209",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ARNES"
+    ],
+    "endpoints": [],
+    "imsid": 669640,
+    "monitored": false,
+    "name": "LJU-MIL2-ARNES-GARR-19014",
+    "scid": "63a47ec5-00c7-49a4-9b92-dada8c031d63",
+    "service_type": "GEANT LAMBDA",
+    "sid": "GS-00801",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661617,
+    "monitored": false,
+    "name": "MIL2-GROOVE-1",
+    "scid": "63b2cbb0-619f-4004-9275-a011b83d49ca",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00248",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "212.133.15.10/30",
+          "2001:1900:5:2:2:0:8:852a/126"
+        ],
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae21.0"
+      }
+    ],
+    "imsid": 728441,
+    "monitored": true,
+    "name": "COLT-GWS-BUD",
+    "scid": "63b6a84f-c1d2-4c8d-aa9d-9b3eda14e6fd",
+    "service_type": "GWS - UPSTREAM",
+    "sid": "GS-00068",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae1"
+      }
+    ],
+    "imsid": 735952,
+    "monitored": true,
+    "name": "RT1.AMS-RT2.AMS-LAG",
+    "scid": "63b83d3b-216a-488f-89e7-d9dfcd2998af",
+    "service_type": "ETHERNET",
+    "sid": "GA-02013",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "lag-1"
+      }
+    ],
+    "imsid": 745463,
+    "monitored": true,
+    "name": "ATH2-THE-LAG",
+    "scid": "63d1ed0b-87f7-4523-827b-b492068584cc",
+    "service_type": "ETHERNET",
+    "sid": "GA-02422",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "ae5"
+      }
+    ],
+    "imsid": 658516,
+    "monitored": false,
+    "name": "LON2-SEC-ESX21-ESXI-TRAFFIC",
+    "scid": "63d24ad4-f10d-40a5-9870-8fb7db3bf9cb",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01697",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "172.18.26.1/24"
+        ],
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-1/2/2.991"
+      }
+    ],
+    "imsid": 713898,
+    "monitored": false,
+    "name": "DCN-MANAGEMENT-LON2-UK",
+    "scid": "63f6f98e-ecd7-481c-a424-3f95bc39e699",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00120",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CYNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae14"
+      }
+    ],
+    "imsid": 733808,
+    "monitored": true,
+    "name": "CYNET-AP1-LAG",
+    "scid": "6406dd0b-2085-4f17-a237-aced710c1c7b",
+    "service_type": "ETHERNET",
+    "sid": "GA-02440",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.gen.ch.geant.net",
+        "interface": "lag-2"
+      }
+    ],
+    "imsid": 740947,
+    "monitored": true,
+    "name": "GEN-MIL2-LAG",
+    "scid": "6432dc8e-4faa-42a0-84e9-0fe95ce17715",
+    "service_type": "ETHERNET",
+    "sid": "GA-01886",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.109.193/30"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "gr-3/0/0.12"
+      }
+    ],
+    "imsid": 732663,
+    "monitored": false,
+    "name": "GRE-MULTICAST-TUNNEL-KNMI",
+    "scid": "6434c00d-099f-4d24-8eb2-5fd9a8514cb1",
+    "service_type": "EUMETSAT GRE",
+    "sid": "GS-01083",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "Link to Interoute for Helix Nebula",
+    "scid": "6447f228-9207-4bc2-b882-af545305af9a",
+    "service_type": null,
+    "sid": "DA-25427",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.fra.de.geant.net",
+        "interface": "ae0.0"
+      },
+      {
+        "addresses": [
+          "62.40.106.90/29",
+          "2001:798:bb:9::2/64"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "irb.3002"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae30.3002"
+      }
+    ],
+    "imsid": 733022,
+    "monitored": false,
+    "name": "PS-LATENCY-NETWORK-FRA-DE",
+    "scid": "6461a73e-a999-4eb5-8a11-3bc7582c351e",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00312",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-0/0/25"
+      }
+    ],
+    "imsid": 658496,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-024(ETH)",
+    "scid": "6466ecbd-d00a-4a9b-a0ed-fd14ac07a471",
+    "service_type": "ETHERNET",
+    "sid": "GA-01238",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "KIAE"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.0/31",
+          "2001:798:111:1::7d/126"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae16.111"
+      }
+    ],
+    "imsid": 734247,
+    "monitored": false,
+    "name": "NL-KIAE-LHCONE",
+    "scid": "64cf2767-c24e-4b6e-85c2-b4a4195500fb",
+    "service_type": "L3-VPN",
+    "sid": "GS-00836",
+    "speed": 32212254720,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "172.18.254.9/30"
+        ],
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "gr-10/1/0.0"
+      }
+    ],
+    "imsid": 737548,
+    "monitored": false,
+    "name": "FORTIGATE-TUNNEL-TO-CH-LON2-UK",
+    "scid": "64e66cb7-9b93-4c6f-b95f-0a50ea6a4cbc",
+    "service_type": "L3-VPN",
+    "sid": "GS-02124",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "CSTNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.184/31",
+          "2001:798:99:1::12d/126"
+        ],
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae12.1005"
+      }
+    ],
+    "imsid": 729009,
+    "monitored": true,
+    "name": "FR-IC1-CSTNET-PRIMARY",
+    "scid": "6515de12-fb6a-4e93-bddb-163e19272e8b",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-02358",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SURF"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "et-10/0/5"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae17"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae17.1"
+      }
+    ],
+    "imsid": 668957,
+    "monitored": true,
+    "name": "SURF-GEO-FR-1-LL",
+    "scid": "654caf28-87eb-467b-bcfb-5828cca231a7",
+    "service_type": "ETHERNET",
+    "sid": "GA-01819",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ACONET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.1/30",
+          "2001:798:1::5/126"
+        ],
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae15.52"
+      }
+    ],
+    "imsid": 661622,
+    "monitored": true,
+    "name": "ACONET-AP1-IAS",
+    "scid": "65604160-6d30-4715-b63c-d50e630e2ef8",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00550",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "mx1.fra.de - Traffic - ae23 - LAG GRENA + AzScienceNet",
+    "scid": "6594ec51-c431-46bc-aebc-7e3f639d2719",
+    "service_type": null,
+    "sid": "GA-01949",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "LINX"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "195.66.226.161/21",
+          "2001:7f8:4:0::5348:1/64"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae20.0"
+      }
+    ],
+    "imsid": 708212,
+    "monitored": false,
+    "name": "IX-PEERINGS-IN-LINX",
+    "scid": "65a46d05-0ae9-4f66-a5b4-180a244d6c33",
+    "service_type": "IP PEERING - NON R&E (PUBLIC)",
+    "sid": "GS-00951",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "ge-0/0/9"
+      }
+    ],
+    "imsid": 659068,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-1GBE-020(ETH)",
+    "scid": "65c07874-01cf-4834-94dd-7fb5c8b97e28",
+    "service_type": "ETHERNET",
+    "sid": "GA-01502",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mil2.it.geant.net",
+        "interface": "xe-1/1/3"
+      },
+      {
+        "hostname": "mx1.mil2.it.geant.net",
+        "interface": "xe-1/1/3.1022"
+      }
+    ],
+    "imsid": 661201,
+    "monitored": true,
+    "name": "SDN-BOD-BR53-OF-1-HOST-G-ETH1",
+    "scid": "65c2d5a1-14e4-4c07-a56b-4e3d1de29471",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00753",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 660443,
+    "monitored": false,
+    "name": "MIL2-GROOVE-2",
+    "scid": "65de4502-620b-400a-b880-6023c3289135",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00250",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "LAT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.89/30",
+          "2001:798:21:10aa::1/126"
+        ],
+        "hostname": "rt0.kau.lt.geant.net",
+        "interface": "lag-20.83"
+      }
+    ],
+    "imsid": 746529,
+    "monitored": true,
+    "name": "LAT-AP2",
+    "scid": "65e233d2-3663-40dd-9851-8ed91256c156",
+    "service_type": "GEANT IP",
+    "sid": "GS-00485",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CERN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.100.9/30",
+          "2001:798::1/126"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae17.667"
+      }
+    ],
+    "imsid": 662938,
+    "monitored": false,
+    "name": "CERN-AP1-CLS",
+    "scid": "65f1d652-995b-4dd6-86ba-6f9ff6787f30",
+    "service_type": "GEANT CLOUD PEERING",
+    "sid": "GS-00598",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.fra.de.geant.net",
+        "interface": "ae15"
+      }
+    ],
+    "imsid": 658662,
+    "monitored": false,
+    "name": "FRANKFURT 15-FRANKFURT 15-LAG-053(GEANT)",
+    "scid": "65f8c2ad-03c8-4c96-a97d-c2b0e5efb7a3",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01687",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 715106,
+    "monitored": true,
+    "name": "AMSTERDAM-AMSTERDAM-10GBE-017(GEANT)",
+    "scid": "6602a6b0-2c4f-4030-b3a1-eac31cf3e682",
+    "service_type": "ETHERNET",
+    "sid": "GA-01572",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.mil2.it.geant.net",
+        "interface": "ae10.4086"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.23"
+      }
+    ],
+    "imsid": 707643,
+    "monitored": true,
+    "name": "GARR-UDMILANO_EXPRESSROUTE_VLAN4086",
+    "scid": "6602bd2e-aaa1-4f9f-bc7b-63ebeff4ffc2",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01148",
+    "speed": 332859965440,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.mad.es.geant.net",
+        "interface": "lag-1"
+      }
+    ],
+    "imsid": 742614,
+    "monitored": true,
+    "name": "MAD-MAD-MGMT-LAG",
+    "scid": "6606138a-a403-4cf4-b47b-ff70c3834708",
+    "service_type": "ETHERNET",
+    "sid": "GA-02592",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "WP6T3"
+    ],
+    "endpoints": [],
+    "imsid": 714884,
+    "monitored": false,
+    "name": "LON2-PRA-WP7T2SF-BMS8-BMS7-21090",
+    "scid": "6659ecaf-073f-48bf-bf92-e58d72225ab3",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00741",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.AM.OFFICE",
+        "port": "GE-2/0/5"
+      }
+    ],
+    "imsid": 658429,
+    "monitored": true,
+    "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-012(ETH)",
+    "scid": "66630962-157a-4ae9-9797-987e14104247",
+    "service_type": "ETHERNET",
+    "sid": "GA-01266",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.par.fr.geant.net",
+        "interface": "ae0.0"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae30.3001"
+      },
+      {
+        "addresses": [
+          "10.0.1.131/26"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "irb.3001"
+      }
+    ],
+    "imsid": 712156,
+    "monitored": false,
+    "name": "TAAS-CONTROL-NAGIOS-PAR-FR",
+    "scid": "666cbcf7-f155-4583-be57-0ac4789d273d",
+    "service_type": "L3-VPN",
+    "sid": "GS-00864",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "JISC"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.197/30",
+          "2001:798:28:10aa::1/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae10.0"
+      }
+    ],
+    "imsid": 661264,
+    "monitored": true,
+    "name": "JISC-AP1",
+    "scid": "66a379b2-008f-4e20-9933-cbb010d56541",
+    "service_type": "GEANT IP",
+    "sid": "GS-00479",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "xe-11/2/0"
+      },
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "xe-4/0/1.0"
+      },
+      {
+        "addresses": [
+          "62.40.106.254/31",
+          "2001:798:bb:2::31/126"
+        ],
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "xe-11/2/0.0"
+      }
+    ],
+    "imsid": 708284,
+    "monitored": false,
+    "name": "PS-VIE-AT-OWAMP",
+    "scid": "66ce6653-8682-49cf-b3ad-f669a0335cb2",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00355",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "KREONET"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PF1-RARE.AMS.NL.GEANT.NET",
+        "port": "XE-2"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "xe-9/0/3.1237"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae15.1237"
+      }
+    ],
+    "imsid": 736100,
+    "monitored": false,
+    "name": "AMS-AMS-KREONET-RARE-22097",
+    "scid": "66dc7964-6858-4346-9c20-170d181d582c",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02218",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 721423,
+    "monitored": true,
+    "name": "RIGA-RIGA-LAG-001(GEANT)",
+    "scid": "66e9b540-f715-435b-b1b1-bef7293ca21b",
+    "service_type": "ETHERNET",
+    "sid": "GA-02032",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.buc.ro.geant.net",
+        "interface": "ae7"
+      }
+    ],
+    "imsid": 730316,
+    "monitored": true,
+    "name": "BUC-BUD-LAG-(200G)",
+    "scid": "66ed9ab4-46c9-4afd-9082-ff3feb7deaa9",
+    "service_type": "ETHERNET",
+    "sid": "GA-01932",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "TENET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae28"
+      }
+    ],
+    "imsid": 717772,
+    "monitored": true,
+    "name": "UK-TENET-LAG",
+    "scid": "6709781f-360f-4558-8d1c-3223aa068321",
+    "service_type": "ETHERNET",
+    "sid": "GA-02014",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CESNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.pra.cz.geant.net",
+        "interface": "ae11.938"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae15.938"
+      }
+    ],
+    "imsid": 747231,
+    "monitored": false,
+    "name": "PRA-AMS-CESNET-SURF-FABRIC",
+    "scid": "67270457-2412-4ba2-802f-dfdf9a5818e7",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02649",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708318,
+    "monitored": false,
+    "name": "PS-PAR-FR-BWCTL-XE4/1/5",
+    "scid": "672df9ce-8663-434b-aebd-64bcc3f1ad15",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00339",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708748,
+    "monitored": false,
+    "name": "VIE-ZAG-IPTRUNK",
+    "scid": "6743227f-b03c-44d5-9943-f31eea3b1da0",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00064",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "REDCLARA"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "xe-2/1/4.142"
+      },
+      {
+        "hostname": "mx2.lis.pt.geant.net",
+        "interface": "ae11.142"
+      }
+    ],
+    "imsid": 732905,
+    "monitored": false,
+    "name": "GEN-LIS-SCION-REDCLARA",
+    "scid": "6747f3d7-9fa0-4204-92a0-e2d10876e0f7",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02436",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 659214,
+    "monitored": true,
+    "name": "VIENNA-VERIZON-LL-2-1",
+    "scid": "675f3613-9e44-4686-b55e-8513b85209ba",
+    "service_type": "ETHERNET",
+    "sid": "GA-01489",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [],
+    "imsid": 726395,
+    "monitored": true,
+    "name": "IE-NORDUNET-LAG",
+    "scid": "67777750-ce29-4f05-9c6a-90d7bde924f5",
+    "service_type": "ETHERNET",
+    "sid": "GA-02266",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "AMRES"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.177/30",
+          "2001:798:1b:10aa::1/126"
+        ],
+        "hostname": "rt0.sof.bg.geant.net",
+        "interface": "lag-21.1"
+      }
+    ],
+    "imsid": 744955,
+    "monitored": true,
+    "name": "AMRES-AP2",
+    "scid": "67820162-4812-4dbb-8feb-62e905a4ea57",
+    "service_type": "GEANT IP",
+    "sid": "GS-02240",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "mx1.mad.es - Traffic - lc-7/0/0.32769",
+    "scid": "67b8a69c-a976-4197-ab58-ca23ac7537fc",
+    "service_type": null,
+    "sid": "DS-23039",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658867,
+    "monitored": true,
+    "name": "MILAN 2 CALDERA-MILAN 2 CALDERA-10GBE-008(ETH)",
+    "scid": "67bd7732-2d04-4b54-99a5-b9bc950db94f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01336",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "RESTENA"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.137/30",
+          "2001:798:1::a5/126"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae18.333"
+      }
+    ],
+    "imsid": 732134,
+    "monitored": true,
+    "name": "RESTENA-AP1-IAS",
+    "scid": "67c5a332-a133-4310-8539-9fbcd2b20c24",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00585",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 743397,
+    "monitored": true,
+    "name": "TAR-TAR-MGMT-IPTRUNK",
+    "scid": "67ca9197-54f0-44be-8d2b-7291a845d620",
+    "service_type": "IP TRUNK",
+    "sid": "GS-50003",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 734095,
+    "monitored": true,
+    "name": "ATH2-ATH2-LAG",
+    "scid": "67fefa57-af16-464e-b8cb-a77e64599261",
+    "service_type": "ETHERNET",
+    "sid": "DA-00098",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SURF"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae15"
+      }
+    ],
+    "imsid": 734472,
+    "monitored": true,
+    "name": "NL-SURF-LAG",
+    "scid": "68095eff-5d56-4894-9046-9f857495ebde",
+    "service_type": "ETHERNET",
+    "sid": "GA-01919",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [],
+    "imsid": 732659,
+    "monitored": false,
+    "name": "GRE-MULTICAST-TUNNEL-IMO",
+    "scid": "684277cc-4de2-4df9-ab7d-e1434354cdad",
+    "service_type": "EUMETSAT GRE",
+    "sid": "GS-02097",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.97/31",
+          "2001:798:cc::3e/126"
+        ],
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae4.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.96/31",
+          "2001:798:cc::3d/126"
+        ],
+        "hostname": "mx2.lis.pt.geant.net",
+        "interface": "ae4.0"
+      }
+    ],
+    "imsid": 712769,
+    "monitored": true,
+    "name": "LIS-MAD-IPTRUNK",
+    "scid": "68585a7d-8363-4e9e-b6ef-9edfff9104a2",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00048",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663097,
+    "monitored": false,
+    "name": "INFOBLOX-DNS-BUD-HU-VLAN200",
+    "scid": "685bd8a6-4026-428b-900e-a5d5fc302d5e",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00206",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "KIFU"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.17/30",
+          "2001:0798:0010:10aa::15/126"
+        ],
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae18.100"
+      }
+    ],
+    "imsid": 734871,
+    "monitored": true,
+    "name": "KIFU-AP2",
+    "scid": "685fa542-7cb9-4192-8c61-7091e7a65354",
+    "service_type": "GEANT IP",
+    "sid": "GS-00482",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RARE"
+    ],
+    "endpoints": [],
+    "imsid": 735909,
+    "monitored": false,
+    "name": "AMS-AMS-WP7TSF-RARE-200105-AMS",
+    "scid": "686b1c7f-e17b-4b11-afe0-5f21248cad3a",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00625",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ROEDUNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.244/31",
+          "2001:798:111:1::a5/126"
+        ],
+        "hostname": "rt0.buc.ro.geant.net",
+        "interface": "lag-20.111"
+      }
+    ],
+    "imsid": 747923,
+    "monitored": false,
+    "name": "ROEDUNET-AP1-LHCONE",
+    "scid": "687404e7-26ce-4f6f-9e68-9ed427e980a6",
+    "service_type": "L3-VPN",
+    "sid": "GS-00857",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GRNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.52/31",
+          "2001:798:99:1::6d/126"
+        ],
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "lag-20.100"
+      }
+    ],
+    "imsid": 745493,
+    "monitored": true,
+    "name": "GRNET-AP1",
+    "scid": "687abed5-3662-4d4e-b702-d25373afc721",
+    "service_type": "GEANT IP",
+    "sid": "GS-00471",
+    "speed": 64424509440,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.104.49/29",
+          "2001:798:6::1/64"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae1.3009"
+      }
+    ],
+    "imsid": 729102,
+    "monitored": false,
+    "name": "INFOBLOX-GRID-FRA-DE",
+    "scid": "689e7d7c-3da1-4699-b8c0-f7b228489d9c",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00201",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.mil2.it.geant.net",
+        "interface": "ae7"
+      }
+    ],
+    "imsid": 740948,
+    "monitored": true,
+    "name": "MIL2-MIL2-LAG",
+    "scid": "68f63a59-1fe7-491a-830d-16669a01da62",
+    "service_type": "ETHERNET",
+    "sid": "GA-02546",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662950,
+    "monitored": false,
+    "name": "GEN-GROOVE-3-MANAGEMENT",
+    "scid": "690e3c02-b0c7-4727-894b-49225a641692",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00186",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae1.3005"
+      }
+    ],
+    "imsid": 739308,
+    "monitored": false,
+    "name": "RARE-P4-MANAGEMENT-VLAN3005",
+    "scid": "69329700-b6f1-45b7-8138-d6043fb9c9ba",
+    "service_type": "L2SERVICES",
+    "sid": "GS-02641",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "mx1.fra.de - DE-LU Multicast Traffic",
+    "scid": "6939b127-709f-488e-9c8d-33354815cc04",
+    "service_type": null,
+    "sid": "DS-22013",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-0/0/5"
+      }
+    ],
+    "imsid": 658587,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-034(ETH)",
+    "scid": "695e9958-d51d-43b1-a3d3-51b74495370d",
+    "service_type": "ETHERNET",
+    "sid": "GA-01213",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RENAM"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.100.28/31",
+          "2001:798::2d/126"
+        ],
+        "hostname": "rt1.chi.md.geant.net",
+        "interface": "ae10.667"
+      }
+    ],
+    "imsid": 714068,
+    "monitored": true,
+    "name": "RENAM-AP1-CLS",
+    "scid": "69a70f7d-8c03-41b0-b561-0a93d53ce7f4",
+    "service_type": "GEANT CLOUD PEERING",
+    "sid": "GS-00617",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [],
+    "imsid": 658748,
+    "monitored": true,
+    "name": "PRAGUE-PRAGUE-1GBE-004(ETH)",
+    "scid": "69b0b4de-95ff-4fcc-90ed-4fa2770978dc",
+    "service_type": "ETHERNET",
+    "sid": "GA-01446",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ROEDUNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.141/30",
+          "2001:798:1::a9/126"
+        ],
+        "hostname": "rt0.buc.ro.geant.net",
+        "interface": "lag-20.333"
+      }
+    ],
+    "imsid": 747922,
+    "monitored": false,
+    "name": "ROEDUNET-AP1-IAS",
+    "scid": "69d29376-ae69-4fc5-8487-c1d39ea81e5f",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00544",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658670,
+    "monitored": false,
+    "name": "730XD-4-VSAN-TRAFFIC-LAG-PAR",
+    "scid": "6a32c63e-40ad-478e-be80-086a393d1ee0",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01722",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [],
+    "imsid": 731422,
+    "monitored": false,
+    "name": "NORDUNET-BGP-LU-COC-AP2",
+    "scid": "6a3e19f8-53f0-495e-9794-c69f176aa49f",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01054",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "AMRES"
+    ],
+    "endpoints": [],
+    "imsid": 725487,
+    "monitored": true,
+    "name": "AMRES-AP1-BGP-LU-COC",
+    "scid": "6a64ef09-a7ef-41f2-bfec-d3f2d8ceb895",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-00997",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663093,
+    "monitored": false,
+    "name": "MDM-AMS-NL-VLAN91",
+    "scid": "6a7217a7-eb47-4b5b-9ecc-79455cde0bb7",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00245",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.mil2.it.geant.net",
+        "interface": "lag-1"
+      }
+    ],
+    "imsid": 746144,
+    "monitored": true,
+    "name": "MAR-MIL2-LAG",
+    "scid": "6a74cb54-4c64-4462-82e0-5f485ba3befc",
+    "service_type": "ETHERNET",
+    "sid": "GA-01776",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 701541,
+    "monitored": true,
+    "name": "AMS-LON-LAG",
+    "scid": "6abea3ab-7337-4b1c-8564-0ebc32969cd4",
+    "service_type": "ETHERNET",
+    "sid": "GA-01914",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 718935,
+    "monitored": false,
+    "name": "EX3400-MANAGEMENT-HAM1-DE",
+    "scid": "6ad604dd-3131-4b4a-b389-e0ffd1fbd0a4",
+    "service_type": "SERVER LINK",
+    "sid": "GS-01289",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ARN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.60/31",
+          "2001:798:99:1::119/126"
+        ],
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae18.100"
+      }
+    ],
+    "imsid": 724758,
+    "monitored": true,
+    "name": "ES-ARN-AP1",
+    "scid": "6af3bf02-391a-493a-80d8-8e5f486fc134",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00880",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 679098,
+    "monitored": true,
+    "name": "FRA-POZ-LAG",
+    "scid": "6af67d7b-2679-4a4f-8a35-1e269d99a0d2",
+    "service_type": "ETHERNET",
+    "sid": "GA-01814",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CERN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "xe-2/0/0"
+      }
+    ],
+    "imsid": 669538,
+    "monitored": true,
+    "name": "SWITCH GN+ LL",
+    "scid": "6b5cde4a-913b-430d-bde1-2b25f2a59ee4",
+    "service_type": "ETHERNET",
+    "sid": "GA-01541",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 745426,
+    "monitored": true,
+    "name": "ATHENS 2-ATHENS 2-LAG-007(GEANT)",
+    "scid": "6b8eb11d-8f4e-4274-ab25-92cf4cfcf716",
+    "service_type": "ETHERNET",
+    "sid": "GA-50008",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "AARNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-2/0/5.2100"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-1/3/0.2100"
+      }
+    ],
+    "imsid": 709856,
+    "monitored": true,
+    "name": "LON-LON-GEANTOPEN-AARNET-NETHERLIGHT-21003",
+    "scid": "6bb16906-92b6-4759-bfdf-dfd8cd13ea69",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00284",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-4"
+      }
+    ],
+    "imsid": 744126,
+    "monitored": true,
+    "name": "AMS-BRU-LAG",
+    "scid": "6bea6346-0268-4340-b8a9-2e0164fe3693",
+    "service_type": "ETHERNET",
+    "sid": "GA-01792",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708178,
+    "monitored": false,
+    "name": "PS-FRA-DE-PSMP1-BWCTL",
+    "scid": "6c318b37-3900-49b8-ab90-a810fd1109cf",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00301",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "MAEEN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.3611"
+      }
+    ],
+    "imsid": 734556,
+    "monitored": true,
+    "name": "NL-MAEEN",
+    "scid": "6c3ef5a8-88db-4ca9-816f-7db8cef58c3f",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00898",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ARNES"
+    ],
+    "endpoints": [],
+    "imsid": 661440,
+    "monitored": true,
+    "name": "ARNES-AP3-IAS",
+    "scid": "6c4d70af-59dc-4550-ae48-f0e7c5b45f98",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00554",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 713232,
+    "monitored": true,
+    "name": "BUC-CHI-40G-LAG",
+    "scid": "6c72cf16-2075-4f74-861e-cd1ccca61a8e",
+    "service_type": "ETHERNET",
+    "sid": "GA-92003",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SANET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.89.30/31",
+          "2001:798:99:1::4d/126"
+        ],
+        "hostname": "rt2.bra.sk.geant.net",
+        "interface": "ae13.421"
+      }
+    ],
+    "imsid": 733192,
+    "monitored": false,
+    "name": "SANET-AP2-IAS",
+    "scid": "6c9a1a4a-6c54-4463-8a6c-47165bdca719",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-02439",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "REDIRIS"
+    ],
+    "endpoints": [
+      {
+        "equipment": "GEN01-GRV8",
+        "port": "1/1/3"
+      },
+      {
+        "equipment": "MAD01-GRV3",
+        "port": "1/1/3"
+      }
+    ],
+    "imsid": 724593,
+    "monitored": true,
+    "name": "GEN1-MAD-LHC-CERN-REDIRIS-22044",
+    "scid": "6c9d1c63-e115-4f3a-b96a-944bbfaecdf0",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-02120",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "DFN"
+    ],
+    "endpoints": [],
+    "imsid": 712369,
+    "monitored": true,
+    "name": "MD-VPN-VRR-LJUBLJANA-DFN-2-DE",
+    "scid": "6cc287b3-07f4-42e3-873f-1e2b89e43647",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01016",
+    "speed": 322122547200,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.buc.ro.geant.net",
+        "interface": "ae3"
+      }
+    ],
+    "imsid": 744990,
+    "monitored": true,
+    "name": "BUC-SOF-LAG",
+    "scid": "6ccc732d-8370-4a9f-b105-7eb10c45ae42",
+    "service_type": "ETHERNET",
+    "sid": "GA-01935",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "ham_ham-WP6-GTS_21009",
+    "scid": "6d1278d0-5fc2-4a9b-b410-2008c205630c",
+    "service_type": null,
+    "sid": "DS-53415",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CYNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "lag-21"
+      }
+    ],
+    "imsid": 745466,
+    "monitored": true,
+    "name": "CYNET-AP2-LAG",
+    "scid": "6d6681ae-2b43-491c-9f38-15fe3b9cfbe8",
+    "service_type": "ETHERNET",
+    "sid": "GA-01928",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ge-0/2/7"
+      }
+    ],
+    "imsid": 659096,
+    "monitored": true,
+    "name": "PARIS-GTS-BMS-1GBE-007(ETH)",
+    "scid": "6d6c0e5b-cce5-4a06-a958-58c56841eed7",
+    "service_type": "ETHERNET",
+    "sid": "GA-01401",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "AZSCIENCENET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-11/3/2"
+      }
+    ],
+    "imsid": 731782,
+    "monitored": true,
+    "name": "AZSCIENCENET-EAP-FRA-LL-1",
+    "scid": "6d852f81-dfd6-4b79-9332-16264e04340d",
+    "service_type": "ETHERNET",
+    "sid": "GA-01651",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-11/1/2"
+      }
+    ],
+    "imsid": 658812,
+    "monitored": true,
+    "name": "LON-DTN-100G-LL",
+    "scid": "6d858a1b-6f3e-43d1-9c9a-49247378018c",
+    "service_type": "ETHERNET",
+    "sid": "GA-01465",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RASH"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.228/31",
+          "2001:798:1::119/126"
+        ],
+        "hostname": "rt1.mil2.it.geant.net",
+        "interface": "ae16.333"
+      }
+    ],
+    "imsid": 727802,
+    "monitored": true,
+    "name": "RASH-AP1-100G-IAS",
+    "scid": "6da6ec52-667e-42fa-8261-68cfc344c962",
+    "service_type": "GWS - INDIRECT",
+    "sid": "GS-02326",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "MARWAN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.32/31",
+          "2001:798:99:1::65/126"
+        ],
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "ae15.100"
+      }
+    ],
+    "imsid": 733897,
+    "monitored": true,
+    "name": "UK-MARWAN",
+    "scid": "6db55316-2135-41cb-978d-da6d0fdc0b41",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-02406",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [],
+    "imsid": 659070,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-066(ETH)",
+    "scid": "6dd99a9f-fbdf-4aee-938a-b06c29034879",
+    "service_type": "ETHERNET",
+    "sid": "GA-01311",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 709476,
+    "monitored": true,
+    "name": "LAG-SW2.MIL2.IT_AE1",
+    "scid": "6ddb3ba8-f174-4b51-a733-d90630fa2ffe",
+    "service_type": "ETHERNET",
+    "sid": "GA-01778",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CESNET"
+    ],
+    "endpoints": [],
+    "imsid": 718310,
+    "monitored": true,
+    "name": "CESNET-SECTEST-EXPRESSROUTE-VLAN409",
+    "scid": "6de70aac-9277-41fb-9120-10249d535071",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02094",
+    "speed": 32212254720,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661292,
+    "monitored": false,
+    "name": "JUNOSSPACE-R720-DRAC-PAR-FR",
+    "scid": "6e07311d-cc1f-4b98-b02b-253329865a7e",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00213",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "MANLAN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae15.32"
+      }
+    ],
+    "imsid": 714830,
+    "monitored": true,
+    "name": "FR-MANLAN",
+    "scid": "6e145dd9-0a78-4671-87f9-3e88ea444b47",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00461",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662259,
+    "monitored": true,
+    "name": "AMSTERDAM-AMSTERDAM-10GBE-004(GEANT)",
+    "scid": "6e408592-9d20-458f-9847-8c266741f7cf",
+    "service_type": "ETHERNET",
+    "sid": "GA-01632",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PF1-RARE.POZ.PL.GEANT.NET",
+        "port": "XE-0"
+      },
+      {
+        "equipment": "PF1-RARE.BUD.HU.GEANT.NET",
+        "port": "XE-0"
+      },
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "xe-3/0/0.0"
+      },
+      {
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "xe-3/0/0.0"
+      }
+    ],
+    "imsid": 708292,
+    "monitored": false,
+    "name": "BUD-POZ-RARE-P4-9951383",
+    "scid": "6e43746b-e4ef-48a0-a5fe-873d39990fcb",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00685",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.rig.lv.geant.net",
+        "interface": "lag-4"
+      }
+    ],
+    "imsid": 746303,
+    "monitored": true,
+    "name": "RIG-TAR-LAG",
+    "scid": "6e4cf35f-373b-4439-921f-6414db862910",
+    "service_type": "ETHERNET",
+    "sid": "GA-02346",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 679318,
+    "monitored": false,
+    "name": "NE-ESXI-TNMS-PAR-FR",
+    "scid": "6e896bb5-2114-45a4-a18a-926270d0893f",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00254",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "FACEBOOK"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "103.4.98.177/31",
+          "2620:0:1cff:dead:beee::2d9/127"
+        ],
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae14.0"
+      }
+    ],
+    "imsid": 738664,
+    "monitored": true,
+    "name": "FACEBOOK-32934-VIE-FC-203126784",
+    "scid": "6e9f65f0-8eda-4584-b1f5-4fc0372a50dc",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-00929",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CESNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.100.0/31",
+          "2001:798::d/126"
+        ],
+        "hostname": "mx1.pra.cz.geant.net",
+        "interface": "ae11.667"
+      }
+    ],
+    "imsid": 661548,
+    "monitored": true,
+    "name": "CESNET-AP1-CLS",
+    "scid": "6eb025b1-ba2a-4111-9c39-2a0b351f9f8a",
+    "service_type": "GEANT CLOUD PEERING",
+    "sid": "GS-00600",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [],
+    "imsid": 712404,
+    "monitored": false,
+    "name": "MD-VPN-VRR-PARIS-BELNET-1-BE",
+    "scid": "6ed4db26-c0c8-4882-b803-615b5406f8ce",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01033",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "\"PHY PRIVATE DIMENSION_DATA P_ae19",
+    "scid": "6efbbb44-9b0c-4fe4-8bd5-4a9777d20a4e",
+    "service_type": null,
+    "sid": "DS-42349",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SURF"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae11"
+      }
+    ],
+    "imsid": 659321,
+    "monitored": true,
+    "name": "SURF-AP2-LAG",
+    "scid": "6f08b236-07c9-423b-9a9b-eb3177d4306c",
+    "service_type": "ETHERNET",
+    "sid": "GA-01844",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/3/2"
+      }
+    ],
+    "imsid": 662850,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-080(GEANT)",
+    "scid": "6f0ff73d-dec6-4953-b0ea-6f51e4fb9659",
+    "service_type": "ETHERNET",
+    "sid": "GA-01654",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "ams-lon_EXPReS_JANET-NetherLight_07011",
+    "scid": "6f35e01d-6089-4570-86a6-17e4f8a70ef8",
+    "service_type": null,
+    "sid": "GS-00643",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 746135,
+    "monitored": true,
+    "name": "KAU-KAU-MGMT-IPTRUNK",
+    "scid": "6f5860fe-60ae-4d9c-9149-beea902bfca1",
+    "service_type": "IP TRUNK",
+    "sid": "GS-50063",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663036,
+    "monitored": false,
+    "name": "PS-AMS-NL-MANAGEMENT-VLAN22",
+    "scid": "6f6f6281-2a2e-469f-baa5-006ead5f2895",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00287",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ge-0/2/6"
+      }
+    ],
+    "imsid": 658934,
+    "monitored": true,
+    "name": "PARIS-GTS-VPLS-1GBE-006(ETH)",
+    "scid": "6f8a081b-a5ab-49c3-9e86-021451120a32",
+    "service_type": "ETHERNET",
+    "sid": "GA-01411",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-5/2/2"
+      },
+      {
+        "addresses": [
+          "62.40.116.65/28"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-5/2/2.0"
+      }
+    ],
+    "imsid": 731223,
+    "monitored": false,
+    "name": "BENOCS-FRA",
+    "scid": "6fa906a9-70c7-4dce-aa67-87d62a544885",
+    "service_type": "SERVER LINK",
+    "sid": "GS-02434",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "193.203.0.172/23",
+          "2001:7f8:30:0:2:1:2:0965/64"
+        ],
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae10.0"
+      }
+    ],
+    "imsid": 708175,
+    "monitored": false,
+    "name": "IX-PEERINGS-IN-VIX",
+    "scid": "6faf5e62-7a01-4895-b6e6-80b9875dc35e",
+    "service_type": "IP PEERING - NON R&E (PUBLIC)",
+    "sid": "GS-00954",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.AM.OFFICE",
+        "port": "GE-1/0/2"
+      }
+    ],
+    "imsid": 658500,
+    "monitored": true,
+    "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-018(ETH)",
+    "scid": "6fb629a8-4d52-45b1-84ec-578b62acd19b",
+    "service_type": "ETHERNET",
+    "sid": "GA-01276",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ae11.2706"
+      },
+      {
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae16.978"
+      }
+    ],
+    "imsid": 738289,
+    "monitored": false,
+    "name": "PSNC-REDIRIS-SLICES-UC3M",
+    "scid": "6fb81e8f-326f-4e21-93a4-bf20e6173572",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02492",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 727205,
+    "monitored": true,
+    "name": "BRUSSELS-BRUSSELS-10GBE-005(GEANT)",
+    "scid": "6fc34be3-eec5-44d9-a8bd-d5b9b1f3da96",
+    "service_type": "ETHERNET",
+    "sid": "GA-01358",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "xe-2/0/6"
+      }
+    ],
+    "imsid": 727941,
+    "monitored": true,
+    "name": "GENEVA-GENEVA-10GBE-016(GEANT)",
+    "scid": "6fcea088-b97d-481e-a88f-901cbcc88a33",
+    "service_type": "ETHERNET",
+    "sid": "GA-02134",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ULAKBIM"
+    ],
+    "endpoints": [],
+    "imsid": 709645,
+    "monitored": false,
+    "name": "ULAKBIM-GN-PRACE-VPN-PROXY-FRANKFURT-L3VPN",
+    "scid": "6fd3d4c3-4b0d-41bd-b747-1a907fe19986",
+    "service_type": "MD-VPN (PROXY)",
+    "sid": "GS-01072",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NETHERLIGHT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/1/5.0"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "xe-0/1/2"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "xe-0/1/2.0"
+      }
+    ],
+    "imsid": 711990,
+    "monitored": true,
+    "name": "AMS-LON-LOFAR-NETHERLIGHT-JISC-10007",
+    "scid": "6fd3e24b-1563-43d0-b929-7d13bada800d",
+    "service_type": "GEANT - GBS",
+    "sid": "GS-00783",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ORACLE"
+    ],
+    "endpoints": [],
+    "imsid": 719124,
+    "monitored": true,
+    "name": "BIL-FRA-ORACLE-REDIRIS-21051-VL683",
+    "scid": "70057baf-e7f9-451f-a631-f0a116b386c7",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00701",
+    "speed": 343597383680,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SUNET"
+    ],
+    "endpoints": [],
+    "imsid": 712408,
+    "monitored": true,
+    "name": "MD-VPN-VRR-LJUBLJANA-SUNET-SE",
+    "scid": "701c8625-068e-4137-990e-3d6effa908e0",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01031",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae30"
+      }
+    ],
+    "imsid": 712106,
+    "monitored": true,
+    "name": "LAG-QFX.PAR.FR_AE0",
+    "scid": "703b22e7-650c-4faf-870d-a2dbfc8ac7ba",
+    "service_type": "ETHERNET",
+    "sid": "GA-01815",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "ams-mad_I2CAT_NetherLight-RedIRIS_12015",
+    "scid": "703dbb67-7871-4347-8b7c-56a86656043c",
+    "service_type": null,
+    "sid": "DS-28662",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "PRO-M/NIIF"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae18"
+      }
+    ],
+    "imsid": 734844,
+    "monitored": true,
+    "name": "KIFU-AP2-LAG",
+    "scid": "7043c23f-9b5e-40e5-901b-f2d1dc86e92a",
+    "service_type": "ETHERNET",
+    "sid": "GA-01861",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [],
+    "imsid": 669626,
+    "monitored": false,
+    "name": "GEN2-LON-EEX-ESNET-1426",
+    "scid": "7049c48b-3fac-470b-82ec-adee6ec57aa1",
+    "service_type": "GEANT LAMBDA",
+    "sid": "GS-00796",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661258,
+    "monitored": false,
+    "name": "RARE-P4-B1-POZ",
+    "scid": "707237a6-3ba5-4e2d-bd6d-081cdcae760d",
+    "service_type": "L2SERVICES",
+    "sid": "GS-00772",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "REDIRIS"
+    ],
+    "endpoints": [],
+    "imsid": 719498,
+    "monitored": false,
+    "name": "BRU-MAD-OFELIA-BELNET-REDIRIS-14001",
+    "scid": "70c923e6-4cfa-46ad-9835-c04b7b3b77e5",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00679",
+    "speed": 332859965440,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "REDCLARA"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.32/31",
+          "2001:798:111:1::c9/126"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae19.2016"
+      }
+    ],
+    "imsid": 736738,
+    "monitored": true,
+    "name": "REDCLARA-PAR-LHCONE-2",
+    "scid": "70f0b140-7251-4f96-a1f9-a09d80188074",
+    "service_type": "L3-VPN",
+    "sid": "GS-00846",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ams.nl.geant.net",
+        "interface": "lag-5"
+      }
+    ],
+    "imsid": 735410,
+    "monitored": true,
+    "name": "AMS-AMS-800G-LAG",
+    "scid": "7123cd23-2ba5-4435-b925-a18747a02814",
+    "service_type": "ETHERNET",
+    "sid": "GA-02457",
+    "speed": 858993459200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BREN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.241/30",
+          "2001:798:1::101/126"
+        ],
+        "hostname": "rt0.sof.bg.geant.net",
+        "interface": "lag-20.333"
+      }
+    ],
+    "imsid": 744956,
+    "monitored": true,
+    "name": "BREN-AP1-IAS",
+    "scid": "7184a87b-7085-47a1-94c2-3167fe29e79b",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00557",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 659011,
+    "monitored": true,
+    "name": "FR-ORANGE-LL #2",
+    "scid": "71ac286b-0ab4-422e-b432-f29d86190158",
+    "service_type": "ETHERNET",
+    "sid": "GA-01383",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663081,
+    "monitored": false,
+    "name": "GEN-GROOVE-3",
+    "scid": "71c3b10b-8923-4912-b7b5-0c9535ded4a7",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00185",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.41/31",
+          "2001:798:cc::56/126"
+        ],
+        "hostname": "rt0.the.gr.geant.net",
+        "interface": "lag-1.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.40/31",
+          "2001:798:cc::55/126"
+        ],
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "lag-1.0"
+      }
+    ],
+    "imsid": 745464,
+    "monitored": true,
+    "name": "ATH2-THE-IPTRUNK",
+    "scid": "71dce15d-317c-4308-99c2-844a42f0c03e",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02421",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661498,
+    "monitored": false,
+    "name": "OCVM-LON-UK-ILO",
+    "scid": "71f62723-3632-4fd6-ae89-c34e39b16ae5",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00139",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.79/31",
+          "2001:798:cc::86/126"
+        ],
+        "hostname": "rt1.mil2.it.geant.net",
+        "interface": "ae7.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.78/31",
+          "2001:798:cc::85/126"
+        ],
+        "hostname": "rt0.mil2.it.geant.net",
+        "interface": "lag-7.0"
+      }
+    ],
+    "imsid": 740951,
+    "monitored": true,
+    "name": "MIL2-MIL2-IPTRUNK",
+    "scid": "720815cb-ce30-4b4e-9818-208222110af9",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02548",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.14/31"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "et-11/3/0.111"
+      }
+    ],
+    "imsid": 724437,
+    "monitored": false,
+    "name": "DTN-PAR-100G-DATA-LHCONE",
+    "scid": "720dfded-cc6b-4e48-a329-f9e3c74f840c",
+    "service_type": "SERVER LINK",
+    "sid": "GS-99999",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663200,
+    "monitored": false,
+    "name": "IPCAMERA-GEN-CH",
+    "scid": "72221a06-f2fa-4827-9a41-4194c5900b82",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00210",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PSMP-GN-DRAC-POZ-PL.GEANT.ORG",
+        "port": "10GE-2"
+      },
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "xe-3/2/1"
+      },
+      {
+        "addresses": [
+          "62.40.114.100/31",
+          "2001:798:bb:2::a9/126"
+        ],
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "xe-3/2/1.0"
+      }
+    ],
+    "imsid": 708161,
+    "monitored": false,
+    "name": "PS-POZ-PL-BWCTL",
+    "scid": "7225c180-29aa-4e88-8111-585c18f87ed0",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00343",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658517,
+    "monitored": false,
+    "name": "730XD-3-VSAN-TRAFFIC-LAG-PAR",
+    "scid": "7228a3ba-c6e8-459d-862c-7d1e87214d39",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01719",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "JISC"
+    ],
+    "endpoints": [],
+    "imsid": 717188,
+    "monitored": true,
+    "name": "JISC-AP2-LL3",
+    "scid": "7273bcca-a5cf-4948-b843-71e9554f5a84",
+    "service_type": "ETHERNET",
+    "sid": "GA-01671",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "HBKU"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/0/2"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/0/2.1"
+      }
+    ],
+    "imsid": 669142,
+    "monitored": true,
+    "name": "HBKU-GEO-UK-1-LL",
+    "scid": "72773e5b-763d-4f3f-8e60-4575b36f087a",
+    "service_type": "CBL1",
+    "sid": "GA-01458",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "MARNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.105/30",
+          "2001:798:1::81/126"
+        ],
+        "hostname": "rt0.zag.hr.geant.net",
+        "interface": "lag-23.333"
+      }
+    ],
+    "imsid": 747955,
+    "monitored": false,
+    "name": "MARNET-AP2-IAS",
+    "scid": "72952176-9420-446b-8894-b079d5dc74ff",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00537",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GRNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae16.976"
+      },
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "pwe-224046"
+      },
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "lag-20:713"
+      }
+    ],
+    "imsid": 745414,
+    "monitored": true,
+    "name": "SLCUTH-02498",
+    "scid": "72a1f92b-2bee-442f-901f-f81453ff37fc",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02498",
+    "speed": 493921239040,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 728950,
+    "monitored": true,
+    "name": "TAR-TAR-IPTRUNK",
+    "scid": "72bf1da5-dfe8-4463-940f-cc04869fbffd",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02351",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.fra.de.geant.net",
+        "interface": "ae3"
+      }
+    ],
+    "imsid": 658678,
+    "monitored": false,
+    "name": "FRANKFURT 15-FRANKFURT 15-LAG-056(GEANT)",
+    "scid": "72c6493f-90b6-4619-946f-e59b46d869e8",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01674",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.32"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-124032"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20:4083"
+      }
+    ],
+    "imsid": 744238,
+    "monitored": true,
+    "name": "MSETHOMASMORE-02475",
+    "scid": "72e24bdb-782b-4fb0-a15d-33d0b1a6011c",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02475",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mil2.it.geant.net",
+        "interface": "xe-1/1/3"
+      },
+      {
+        "hostname": "mx1.mil2.it.geant.net",
+        "interface": "xe-1/1/3.1035"
+      }
+    ],
+    "imsid": 661969,
+    "monitored": true,
+    "name": "SDN-BOD-BR53-OF-11-HOST-H-ETH4",
+    "scid": "72e7a073-2195-4d38-ba4e-9fd6342f56f7",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00755",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GRNET"
+    ],
+    "endpoints": [],
+    "imsid": 742907,
+    "monitored": false,
+    "name": "GRNET-AP2-COPERNICUS",
+    "scid": "72faa69b-27f4-4b21-af00-2fc8c6302fbb",
+    "service_type": "L3-VPN",
+    "sid": "GS-00829",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx2.lis.pt.geant.net",
+        "interface": "ae6"
+      }
+    ],
+    "imsid": 744976,
+    "monitored": true,
+    "name": "LIS-PAR-LAG",
+    "scid": "731660e9-1e8b-4b0e-84fb-889015fb1020",
+    "service_type": "ETHERNET",
+    "sid": "GA-02634",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "ge-0/1/1"
+      }
+    ],
+    "imsid": 740536,
+    "monitored": true,
+    "name": "LONDON 2-LONDON 2-1GBE-003(GEANT)",
+    "scid": "7335cfb2-1b8d-4b70-a35b-9bbd2f3bfc02",
+    "service_type": "ETHERNET",
+    "sid": "GA-01510",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.100.36/31",
+          "2001:798::41/126"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae12.667"
+      }
+    ],
+    "imsid": 661289,
+    "monitored": true,
+    "name": "RENATER-AP1-CLS",
+    "scid": "7351a9d7-f6b3-4492-92c8-d496824e3efb",
+    "service_type": "GEANT CLOUD PEERING",
+    "sid": "GS-00618",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 717034,
+    "monitored": true,
+    "name": "LAG-MX2.BRA.SK_AE1",
+    "scid": "736304fa-de8f-433a-827a-bc4719a92e40",
+    "service_type": "ETHERNET",
+    "sid": "GA-02069",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CESNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.pra.cz.geant.net",
+        "interface": "ae11"
+      }
+    ],
+    "imsid": 724970,
+    "monitored": true,
+    "name": "CESNET-AP1-LAG",
+    "scid": "737bd449-f9f5-49bf-9368-45a5e85623cd",
+    "service_type": "ETHERNET",
+    "sid": "GA-01829",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.146/31",
+          "2001:798:99:1::32/127"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae14.161"
+      }
+    ],
+    "imsid": 662958,
+    "monitored": true,
+    "name": "RENATER-RTBH-GENEVA",
+    "scid": "738bfc76-896a-491b-a4fd-f76dab21920d",
+    "service_type": "GEANT IP",
+    "sid": "GS-00504",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "MARNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.237/30",
+          "2001:798:2c:10aa::1/126"
+        ],
+        "hostname": "rt0.sof.bg.geant.net",
+        "interface": "lag-22.100"
+      }
+    ],
+    "imsid": 744954,
+    "monitored": true,
+    "name": "MARNET-AP1",
+    "scid": "739c70df-82c4-4216-9a50-5390c0db8575",
+    "service_type": "GEANT IP",
+    "sid": "GS-00489",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 679174,
+    "monitored": false,
+    "name": "NE-ESXI-FRA-DE-TNMS-VLAN10",
+    "scid": "73c8cf2d-715f-4c04-b529-9ae898c4520e",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00256",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [],
+    "imsid": 719314,
+    "monitored": false,
+    "name": "BELNET-GCLOUD-EXPRESSROUTE-VLAN4087",
+    "scid": "73eb5bce-bfc1-4938-a8e6-d15658cb793e",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02160",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "UOM"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.72/31",
+          "2001:798:99:1::111/126"
+        ],
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae19.100"
+      }
+    ],
+    "imsid": 720396,
+    "monitored": true,
+    "name": "UOM-AP2-100G",
+    "scid": "74016d70-cf1f-496a-ac93-cd1feb2df4f1",
+    "service_type": "GEANT IP",
+    "sid": "GS-02164",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.89.212/31",
+          "2001:798:1::19d/126"
+        ],
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae27.0"
+      }
+    ],
+    "imsid": 708328,
+    "monitored": true,
+    "name": "AKAMAI-20940-AT",
+    "scid": "74366bdf-758d-43e7-b872-bbd58ef08ac8",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-00926",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "HARNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.2242"
+      }
+    ],
+    "imsid": 740586,
+    "monitored": true,
+    "name": "NL-HARNET",
+    "scid": "746f621a-f876-44a7-9dde-2d7cc8048ce8",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-02539",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 741126,
+    "monitored": true,
+    "name": "BRU-BRU-MGMT-LAG",
+    "scid": "7485a604-ce14-4366-a508-9217970f787f",
+    "service_type": "ETHERNET",
+    "sid": "GA-02569",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "MICROSOFT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae31"
+      }
+    ],
+    "imsid": 732183,
+    "monitored": true,
+    "name": "MICROSOFT-EXPRESSROUTE-FRA-LAG2",
+    "scid": "749085e3-6229-4e49-8d0c-3a3c3e872765",
+    "service_type": "ETHERNET",
+    "sid": "GA-01963",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SUNET"
+    ],
+    "endpoints": [],
+    "imsid": 716308,
+    "monitored": true,
+    "name": "MD-VPN-VRR-PARIS 007B-SUNET-2-SE",
+    "scid": "74a5c1a1-3242-4108-a2be-14b3679b52cb",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01067",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661918,
+    "monitored": false,
+    "name": "PRA-GROOVE-2",
+    "scid": "74ac4be7-a871-4033-a134-b4a5633203a3",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00281",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [],
+    "imsid": 662352,
+    "monitored": true,
+    "name": "AMSTERDAM-AMSTERDAM-10GBE-020(GEANT)",
+    "scid": "74b4fb1a-100a-4483-9535-621c4931f432",
+    "service_type": "ETHERNET",
+    "sid": "GA-01570",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 715109,
+    "monitored": true,
+    "name": "HAMBURG-HAMBURG-10GBE-017(GEANT)",
+    "scid": "74ea1124-36a4-4f67-a112-727219e54238",
+    "service_type": "ETHERNET",
+    "sid": "GA-01551",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "MICROSOFT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-21:3913"
+      }
+    ],
+    "imsid": 747629,
+    "monitored": true,
+    "name": "AMS-HAM-MSE-01154",
+    "scid": "74f08b13-cef5-404f-9e9d-d20a0ae93159",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-01154",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 743128,
+    "monitored": true,
+    "name": "RIG-RIG-MGMT-LAG",
+    "scid": "74fa1aac-8d62-4a8a-a1e7-0a496b4a5d28",
+    "service_type": "ETHERNET",
+    "sid": "GA-02610",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "xe-5/0/0"
+      }
+    ],
+    "imsid": 738244,
+    "monitored": true,
+    "name": "ARELION-RENAM-GWS-LL",
+    "scid": "7548ce69-f9c1-4f23-81c7-ee465eb3997c",
+    "service_type": "ETHERNET",
+    "sid": "GA-02111",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CARNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae12"
+      }
+    ],
+    "imsid": 730091,
+    "monitored": true,
+    "name": "CARNET AP2-LAG",
+    "scid": "7564273b-1cd7-4903-827a-221a9ad786cf",
+    "service_type": "ETHERNET",
+    "sid": "GA-01739",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "URAN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.46/31",
+          "2001:798:111:1::d9/126"
+        ],
+        "hostname": "rt1.kie.ua.geant.net",
+        "interface": "ae10.360"
+      }
+    ],
+    "imsid": 714002,
+    "monitored": true,
+    "name": "URAN-AP1-LHCONE",
+    "scid": "757a54ac-3f3f-45da-ac14-1382d6763b1e",
+    "service_type": "L3-VPN",
+    "sid": "GS-00870",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT-IT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.fra.de.geant.net",
+        "interface": "xe-0/0/17"
+      },
+      {
+        "hostname": "qfx.par.fr.geant.net",
+        "interface": "xe-0/0/41"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-5/0/0.0"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/1/3.0"
+      }
+    ],
+    "imsid": 729477,
+    "monitored": true,
+    "name": "FRA-PAR-SUPERPOP-QFX-GEANT",
+    "scid": "758b1445-4391-4bff-813a-6938f2b97c95",
+    "service_type": "GEANT - GBS",
+    "sid": "GS-00078",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 732404,
+    "monitored": true,
+    "name": "A10-DDOS-SCRUBBING-FRA-CLEAN-TRAFFIC-LAG",
+    "scid": "75b4e995-3595-43ce-b395-b3ef88c593f1",
+    "service_type": "ETHERNET",
+    "sid": "GA-01954",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "CESNET-GN-PRACE-VPN-Proxy-Prague-L3VPN",
+    "scid": "75c22339-119a-49c4-9b1f-3285a16252ce",
+    "service_type": null,
+    "sid": "GS-01061",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 659189,
+    "monitored": true,
+    "name": "PRAGUE-PRAGUE-1GBE-013(ETH)",
+    "scid": "75dfb7fd-7c3e-4088-a299-f1b22a9e63d1",
+    "service_type": "ETHERNET",
+    "sid": "GA-01439",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.AM.OFFICE",
+        "port": "GE-2/0/0"
+      }
+    ],
+    "imsid": 658592,
+    "monitored": true,
+    "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-025(ETH)",
+    "scid": "75e31b91-b7ca-4ceb-96f0-356a273febdf",
+    "service_type": "ETHERNET",
+    "sid": "GA-01267",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658681,
+    "monitored": false,
+    "name": "LON2-PRD-ESX10-VSAN-LAG",
+    "scid": "75ea1b3b-197e-452e-96e5-ba79d2f20ad8",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01711",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [],
+    "imsid": 709726,
+    "monitored": false,
+    "name": "GEN2-LON-EEX-ESNET-2105",
+    "scid": "75fb8efa-0c75-4d59-a552-3273911fa200",
+    "service_type": "GEANT LAMBDA",
+    "sid": "GS-00797",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NETHERLIGHT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-2/0/5.3001"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae19.3001"
+      }
+    ],
+    "imsid": 736886,
+    "monitored": true,
+    "name": "LON-PAR-GEANTOPEN-NETHERLIGHT-QNREN-15032",
+    "scid": "7621166e-7d9b-4218-a0a2-a6bf198901f9",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00972",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "mx1.lis.pt - LIS-LON Multicast Traffic",
+    "scid": "76620bc1-1acb-4061-b4db-e9e64432b870",
+    "service_type": null,
+    "sid": "DS-13989",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ge-0/3/2"
+      }
+    ],
+    "imsid": 718799,
+    "monitored": true,
+    "name": "LONDON-LONDON-1GBE-002(GEANT)",
+    "scid": "766430a3-9ce2-4fa4-a67e-14013d737559",
+    "service_type": "ETHERNET",
+    "sid": "GA-01470",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 732398,
+    "monitored": true,
+    "name": "FRANKFURT-FRANKFURT-1GBE-004(GEANT)",
+    "scid": "766b47e0-d1f9-4f65-8090-133a8daee4fb",
+    "service_type": "ETHERNET",
+    "sid": "GA-01617",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 709341,
+    "monitored": true,
+    "name": "KAU-KAU-IPTRUNK",
+    "scid": "768f6bce-1353-4a43-9794-fe0b6dc32a2c",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00042",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SCION"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/3/3.203"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae13.203"
+      }
+    ],
+    "imsid": 721429,
+    "monitored": false,
+    "name": "PAR-PAR-SCION-SWITCH",
+    "scid": "769a1057-0d9a-4498-93a5-7e1be6d01f32",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02209",
+    "speed": 225485783040,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "INTERNET2"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PSMP-GN-DRAC-LON2-UK.GEANT.ORG",
+        "port": "0-4"
+      },
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/3/2.904"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae26.904"
+      }
+    ],
+    "imsid": 709300,
+    "monitored": true,
+    "name": "LON-LON2-MISC-GEANT-INTERNET2-9940525",
+    "scid": "76af9188-2250-4d65-911d-b88232992178",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00732",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.101/31",
+          "2001:798:cc::9a/126"
+        ],
+        "hostname": "rt0.the.gr.geant.net",
+        "interface": "lag-5.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.100/31",
+          "2001:798:cc::99/126"
+        ],
+        "hostname": "rt0.mil2.it.geant.net",
+        "interface": "lag-5.0"
+      }
+    ],
+    "imsid": 745270,
+    "monitored": true,
+    "name": "MIL2-THE-IPTRUNK",
+    "scid": "76f20bf6-8554-4e0f-8f86-f02139d41841",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02609",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 735852,
+    "monitored": true,
+    "name": "LON2-LON2-10G-LINK1",
+    "scid": "76f45259-5cab-42a0-be06-d7e8cf8727dc",
+    "service_type": "ETHERNET",
+    "sid": "GA-01314",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae20"
+      }
+    ],
+    "imsid": 662487,
+    "monitored": true,
+    "name": "FRA-DE-CIX-LAG",
+    "scid": "76f816fc-aa96-496c-b5ad-cba93e6b0129",
+    "service_type": "ETHERNET",
+    "sid": "GA-01956",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 727986,
+    "monitored": true,
+    "name": "TARTU-TARTU-LAG-002(GEANT)",
+    "scid": "76fcb919-112d-4682-916e-bf6a8a24c310",
+    "service_type": "ETHERNET",
+    "sid": "GA-02055",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658437,
+    "monitored": false,
+    "name": "730XD-1-SLOT0-PORT1-VMNIC0-PAR",
+    "scid": "7716f6a0-2fc7-46e2-94a1-e9034a95cc46",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01290",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 712524,
+    "monitored": true,
+    "name": "FRANKFURT 15-FRANKFURT 15-LAG-005(GEANT)",
+    "scid": "773566fc-7b07-45fa-b67d-7d87d8a7e930",
+    "service_type": "ETHERNET",
+    "sid": "GA-02065",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20:4073"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-125023"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.45"
+      }
+    ],
+    "imsid": 747544,
+    "monitored": false,
+    "name": "MSECREDENDO-02654",
+    "scid": "77371b44-1826-445b-944c-2641a042c66e",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02654",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "1/1/c2/3"
+      }
+    ],
+    "imsid": 747578,
+    "monitored": true,
+    "name": "HAM-DTN-IP1",
+    "scid": "776c933d-84f9-47f1-a566-44c0969a3dd5",
+    "service_type": "ETHERNET",
+    "sid": "GA-02286",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ACONET"
+    ],
+    "endpoints": [],
+    "imsid": 661509,
+    "monitored": true,
+    "name": "ACONET-AP2-EUMETCAST",
+    "scid": "77776106-932e-420f-9320-5301acc13ebc",
+    "service_type": "GEANT IP",
+    "sid": "GS-00424",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "FACEBOOK"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae47"
+      }
+    ],
+    "imsid": 737787,
+    "monitored": true,
+    "name": "FACEBOOK-FRA-LAG-2",
+    "scid": "777ed6fa-60a3-40e0-9302-279d2a797746",
+    "service_type": "ETHERNET",
+    "sid": "GA-02482",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [],
+    "imsid": 669625,
+    "monitored": false,
+    "name": "AMS-GEN-EEX-ESNET-1425",
+    "scid": "77b54ec7-3c78-47c6-b843-b22a8acdd90d",
+    "service_type": "GEANT LAMBDA",
+    "sid": "GS-00778",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.poz.pl.geant.net",
+        "interface": "lag-6"
+      }
+    ],
+    "imsid": 746516,
+    "monitored": true,
+    "name": "KAU-POZ-LAG",
+    "scid": "77c38cd3-f042-4275-acc1-e640419ab8bf",
+    "service_type": "ETHERNET",
+    "sid": "GA-01812",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/1/5"
+      }
+    ],
+    "imsid": 733210,
+    "monitored": true,
+    "name": "LONDON 2-LONDON 2-10GBE-029(GEANT)",
+    "scid": "77cfebb2-a92a-4fcd-9efe-235d9e9065f7",
+    "service_type": "ETHERNET",
+    "sid": "GA-01332",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661881,
+    "monitored": false,
+    "name": "LON-GROOVE-1-MANAGEMENT",
+    "scid": "77e31ca9-a387-4934-a497-1bb1a5a665f3",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00229",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "DFN"
+    ],
+    "endpoints": [],
+    "imsid": 733112,
+    "monitored": false,
+    "name": "FRA-GEN-CERN-DFN-4",
+    "scid": "77e7fdcd-7b81-439d-b366-0fe8d5f4d9ab",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02446",
+    "speed": 536870912000,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae3"
+      }
+    ],
+    "imsid": 739435,
+    "monitored": true,
+    "name": "PAR-PAR-800G-LAG",
+    "scid": "784ab6cf-9efb-4dec-94f7-231c3a2cc04f",
+    "service_type": "ETHERNET",
+    "sid": "GA-02471",
+    "speed": 858993459200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PSMP-GN-DRAC-VIE-AT.GEANT.ORG",
+        "port": "10GE-1"
+      },
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "xe-11/0/1"
+      },
+      {
+        "addresses": [
+          "62.40.114.34/31",
+          "2001:798:bb:2::39/126"
+        ],
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "xe-11/0/1.0"
+      }
+    ],
+    "imsid": 661769,
+    "monitored": false,
+    "name": "PS-VIE-AT-MANAGEMENT",
+    "scid": "7896eeff-f28a-43c6-b996-2c0a2ca6589a",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00357",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SWITCH"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/3/3.1303"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.1303"
+      }
+    ],
+    "imsid": 727383,
+    "monitored": true,
+    "name": "AMS-PAR-SCION-KREONET-SWITCH",
+    "scid": "789c62ae-17a7-4884-b568-0921e5c638d1",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02291",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 707222,
+    "monitored": false,
+    "name": "PRA-GROOVE",
+    "scid": "78bd5147-7f53-4cdb-8d34-2b489bc00453",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00278",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 712092,
+    "monitored": false,
+    "name": "HA-3D08FA5333",
+    "scid": "792c63e1-34a5-4f56-b20c-4ed6c10d049b",
+    "service_type": "GTS",
+    "sid": "GS-01174",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663048,
+    "monitored": false,
+    "name": "PS-DUB2-IE-IDRAC-VLAN23",
+    "scid": "794891b4-c231-4c7f-ba4f-a2f0c421f615",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00297",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 728875,
+    "monitored": true,
+    "name": "BRATISLAVA-BRATISLAVA-LAG-002(GEANT)",
+    "scid": "797b1a41-d2cf-4fc2-a406-6c0fdbbe151c",
+    "service_type": "ETHERNET",
+    "sid": "GA-01754",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "INTERNET2"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PSMP-GN-DRAC-PAR-FR.GEANT.ORG",
+        "port": "10GE-2"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/2/7.908"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.908"
+      }
+    ],
+    "imsid": 705419,
+    "monitored": false,
+    "name": "AMS-PAR-MISC-GEANT-INTERNET2-9940543",
+    "scid": "799fd4a7-a656-43b1-9617-7ede82be5456",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00654",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "CESNET-AMS-IX 07021 1GE",
+    "scid": "79a2b749-6cbf-440c-ba20-8a20d0d6935c",
+    "service_type": null,
+    "sid": "DS-13265",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 734321,
+    "monitored": true,
+    "name": "THE-THE-LAG",
+    "scid": "79b8ced7-4635-47b3-9d85-731b8cd6e229",
+    "service_type": "ETHERNET",
+    "sid": "GA-02429",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ASNET-AM"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae17"
+      }
+    ],
+    "imsid": 732121,
+    "monitored": true,
+    "name": "ASNET-AM-FRA-LAG",
+    "scid": "79f6436e-0b9d-4cd7-a886-b63a2d5fb3ec",
+    "service_type": "ETHERNET",
+    "sid": "GA-01953",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CERN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae21"
+      }
+    ],
+    "imsid": 701605,
+    "monitored": true,
+    "name": "CERN-LHCONE-LAG#1",
+    "scid": "79fc266a-7cc1-4be6-abf0-45f6332ae4d4",
+    "service_type": "ETHERNET",
+    "sid": "GA-01876",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "DFN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.245/30",
+          "2001:798:1::39/126"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae11.333"
+      }
+    ],
+    "imsid": 743293,
+    "monitored": true,
+    "name": "DFN-AP1-IAS",
+    "scid": "7a260ace-c8dc-4aa9-871f-bb850f35476d",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00566",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CARNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.zag.hr.geant.net",
+        "interface": "lag-22"
+      }
+    ],
+    "imsid": 747785,
+    "monitored": true,
+    "name": "CARNET-AP1-LAG",
+    "scid": "7a528025-c883-4b84-8682-506beae8de8e",
+    "service_type": "ETHERNET",
+    "sid": "GA-01865",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "JISC"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.lon2.uk.geant.net",
+        "interface": "lag-20"
+      }
+    ],
+    "imsid": 743307,
+    "monitored": true,
+    "name": "JISC-AP2-LAG",
+    "scid": "7a72e854-71ee-4674-a11b-4fefb1451e99",
+    "service_type": "ETHERNET",
+    "sid": "GA-01760",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 743167,
+    "monitored": true,
+    "name": "COR-COR-MGMT-LAG",
+    "scid": "7a7b34ba-5127-4e3a-8455-96cb5ccf7eeb",
+    "service_type": "ETHERNET",
+    "sid": "GA-02616",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [],
+    "imsid": 709009,
+    "monitored": false,
+    "name": "GRE-MULTICAST-TUNNEL-NSOAS",
+    "scid": "7ae12882-a04c-45f4-a0ed-56e1b03c95fc",
+    "service_type": "EUMETSAT GRE",
+    "sid": "GS-01088",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "172.18.24.1/24"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae2.103"
+      }
+    ],
+    "imsid": 736086,
+    "monitored": false,
+    "name": "DCN-MANAGEMENT-AMS-NL",
+    "scid": "7ae8bd27-b3ef-42c4-8ba1-4fa84fa52076",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00115",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "MICROSOFT-LAG-1",
+    "scid": "7afb0afb-e1c6-4f1c-ae22-cb2f06fb4a4c",
+    "service_type": null,
+    "sid": "GA-01798",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SINGAREN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "103.5.241.1/31",
+          "2401:c7c0:1:ffff::1/64"
+        ],
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/2/5.1000"
+      }
+    ],
+    "imsid": 661473,
+    "monitored": true,
+    "name": "UK-SINGAREN",
+    "scid": "7b155e69-a005-4e44-92f0-75e9fbb5f314",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00923",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663239,
+    "monitored": false,
+    "name": "KVMOIP-GEN-CH",
+    "scid": "7b24eac6-52f9-4746-b556-bfcea5c161fe",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00221",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.36"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28.4064"
+      }
+    ],
+    "imsid": 739666,
+    "monitored": true,
+    "name": "BELNET-MSER-ULB-EXPRESSROUTE-VLAN4064",
+    "scid": "7b596828-68b9-4f61-a528-86a41fa0e06e",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02364",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658672,
+    "monitored": false,
+    "name": "730XD-5-VSAN-TRAFFIC-LAG",
+    "scid": "7b7b5189-b528-4a5b-b8e7-8bd5db055dd5",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01688",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ae11.2707"
+      },
+      {
+        "hostname": "rt1.bil.es.geant.net",
+        "interface": "ae15.954"
+      }
+    ],
+    "imsid": 739389,
+    "monitored": false,
+    "name": "PSNC-REDIRIS-SLICES-UPV/EHU",
+    "scid": "7b7c6053-e5aa-40d7-93a4-b6a460006d94",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02493",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 677778,
+    "monitored": false,
+    "name": "PRA OOB LINK",
+    "scid": "7b958e63-8d5e-45fb-ad02-60de254c7799",
+    "service_type": "OOB IP LINK",
+    "sid": "GS-00414",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658919,
+    "monitored": true,
+    "name": "ZAGREB-ZAGREB-1GBE-004(ETH)",
+    "scid": "7b9ecea1-76c7-4b9c-b137-67dac01774a0",
+    "service_type": "ETHERNET",
+    "sid": "GA-01493",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "CERN-GVA-ExpressRoute-Vlan496-Backup |",
+    "scid": "7bfb4e87-7889-42b2-af4f-d96604bd1f06",
+    "service_type": null,
+    "sid": "DS-53035",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.fra.de.geant.net",
+        "interface": "ae4"
+      }
+    ],
+    "imsid": 658522,
+    "monitored": false,
+    "name": "FRANKFURT 15-FRANKFURT 15-LAG-063(GEANT)",
+    "scid": "7c17b242-19a2-46f9-a398-1c5f4601faf7",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01675",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "LIS-LON-IPTRUNK",
+    "scid": "7c5b783b-d0b0-40f7-9853-1d32a00adc06",
+    "service_type": null,
+    "sid": "DS-21969",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.242/31",
+          "2001:798:cc:1::cd/126"
+        ],
+        "hostname": "rt0.pra.cz.geant.net",
+        "interface": "lag-5.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.243/31",
+          "2001:798:cc:1::ce/126"
+        ],
+        "hostname": "rt0.vie.at.geant.net",
+        "interface": "lag-5.0"
+      }
+    ],
+    "imsid": 740751,
+    "monitored": true,
+    "name": "PRA-VIE-IPTRUNK",
+    "scid": "7c637317-27ad-4664-a891-07b87e18bf2b",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00059",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ae11.3220"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae12.3220"
+      }
+    ],
+    "imsid": 707007,
+    "monitored": true,
+    "name": "LON-POZ-GEANTOPEN-SINGAREN-CAE1-19113-VL3220-PIONIER",
+    "scid": "7c799a24-20a7-4f6b-8790-cfe023a70265",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00986",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 731189,
+    "monitored": false,
+    "name": "BUD-LJU-IPTRUNK",
+    "scid": "7c981d6b-2088-4829-92f0-a9c0b8f7e492",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00025",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "LIBNOVA-39743-DE",
+    "scid": "7ca61da3-b70a-4f35-a043-f9a26b3edf82",
+    "service_type": null,
+    "sid": "DS-53745",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-1/2/2.13"
+      }
+    ],
+    "imsid": 661561,
+    "monitored": false,
+    "name": "INFOBLOX-LON2-REPORTING-SERVER",
+    "scid": "7cc6392d-9e95-40fd-8113-2b7a2c9739b9",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00202",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "equipment": "LON01-GRV4",
+        "port": "1/1/3"
+      }
+    ],
+    "imsid": 731736,
+    "monitored": true,
+    "name": "DUB-LON-NORDUNET-23005",
+    "scid": "7ceba7db-944a-4308-a3bd-6b8afd572c90",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-02244",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "IUCC"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.100.6/31",
+          "2001:798::11/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae21.667"
+      }
+    ],
+    "imsid": 661931,
+    "monitored": false,
+    "name": "IUCC-AP1-CLS",
+    "scid": "7d02a985-90f5-4691-83cb-240909f5e510",
+    "service_type": "GEANT CLOUD PEERING",
+    "sid": "GS-00610",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 703117,
+    "monitored": true,
+    "name": "MAD-PAR-LAG",
+    "scid": "7d0caeb9-157d-42fb-93d5-dbff4ec9550e",
+    "service_type": "ETHERNET",
+    "sid": "GA-01784",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "HEANET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae34.2282"
+      },
+      {
+        "hostname": "rt0.dub.ie.geant.net",
+        "interface": "pwe-121097"
+      },
+      {
+        "hostname": "rt0.dub.ie.geant.net",
+        "interface": "lag-20:2282"
+      }
+    ],
+    "imsid": 747351,
+    "monitored": true,
+    "name": "HEANET-00630",
+    "scid": "7d1c5626-a05f-426e-9d37-21d2192a7467",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00630",
+    "speed": 0,
+    "status": "planned"
+  },
+  {
+    "customers": [
+      "SCION"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "xe-2/2/3.370"
+      },
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "xe-2/1/3.370"
+      },
+      {
+        "addresses": [
+          "10.0.3.254/24"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "irb.370"
+      }
+    ],
+    "imsid": 723797,
+    "monitored": false,
+    "name": "SCION-SCION-GEN-INTERNAL-VPN-VL370",
+    "scid": "7d6a39ca-0ca5-4440-8976-8e8213974c7f",
+    "service_type": "L3-VPN",
+    "sid": "GS-02214",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "FCCN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx2.lis.pt.geant.net",
+        "interface": "ae10.1945"
+      },
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.2"
+      }
+    ],
+    "imsid": 707126,
+    "monitored": true,
+    "name": "FCCN-NOVESBE-EXPRESSROUTE-VLAN1945",
+    "scid": "7d6b2364-5249-48a4-9276-8bd63d76fb94",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01142",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "MICROSOFT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae10"
+      }
+    ],
+    "imsid": 732184,
+    "monitored": true,
+    "name": "MICROSOFT-EXPRESSROUTE-FRA-LAG1",
+    "scid": "7d97dff1-2b69-4b59-9322-bec626fa48da",
+    "service_type": "ETHERNET",
+    "sid": "GA-01958",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae12.1391"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae13.50"
+      }
+    ],
+    "imsid": 714182,
+    "monitored": false,
+    "name": "PAR-PAR-GRID5000-RENATER-SWITCH-20026",
+    "scid": "7db186a5-68cc-4d34-bbe1-848a8b4e5a1f",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00750",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/2/3"
+      }
+    ],
+    "imsid": 733206,
+    "monitored": true,
+    "name": "LONDON 2-LONDON 2-10GBE-026(GEANT)",
+    "scid": "7e2e07a7-374e-462b-8140-5ad184a71bfd",
+    "service_type": "ETHERNET",
+    "sid": "GA-01328",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661997,
+    "monitored": false,
+    "name": "JUNOSSPACE-R720-DATA-PAR-FR",
+    "scid": "7e3c075c-8f4c-4add-bbe2-e748fb11ebd5",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00212",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661989,
+    "monitored": false,
+    "name": "JUNOSSPACE-R720-ESXI-PAR-FR",
+    "scid": "7e5db039-efa8-484c-ab75-8b386d199a6f",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00214",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 717189,
+    "monitored": true,
+    "name": "AMS-PAR-LOFAR-RENATER-NETHERLIGHT-10001-LL2",
+    "scid": "7e694f40-ed0f-499f-b0fb-81f8bfcd1219",
+    "service_type": "ETHERNET",
+    "sid": "GA-01212",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "JISC"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae10"
+      }
+    ],
+    "imsid": 659420,
+    "monitored": true,
+    "name": "JISC-AP1-LAG",
+    "scid": "7e755e02-c2ab-4ce9-ab3a-62f115c30632",
+    "service_type": "ETHERNET",
+    "sid": "GA-01845",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SWITCH"
+    ],
+    "endpoints": [],
+    "imsid": 705897,
+    "monitored": false,
+    "name": "PAR-LON-INTERNET2-SWITCH-19117",
+    "scid": "7e8f5fd8-e1dd-4bec-96a7-88622197ada0",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00746",
+    "speed": 322122547200,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "ae18"
+      }
+    ],
+    "imsid": 658657,
+    "monitored": false,
+    "name": "LON2-PRD-ESX12-VM-TRAFFIC",
+    "scid": "7ea43b05-0983-4b9b-b7cd-aea816792e0a",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01695",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708174,
+    "monitored": true,
+    "name": "BUDAPEST-BUDAPEST-ETHS-002(GEANT)",
+    "scid": "7ea4f007-e6b0-44c1-971c-c25e3c8d4585",
+    "service_type": "ETHERNET",
+    "sid": "GS-00295",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CERN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae21.121"
+      },
+      {
+        "hostname": "mx2.lis.pt.geant.net",
+        "interface": "ae11.121"
+      }
+    ],
+    "imsid": 713980,
+    "monitored": true,
+    "name": "GEN-LIS-CERN-REDCLARA-21073",
+    "scid": "7ef74bbc-99fe-45ba-9225-81c59a2f8bca",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00710",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SCION"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-0/1/6.2703"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae22.2703"
+      }
+    ],
+    "imsid": 737890,
+    "monitored": false,
+    "name": "FRA-LON-SCION-WACREN",
+    "scid": "7f01dc1e-40d1-46e8-93b4-09936fb7b1eb",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02496",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.fra.de.geant.net",
+        "interface": "lag-6"
+      }
+    ],
+    "imsid": 740464,
+    "monitored": true,
+    "name": "FRA-PRA-LAG",
+    "scid": "7f2fbdd3-4fc7-41fb-83f8-d0bd73a31373",
+    "service_type": "ETHERNET",
+    "sid": "GA-01944",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "109.105.102.98/30",
+          "2001:948:3:9::3/127"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5.4001"
+      }
+    ],
+    "imsid": 660550,
+    "monitored": true,
+    "name": "UK-NORDUNET-IX-2603",
+    "scid": "7f3748e7-5b19-4335-8d0d-479fe054cb24",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-00944",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/2/2"
+      },
+      {
+        "addresses": [
+          "62.40.106.146/31",
+          "2001:798:bb:2::59/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/2/2.0"
+      }
+    ],
+    "imsid": 708299,
+    "monitored": false,
+    "name": "PSMP-GN-MANAGEMENT-LON-UK-VLAN0",
+    "scid": "7f37a9cd-5b31-4271-a180-3597bbc505d8",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00358",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "AMT1.LON2.UK",
+        "port": "AE1.0"
+      },
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "ae7.0"
+      }
+    ],
+    "imsid": 744437,
+    "monitored": true,
+    "name": "LON2-LON2-AMT-RELAYLINK",
+    "scid": "7f86c2cc-f2f9-4882-ba99-67a6cfc5a243",
+    "service_type": "SERVER LINK",
+    "sid": "GS-02304",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "UTIC"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.140/31",
+          "2001:798:99:1::121/126"
+        ],
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae1.100"
+      }
+    ],
+    "imsid": 739336,
+    "monitored": true,
+    "name": "BUD-UTIC",
+    "scid": "7f87c2ff-d735-47da-b710-5b3bfcf5f6f7",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-02232",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "OMREN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.3333"
+      }
+    ],
+    "imsid": 734554,
+    "monitored": true,
+    "name": "NL-OMREN",
+    "scid": "7f8b26e4-e32f-495e-9c02-4d167fa77f16",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00900",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ARNES"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.9/30",
+          "2001:798:1::d/126"
+        ],
+        "hostname": "rt0.lju.si.geant.net",
+        "interface": "lag-20.333"
+      }
+    ],
+    "imsid": 745717,
+    "monitored": true,
+    "name": "ARNES-AP1-IAS",
+    "scid": "7f93759e-916e-4aaa-a2de-bbfccd7f0726",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00552",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "MICROSOFT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-21:3911"
+      }
+    ],
+    "imsid": 747632,
+    "monitored": true,
+    "name": "AMS-HAM-MSE-01150",
+    "scid": "7f99f83b-4ce6-4168-8671-5918d557d8fe",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-01150",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "MICROSOFT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21"
+      }
+    ],
+    "imsid": 735621,
+    "monitored": true,
+    "name": "NL-MICROSOFT-EXPRESSROUTE-LAG",
+    "scid": "7fadc83e-cee2-4288-88f8-07fe110fdfe2",
+    "service_type": "ETHERNET",
+    "sid": "GA-01911",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "LAT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae15.2301"
+      },
+      {
+        "hostname": "rt0.rig.lv.geant.net",
+        "interface": "pwe-219052"
+      },
+      {
+        "hostname": "rt0.rig.lv.geant.net",
+        "interface": "lag-20:2301"
+      }
+    ],
+    "imsid": 745938,
+    "monitored": true,
+    "name": "LOFAR-02584",
+    "scid": "7fe192d4-ecab-4382-9730-643794f8e21d",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02584",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 743328,
+    "monitored": true,
+    "name": "TAR-TAR-MGMT-LAG",
+    "scid": "7ffceedc-1b62-447c-9d68-6d654cc39ca0",
+    "service_type": "ETHERNET",
+    "sid": "GA-50005",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [],
+    "imsid": 659378,
+    "monitored": true,
+    "name": "RENATER-AP1-LAG",
+    "scid": "8004d11b-3eee-4f73-824f-23b1cccf510f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01822",
+    "speed": 322122547200,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 746052,
+    "monitored": true,
+    "name": "KAU-KAU-MGMT-LAG",
+    "scid": "802087d4-7a06-42e7-8f98-29705d05b803",
+    "service_type": "ETHERNET",
+    "sid": "GA-50065",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CARNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.25/30",
+          "2001:798:1::1d/126"
+        ],
+        "hostname": "rt0.zag.hr.geant.net",
+        "interface": "lag-22.333"
+      }
+    ],
+    "imsid": 747859,
+    "monitored": true,
+    "name": "CARNET-AP1-IAS",
+    "scid": "802da75d-9d40-41dd-8680-770942d47b8b",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00559",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "172.21.3.1/24"
+        ],
+        "hostname": "rt1.bil.es.geant.net",
+        "interface": "ae1.998"
+      }
+    ],
+    "imsid": 709869,
+    "monitored": false,
+    "name": "EX3400-MANAGEMENT-BIL-ES",
+    "scid": "80302663-1ba2-4077-ae12-b40ecbaa450e",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00148",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "WP6T3"
+    ],
+    "endpoints": [],
+    "imsid": 677361,
+    "monitored": true,
+    "name": "PARIS-BMS-SRV6-10GBE-001",
+    "scid": "804639ce-6e63-4398-ac41-8d3c70129578",
+    "service_type": "ETHERNET",
+    "sid": "GA-01380",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 723849,
+    "monitored": false,
+    "name": "ETHS-MX1.AMS.NL_GE-0/3/6.1000-MX1.LON.UK_GE-0/3/2.1000",
+    "scid": "805808b4-314b-4a1c-ae6d-468b60809575",
+    "service_type": "GEANT - GBS",
+    "sid": "GS-02219",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658984,
+    "monitored": true,
+    "name": "ATHENS-ATHENS-1GBE-005(ETH)",
+    "scid": "80818260-983d-4ae0-af01-4f0a7183148e",
+    "service_type": "ETHERNET",
+    "sid": "GA-01365",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ASREN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "ae17"
+      }
+    ],
+    "imsid": 659401,
+    "monitored": true,
+    "name": "UK-ASREN-LAG",
+    "scid": "8081ca8f-a9a0-4698-b5b5-bc23a8fbbb13",
+    "service_type": "ETHERNET",
+    "sid": "GA-01758",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661483,
+    "monitored": false,
+    "name": "LON-GROOVE-1",
+    "scid": "809a2673-e63a-4a10-9640-f2ec0c61e643",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00228",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ams.nl.geant.net",
+        "interface": "lag-3"
+      }
+    ],
+    "imsid": 744126,
+    "monitored": true,
+    "name": "AMS-BRU-LAG",
+    "scid": "80de734d-161a-4d9f-9dde-8f23d04df002",
+    "service_type": "ETHERNET",
+    "sid": "GA-01922",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CERN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.100.61/30",
+          "2001:798::75/126"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae22.668"
+      }
+    ],
+    "imsid": 701590,
+    "monitored": false,
+    "name": "CERN-AP1-EXT2-CLS",
+    "scid": "80e3b0e3-eb93-460a-81b3-f7389142051e",
+    "service_type": "GEANT CLOUD PEERING",
+    "sid": "GS-00599",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "KIFU"
+    ],
+    "endpoints": [],
+    "imsid": 712376,
+    "monitored": false,
+    "name": "MD-VPN-VRR-PARIS-KIFU-HU",
+    "scid": "80ec59e4-cb51-4261-915c-fd96aebbf819",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01046",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "RESTENA"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.100.56/31",
+          "2001:798::6d/126"
+        ],
+        "hostname": "mx1.fra.de.geant.net",
+        "interface": "ae18.667"
+      }
+    ],
+    "imsid": 677335,
+    "monitored": false,
+    "name": "RESTENA-AP1-CLS",
+    "scid": "8104ba0d-2bff-4f27-976c-24612171213b",
+    "service_type": "GEANT CLOUD PEERING",
+    "sid": "GS-00620",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "DFN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.249/30",
+          "2001:798:1::3d/126"
+        ],
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-20.333"
+      }
+    ],
+    "imsid": 745580,
+    "monitored": true,
+    "name": "DFN-AP2-IAS",
+    "scid": "810b158c-2010-45e0-9124-0cc2372542ef",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00567",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-20:354"
+      }
+    ],
+    "imsid": 745578,
+    "monitored": true,
+    "name": "AMS-HAM-JAXA-SINET-DFN-00640",
+    "scid": "813352cd-ae30-49d4-b589-60c56a4aceb1",
+    "service_type": "ETHERNET",
+    "sid": "GS-00640",
+    "speed": 644245094400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/3/1"
+      }
+    ],
+    "imsid": 727948,
+    "monitored": true,
+    "name": "PARIS 007B-PARIS 007B-10GBE-014(GEANT)",
+    "scid": "8134740b-7497-4398-ac94-7c1ba8564303",
+    "service_type": "ETHERNET",
+    "sid": "GA-01394",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RENAM"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.127.176/31",
+          "2001:798:99:1::101/126"
+        ],
+        "hostname": "rt1.chi.md.geant.net",
+        "interface": "ae10.100"
+      }
+    ],
+    "imsid": 714072,
+    "monitored": true,
+    "name": "RENAM-AP1",
+    "scid": "81673258-0f12-44c4-b5bb-4b7fb25761a9",
+    "service_type": "GEANT IP",
+    "sid": "GS-00500",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "KIFU"
+    ],
+    "endpoints": [],
+    "imsid": 663038,
+    "monitored": true,
+    "name": "KIFU-BGP-LU-COC",
+    "scid": "8167bb93-f7da-4157-89a5-68a04e1d5b72",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01010",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SINGAREN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/2/5"
+      },
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/2/5.3174"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.3174"
+      }
+    ],
+    "imsid": 746484,
+    "monitored": true,
+    "name": "SINGAREN-02647",
+    "scid": "816b7cf6-9aea-4717-b053-1027251e2aed",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02647",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ROEDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae21"
+      }
+    ],
+    "imsid": 679566,
+    "monitored": true,
+    "name": "ROEDUNET-AP2-LAG",
+    "scid": "819988f7-c21a-4aa4-afab-ca4249174180",
+    "service_type": "ETHERNET",
+    "sid": "GA-01850",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "FCCN_IPP_ExpressRoute_Vlan1943",
+    "scid": "81c847b7-a7b7-4d55-b9a3-9f964f1fd66f",
+    "service_type": null,
+    "sid": "DS-51606",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662327,
+    "monitored": true,
+    "name": "GENEVA-GENEVA-10GBE-006(GEANT)",
+    "scid": "81cadb43-1e06-42f0-9d2e-91b3a2cdcf0b",
+    "service_type": "ETHERNET",
+    "sid": "GA-01539",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 745052,
+    "monitored": true,
+    "name": "LJU-LJU-MGMT-LAG",
+    "scid": "81ccb3e9-3f68-4e3f-8731-7e50454f12ea",
+    "service_type": "ETHERNET",
+    "sid": "GA-50059",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ACONET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.1/30",
+          "2001:798:0010:10dd::1/126"
+        ],
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae15.51"
+      }
+    ],
+    "imsid": 660433,
+    "monitored": true,
+    "name": "ACONET-AP1",
+    "scid": "81e28a44-51a9-4147-a14e-da736ab89266",
+    "service_type": "GEANT IP",
+    "sid": "GS-00422",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.vie.at.geant.net",
+        "interface": "lag-8"
+      }
+    ],
+    "imsid": 740789,
+    "monitored": true,
+    "name": "BRA-VIE-LAG",
+    "scid": "81edaf42-703d-4eaf-a043-00e6e52b0bbc",
+    "service_type": "ETHERNET",
+    "sid": "GA-01868",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "mx1.vie.at - Traffic - ae22.0 - SRV_CLS PRIVATE MICROSOFT SRF9937989 | ASN8075",
+    "scid": "8206b4ab-163a-4edb-97cf-0b6852ca5865",
+    "service_type": null,
+    "sid": "DS-37989",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GRNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.70/31",
+          "2001:798:111:1::99/126"
+        ],
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "lag-22.111"
+      }
+    ],
+    "imsid": 745496,
+    "monitored": true,
+    "name": "GRNET-ATH-LHCONE",
+    "scid": "8225dec7-027c-41c0-94a4-0d24eb5214f7",
+    "service_type": "L3-VPN",
+    "sid": "GS-00827",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.fra.de.geant.net",
+        "interface": "ae1"
+      }
+    ],
+    "imsid": 658529,
+    "monitored": false,
+    "name": "FRANKFURT 15-FRANKFURT 15-LAG-050(GEANT)",
+    "scid": "822aec85-d3c6-4d0a-94a0-230f31b967f7",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01673",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "URAN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.kie.ua.geant.net",
+        "interface": "ae10"
+      }
+    ],
+    "imsid": 713991,
+    "monitored": true,
+    "name": "URAN-AP1-LAG",
+    "scid": "822e2451-8daa-4786-a150-c2840385d01f",
+    "service_type": "ETHERNET",
+    "sid": "GA-02024",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CYNET"
+    ],
+    "endpoints": [],
+    "imsid": 708703,
+    "monitored": false,
+    "name": "CYNET-GN-PRACE-VPN-PROXY-FRANKFURT-L3VPN_BACKUP",
+    "scid": "8259c10d-2364-48be-a449-111aae20b778",
+    "service_type": "MD-VPN (PROXY)",
+    "sid": "GS-01064",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-1/0/24"
+      }
+    ],
+    "imsid": 658647,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-042(ETH)",
+    "scid": "825f9ca7-1d86-432c-a268-3e04e24f2ba9",
+    "service_type": "ETHERNET",
+    "sid": "GA-01225",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RENAM"
+    ],
+    "endpoints": [],
+    "imsid": 663023,
+    "monitored": false,
+    "name": "RENAM-AP3",
+    "scid": "8267cffd-de38-488b-9965-8ae48fb1f628",
+    "service_type": "GEANT IP",
+    "sid": "GS-00502",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708271,
+    "monitored": false,
+    "name": "FLOWMON-DDOS-FRA-DE-MANAGEMENT",
+    "scid": "8270bae9-a9ca-450d-bce2-c3478231f6a8",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00164",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "FCCN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.44/31",
+          "2001:798:1::209/126"
+        ],
+        "hostname": "rt1.por.pt.geant.net",
+        "interface": "ae10.333"
+      }
+    ],
+    "imsid": 712361,
+    "monitored": true,
+    "name": "FCCN-AP2-IAS",
+    "scid": "827acbd6-7a54-4605-a645-4d5ff4e8e618",
+    "service_type": "GWS - INDIRECT",
+    "sid": "GS-00528",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "xe-1/3/2"
+      }
+    ],
+    "imsid": 658729,
+    "monitored": true,
+    "name": "POZNAN-POZNAN-10GBE-001(ETH)",
+    "scid": "82821bae-91ef-400c-87e0-43008fd38005",
+    "service_type": "ETHERNET",
+    "sid": "GA-01372",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "pre-prod-rr-20210716-2 |",
+    "scid": "82bc6112-854a-409c-a41c-70d70ff9ae76",
+    "service_type": null,
+    "sid": "GS-01163",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "ge-0/0/4"
+      }
+    ],
+    "imsid": 658774,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-1GBE-007(ETH)",
+    "scid": "82eba9c4-6ad2-476e-b76b-4c9a8fb75974",
+    "service_type": "ETHERNET",
+    "sid": "GA-01505",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5.3240"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae12.3240"
+      }
+    ],
+    "imsid": 742671,
+    "monitored": true,
+    "name": "LON-LON-GEANTOPEN-HARNET-NORDUNET",
+    "scid": "83025ba4-4006-4e68-b646-340840256434",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-02606",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mil2.it.geant.net",
+        "interface": "xe-1/1/3"
+      },
+      {
+        "hostname": "mx1.mil2.it.geant.net",
+        "interface": "xe-1/1/3.1025"
+      }
+    ],
+    "imsid": 661571,
+    "monitored": true,
+    "name": "SDN-BOD-BR53-OF-8-HOST-G-ETH4",
+    "scid": "83076978-7838-4341-9f6a-497228bd39cd",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00759",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CSTNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.1009"
+      }
+    ],
+    "imsid": 734574,
+    "monitored": true,
+    "name": "NL-NETHERLIGHT-CSTNET-KAUST-2",
+    "scid": "830b6f63-d7e8-4a29-9cf7-65e4d5121b37",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-02393",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "AARNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-1/3/0.3920"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.3920"
+      }
+    ],
+    "imsid": 728403,
+    "monitored": true,
+    "name": "AMS-LON-AARNET-SINGAREN-23049",
+    "scid": "8354ba35-2896-49d8-9835-fdd00ef3c5fe",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02342",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-0/1/6"
+      }
+    ],
+    "imsid": 732318,
+    "monitored": true,
+    "name": "SCION1ILO.FRA.DE-EXTERNAL-LL",
+    "scid": "835770d2-6495-48db-b20e-adb021d580c7",
+    "service_type": "ETHERNET",
+    "sid": "GA-02196",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.bil.es.geant.net",
+        "interface": "ae1"
+      }
+    ],
+    "imsid": 709429,
+    "monitored": true,
+    "name": "LAG-SW1.BIL.ES_AE1",
+    "scid": "837678ea-80c6-4770-a213-31e4e76dc100",
+    "service_type": "ETHERNET",
+    "sid": "GA-02070",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 732469,
+    "monitored": false,
+    "name": "VEEAMSERVER-BRA",
+    "scid": "837d3bd7-e184-43a0-b069-f2c3901dcd0d",
+    "service_type": "POP LAN LINK",
+    "sid": "GS-00082",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "JISC"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.3250"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae10.3250"
+      }
+    ],
+    "imsid": 732708,
+    "monitored": true,
+    "name": "AMS-LON-GEANTOPEN-JISC-NEA3R",
+    "scid": "83847c9b-4410-4ae9-844f-fa4f24f1d012",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-02400",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661481,
+    "monitored": false,
+    "name": "PS-PRA-CZ-IDRAC",
+    "scid": "839429c4-c3f1-414f-8111-bf0e9bbd6084",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00348",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [],
+    "imsid": 679360,
+    "monitored": true,
+    "name": "GEANT-CORPORATE-VIAVODAFONE",
+    "scid": "83a1be36-14a0-4802-ab33-0f60d5b5e33c",
+    "service_type": "CORPORATE",
+    "sid": "GS-00467",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mil2.it.geant.net",
+        "interface": "xe-1/1/3"
+      },
+      {
+        "hostname": "mx1.mil2.it.geant.net",
+        "interface": "xe-1/1/3.1033"
+      }
+    ],
+    "imsid": 662000,
+    "monitored": true,
+    "name": "SDN-BOD-BR53-OF-9-HOST-H-ETH2",
+    "scid": "83bac9ec-0015-431a-981c-2e5fb3697a96",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00760",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "DFN"
+    ],
+    "endpoints": [],
+    "imsid": 715058,
+    "monitored": false,
+    "name": "AMS-FRA-DFN-SURF-21092",
+    "scid": "83c84616-5c2b-45b8-96af-fc63bd1a42b2",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00634",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.bra.sk.geant.net",
+        "interface": "ae13"
+      }
+    ],
+    "imsid": 733186,
+    "monitored": true,
+    "name": "SANET-AP2-LAG",
+    "scid": "83e725fb-28c5-4cf4-b7a4-da09b96ccd46",
+    "service_type": "ETHERNET",
+    "sid": "GA-02437",
+    "speed": 0,
+    "status": "planned"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.fra.de.geant.net",
+        "interface": "ae0"
+      }
+    ],
+    "imsid": 658684,
+    "monitored": true,
+    "name": "FRANKFURT 15-FRANKFURT 15-LAG-057(GEANT)",
+    "scid": "83f1f939-e914-456e-9170-0f88335c7019",
+    "service_type": "ETHERNET",
+    "sid": "GA-01672",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae12.3506"
+      },
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ae11.3506"
+      }
+    ],
+    "imsid": 745530,
+    "monitored": false,
+    "name": "RARE-02643",
+    "scid": "83f68ac7-b9e4-4dbc-b44f-3f838ef20e6f",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02643",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ULAKBIM"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.129/30",
+          "2001:798:2c:10aa::5/126"
+        ],
+        "hostname": "rt0.the.gr.geant.net",
+        "interface": "lag-21.100"
+      }
+    ],
+    "imsid": 745292,
+    "monitored": true,
+    "name": "ULAKBIM-AP1",
+    "scid": "83f7a1e5-7ad0-433f-9841-f8b72286767c",
+    "service_type": "GEANT IP",
+    "sid": "GS-00517",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ROEDUNET"
+    ],
+    "endpoints": [],
+    "imsid": 724164,
+    "monitored": false,
+    "name": "BUC-CHI-EAP-RENAM-ROEDUNET-22088",
+    "scid": "83ff3a93-e82c-44c5-bbe1-aa45ccb40f88",
+    "service_type": "GEANT - GBS",
+    "sid": "GS-02213",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658938,
+    "monitored": true,
+    "name": "MILAN 2 CALDERA-MILAN 2 CALDERA-1GBE-007(ETH)",
+    "scid": "84162e9d-1aaa-46f0-852e-d811bcba2e36",
+    "service_type": "ETHERNET",
+    "sid": "GA-01523",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae1.3005"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae1.3502"
+      },
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ae11.3502"
+      }
+    ],
+    "imsid": 732564,
+    "monitored": false,
+    "name": "RARE-P4-B1-FRA",
+    "scid": "841a43e5-7bf9-417f-94f0-27ebacd071a2",
+    "service_type": "L2SERVICES",
+    "sid": "GS-02640",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "JISC"
+    ],
+    "endpoints": [],
+    "imsid": 705435,
+    "monitored": true,
+    "name": "ATH-LON-CONTENT-GRNET-JANET-15031",
+    "scid": "843457e2-f26c-46ad-b3a3-32c357754143",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00665",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.41"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28.4068"
+      }
+    ],
+    "imsid": 740640,
+    "monitored": true,
+    "name": "BELNET-AZDELTA-EXPRESSROUTE-VLAN4068",
+    "scid": "843c1da0-49e7-47ff-823e-12955c336e10",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02565",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658687,
+    "monitored": false,
+    "name": "730XD-2-VM-TRAFFIC-LAG-PAR",
+    "scid": "844c2d7d-6a47-4803-8d50-c77572e8be0d",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01724",
+    "speed": 32212254720,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658567,
+    "monitored": false,
+    "name": "730XD-3-SLOT0-PORT1-VMNIC0-PAR",
+    "scid": "844f2cc4-d54b-47ea-b222-9cf6b9cd5c3b",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01288",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.AM.OFFICE",
+        "port": "GE-1/0/5"
+      }
+    ],
+    "imsid": 658392,
+    "monitored": true,
+    "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-008(ETH)",
+    "scid": "845412e3-ef2b-40fe-a3ec-56d2b2ffad0d",
+    "service_type": "ETHERNET",
+    "sid": "GA-01273",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "MARNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.zag.hr.geant.net",
+        "interface": "lag-23"
+      }
+    ],
+    "imsid": 747905,
+    "monitored": true,
+    "name": "MARNET-AP2-LAG",
+    "scid": "845c8c48-949a-4d95-8afb-8b0e1ffd7b05",
+    "service_type": "ETHERNET",
+    "sid": "GA-01862",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "KANREN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.109.156/31",
+          "2001:798:dd:a::1/126"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "gr-3/0/0.24"
+      }
+    ],
+    "imsid": 732676,
+    "monitored": false,
+    "name": "GRE-MULTICAST-TUNNEL-KANREN",
+    "scid": "84aea626-8928-4959-a0dc-5c153c17cb5c",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-02377",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708204,
+    "monitored": false,
+    "name": "PS-LHCONE-BWCTL-AMS-NL",
+    "scid": "84c7914c-e298-4f0f-8f70-f78b591031ca",
+    "service_type": "L3-VPN",
+    "sid": "GS-00845",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SCION"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "xe-2/2/4.1629"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae19.1629"
+      }
+    ],
+    "imsid": 736653,
+    "monitored": false,
+    "name": "GEN-PAR-SCION-SCION-INTERNET2-2",
+    "scid": "84cd86c9-63bc-422c-907f-6b9b4896000b",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02311",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT-IT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.101"
+      },
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "ae31.0"
+      },
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "ae16.101"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae34.101"
+      }
+    ],
+    "imsid": 705901,
+    "monitored": true,
+    "name": "AMS-OFFICE-TO-LON2-(FOR-EDUVPN)-L2CIRCUIT",
+    "scid": "84d8b53e-8337-4044-bc02-60a111eb20ac",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00652",
+    "speed": 150323855360,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "DFN"
+    ],
+    "endpoints": [],
+    "imsid": 712363,
+    "monitored": true,
+    "name": "MD-VPN-VRR-LJUBLJANA-DFN-1-DE",
+    "scid": "851b5aa9-3607-4451-874a-8c30ca7691bc",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01015",
+    "speed": 322122547200,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.86/31",
+          "2001:798:cc::91/126"
+        ],
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae5.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.87/31",
+          "2001:798:cc::92/126"
+        ],
+        "hostname": "rt0.mar.fr.geant.net",
+        "interface": "lag-5.0"
+      }
+    ],
+    "imsid": 742606,
+    "monitored": false,
+    "name": "MAR-MAR-IPTRUNK",
+    "scid": "851d5330-924d-4e40-ac64-033e077afee4",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02590",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "MARWAN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "ae15"
+      }
+    ],
+    "imsid": 733854,
+    "monitored": true,
+    "name": "UK-MARWAN-LAG",
+    "scid": "853f0c33-24fc-491d-9e62-2680657113b5",
+    "service_type": "ETHERNET",
+    "sid": "GA-02449",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 730601,
+    "monitored": true,
+    "name": "COR-COR-LAG",
+    "scid": "85585083-26d0-47ea-a18c-b7b98e3e9bb1",
+    "service_type": "ETHERNET",
+    "sid": "GA-02405",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GARR"
+    ],
+    "endpoints": [
+      {
+        "equipment": "MIL01-GRV1",
+        "port": "1/1/5"
+      },
+      {
+        "equipment": "GEN01-GRV3",
+        "port": "1/1/5"
+      }
+    ],
+    "imsid": 669629,
+    "monitored": true,
+    "name": "GEN-MIL1-LHC-CERN-GARR-18061",
+    "scid": "855d1ab8-fa8d-4e25-9bac-006cca9eb287",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-00795",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CERN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "xe-2/0/0.1200"
+      },
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae12.1200"
+      }
+    ],
+    "imsid": 706977,
+    "monitored": true,
+    "name": "GEN-GEN-GARR-CERNLIGHT-CERN-GARR-16034",
+    "scid": "856b4cd2-49dc-480b-9c68-d795fe3cd58b",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00709",
+    "speed": 332859965440,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.kau.lt.geant.net",
+        "interface": "lag-4"
+      }
+    ],
+    "imsid": 746515,
+    "monitored": true,
+    "name": "KAU-RIG-LAG",
+    "scid": "85813ab7-6ef9-43ed-846b-7ea903a71b74",
+    "service_type": "ETHERNET",
+    "sid": "GA-02021",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx2.lis.pt.geant.net",
+        "interface": "ae4"
+      }
+    ],
+    "imsid": 712768,
+    "monitored": true,
+    "name": "LIS-MAD-LAG-200G",
+    "scid": "85afcdd4-6536-41fb-b1f4-606089b144b7",
+    "service_type": "ETHERNET",
+    "sid": "GA-02002",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [],
+    "imsid": 661259,
+    "monitored": true,
+    "name": "RENATER-BGP-LU-COC-AP1",
+    "scid": "85b359e9-e675-4f03-bff8-a25b492e821b",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01058",
+    "speed": 322122547200,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [],
+    "imsid": 678860,
+    "monitored": true,
+    "name": "AMSTERDAM-AMSTERDAM-10GBE-043(GTS)",
+    "scid": "85dc5dd0-f41e-4b12-bbd9-e005d8125d78",
+    "service_type": "ETHERNET",
+    "sid": "GA-01568",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708185,
+    "monitored": true,
+    "name": "PHY INFRASTRUCTURE | TO SRX2",
+    "scid": "85e09623-a596-4319-a3b4-c991620ccb1e",
+    "service_type": "ETHERNET",
+    "sid": "GS-00382",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708710,
+    "monitored": false,
+    "name": "POZ-VIE-IPTRUNK",
+    "scid": "860f1798-281f-49ef-be97-e4d8e632c78e",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00058",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [],
+    "imsid": 662191,
+    "monitored": true,
+    "name": "HAMBURG-HAMBURG-1GBE-007(ETH)",
+    "scid": "86161523-6643-4977-bbf4-307f4bcc2957",
+    "service_type": "ETHERNET",
+    "sid": "GA-01641",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "172.18.28.1/24"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5.991"
+      }
+    ],
+    "imsid": 714243,
+    "monitored": false,
+    "name": "DCN-MANAGEMENT-COP-DK",
+    "scid": "8621135c-0ecb-4968-8c69-4f871ff9560b",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00129",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.the.gr.geant.net",
+        "interface": "lag-1"
+      }
+    ],
+    "imsid": 745463,
+    "monitored": true,
+    "name": "ATH2-THE-LAG",
+    "scid": "862588c4-e0cd-459a-9b2d-15ddec230fb4",
+    "service_type": "ETHERNET",
+    "sid": "GA-02423",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 678077,
+    "monitored": true,
+    "name": "AMSTERDAM-AMSTERDAM-10GBE-038(GEANT)",
+    "scid": "86296664-ec93-43c4-b286-63f42c968431",
+    "service_type": "ETHERNET",
+    "sid": "GA-01753",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/2/5"
+      }
+    ],
+    "imsid": 727946,
+    "monitored": true,
+    "name": "PARIS 007B-PARIS 007B-10GBE-013(GEANT)",
+    "scid": "862d832f-f24b-4b65-9c98-6611d980af8c",
+    "service_type": "ETHERNET",
+    "sid": "GA-01399",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "2001:798:99:1::15/126"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae30.106"
+      }
+    ],
+    "imsid": 734114,
+    "monitored": true,
+    "name": "NL-ESNET-IPV6",
+    "scid": "86397a41-6ca8-4da8-9381-1995a90aeb23",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00890",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658525,
+    "monitored": false,
+    "name": "LON2-PRD-ESX02-VSAN-LAG",
+    "scid": "865c4406-4d6a-4d7d-b3e5-d51459d6cf11",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01707",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [],
+    "imsid": 736760,
+    "monitored": false,
+    "name": "EUMET-JEUNO-PAR-DENV-16026",
+    "scid": "865ed9a1-705f-4e63-800f-6dfa5db0391c",
+    "service_type": "EUMETSAT INTERNATIONAL",
+    "sid": "GS-00456",
+    "speed": 429496729600,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "172.18.16.253/24"
+        ],
+        "hostname": "rt1.chi.md.geant.net",
+        "interface": "ae2.103"
+      }
+    ],
+    "imsid": 713270,
+    "monitored": false,
+    "name": "DCN-MANAGEMENT-CHI1-MD",
+    "scid": "86684d3e-9313-4f58-9997-94935d72bb72",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00127",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658960,
+    "monitored": true,
+    "name": "LONDON-LONDON-1GBE-006(ETH)",
+    "scid": "86af0281-3c8e-4f33-91d4-2f8d561af21b",
+    "service_type": "ETHERNET",
+    "sid": "GA-01473",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661895,
+    "monitored": false,
+    "name": "PS-LON2-UK-IDRAC",
+    "scid": "86b5db5a-3d25-420c-b04b-aee87f8b552d",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00324",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GRENA"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.127.184/31",
+          "2001:798:99:1::a9/126"
+        ],
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae20.200"
+      }
+    ],
+    "imsid": 718130,
+    "monitored": true,
+    "name": "GRENA-AP1",
+    "scid": "86ba43f3-8267-4f28-9d71-3ea838f87436",
+    "service_type": "GEANT IP",
+    "sid": "GS-01178",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662509,
+    "monitored": true,
+    "name": "TELIA-BUD-LAG",
+    "scid": "86beccbc-6d0f-4c0b-a25d-9d1f607ba103",
+    "service_type": "ETHERNET",
+    "sid": "GA-01901",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.par.fr.geant.net",
+        "interface": "ae3"
+      }
+    ],
+    "imsid": 658520,
+    "monitored": true,
+    "name": "LAG-QFX.PAR.FR_AE3",
+    "scid": "86db4eba-8291-4a14-8c83-f8cdbc5eddb9",
+    "service_type": "ETHERNET",
+    "sid": "GA-01716",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-0/0/13"
+      }
+    ],
+    "imsid": 658494,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-022(ETH)",
+    "scid": "86f708d9-b46e-4a66-bf38-5b21f2a85b51",
+    "service_type": "ETHERNET",
+    "sid": "GA-01223",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.dub.ie.geant.net",
+        "interface": "lag-3"
+      }
+    ],
+    "imsid": 747266,
+    "monitored": true,
+    "name": "COR-DUB-LAG",
+    "scid": "871a8735-441a-45dd-8e51-b8301f9574a5",
+    "service_type": "ETHERNET",
+    "sid": "GA-02385",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ACONET"
+    ],
+    "endpoints": [],
+    "imsid": 709734,
+    "monitored": true,
+    "name": "ACONET EUMETCAST AP2",
+    "scid": "873267c4-c27f-4101-b531-9f947a4a1a14",
+    "service_type": "EUMETSAT TERRESTRIAL",
+    "sid": "GS-01093",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "ge-0/1/0"
+      }
+    ],
+    "imsid": 732266,
+    "monitored": true,
+    "name": "LONDON 2-LONDON 2-1GBE-009(GEANT)",
+    "scid": "874145d3-c8bc-47dc-b4d0-9938acded641",
+    "service_type": "ETHERNET",
+    "sid": "GA-01508",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.69/31",
+          "2001:798:cc::6e/126"
+        ],
+        "hostname": "rt0.par.fr.geant.net",
+        "interface": "lag-5.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.68/31",
+          "2001:798:cc::6d/126"
+        ],
+        "hostname": "rt0.cor.ie.geant.net",
+        "interface": "lag-2.0"
+      }
+    ],
+    "imsid": 747412,
+    "monitored": true,
+    "name": "COR-PAR-IPTRUNK",
+    "scid": "8785501b-61c0-4b90-8bf3-e81f266c1a2e",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02477",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [],
+    "imsid": 718080,
+    "monitored": true,
+    "name": "LON-LON-GEANTOPEN-PIONIER-TENET-18067",
+    "scid": "87991956-7e39-43c3-bf51-0ad7b91fb582",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00980",
+    "speed": 118111600640,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 732322,
+    "monitored": true,
+    "name": "FRANKFURT-FRANKFURT-100MB-001(GEANT)",
+    "scid": "87a0d9f4-1988-4041-ba04-9949493b7efe",
+    "service_type": "ETHERNET",
+    "sid": "GA-01613",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-0/0/14"
+      }
+    ],
+    "imsid": 658388,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-003(ETH)",
+    "scid": "87cc0d51-5aa3-430b-9bfa-971da7f4dac3",
+    "service_type": "ETHERNET",
+    "sid": "GA-01224",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.102/31",
+          "2001:798:cc::9d/126"
+        ],
+        "hostname": "rt1.por.pt.geant.net",
+        "interface": "ae4.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.103/31",
+          "2001:798:cc::9e/126"
+        ],
+        "hostname": "rt0.por.pt.geant.net",
+        "interface": "lag-4.0"
+      }
+    ],
+    "imsid": 742668,
+    "monitored": false,
+    "name": "POR-POR-IPTRUNK",
+    "scid": "87d24d3e-1355-400f-9563-b0c9f5c2194c",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02587",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "xe-9/0/3.3921"
+      },
+      {
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-21:3921"
+      }
+    ],
+    "imsid": 747548,
+    "monitored": false,
+    "name": "AMS-HAM-02430",
+    "scid": "87d940f2-109f-4227-ab60-b9fdd5fad208",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02430",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [
+      {
+        "equipment": "AMS01-GRV4",
+        "port": "1/2/3"
+      },
+      {
+        "equipment": "FRA01-GRV4",
+        "port": "1/2/3"
+      },
+      {
+        "equipment": "FRA01-GRV4",
+        "port": "1/2/5"
+      },
+      {
+        "equipment": "DIGITAL REALTY A-END",
+        "port": "NL261248"
+      },
+      {
+        "equipment": "DIGITAL REALTY Z-END",
+        "port": "NL261248"
+      }
+    ],
+    "imsid": 739820,
+    "monitored": true,
+    "name": "AMS-POZ-PSNC-24052-1",
+    "scid": "87e98ecc-ec65-4b29-a485-9c5ef70ed5fd",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-02549",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.vie.at.geant.net",
+        "interface": "lag-9"
+      }
+    ],
+    "imsid": 740788,
+    "monitored": true,
+    "name": "BUD-VIE-LAG",
+    "scid": "881bb349-3edf-449d-8289-cd17c2b2cfdb",
+    "service_type": "ETHERNET",
+    "sid": "GA-01853",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.29"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28.4088"
+      }
+    ],
+    "imsid": 739665,
+    "monitored": true,
+    "name": "BELNET-UCLOUVAIN-EXPRESSROUTE-VLAN4088",
+    "scid": "881d13f0-688a-40f3-83cf-487b2736fadb",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02161",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663177,
+    "monitored": false,
+    "name": "FRA-GROOVE-1",
+    "scid": "884a6a26-f185-4159-a5a8-e0a744ef2980",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00172",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.125/30",
+          "2001:798:1::99/126"
+        ],
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-22.334"
+      }
+    ],
+    "imsid": 747602,
+    "monitored": true,
+    "name": "PIONIER-AP2-IAS",
+    "scid": "8856e1cf-135a-458b-b3f7-42bf9622aacf",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00580",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GRNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "lag-22"
+      }
+    ],
+    "imsid": 745465,
+    "monitored": true,
+    "name": "GRNET-LHCONE-LAG",
+    "scid": "8875d1b6-8980-4862-a0a7-9f36675817ac",
+    "service_type": "ETHERNET",
+    "sid": "GA-01364",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 743133,
+    "monitored": true,
+    "name": "DUB-DUB-MGMT-LAG",
+    "scid": "88880cd3-6ba5-41ac-9d2f-7c7da0a7e651",
+    "service_type": "ETHERNET",
+    "sid": "GA-02619",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [
+      {
+        "hostname": "srx2.am.office.geant.net",
+        "interface": "fxp0"
+      },
+      {
+        "addresses": [
+          "172.18.1.2/24"
+        ],
+        "hostname": "srx2.am.office.geant.net",
+        "interface": "fxp0.0"
+      }
+    ],
+    "imsid": 708157,
+    "monitored": false,
+    "name": "SRX2-AMS-FXP0",
+    "scid": "888bb836-5328-43d7-bcf7-055af16308c3",
+    "service_type": "CORPORATE",
+    "sid": "GS-01749",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "FCCN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.60/31",
+          "2001:798:111:1::55/126"
+        ],
+        "hostname": "rt1.por.pt.geant.net",
+        "interface": "ae10.1990"
+      }
+    ],
+    "imsid": 730599,
+    "monitored": true,
+    "name": "FCCN-AP2-POR-LHCONE",
+    "scid": "889e2ed8-43d6-42b2-b14c-4e634a625915",
+    "service_type": "L3-VPN",
+    "sid": "GS-02402",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [
+      {
+        "equipment": "MX1.LIS.PT",
+        "port": "AE0.0"
+      },
+      {
+        "hostname": "mx2.lis.pt.geant.net",
+        "interface": "ae1.0"
+      }
+    ],
+    "imsid": 708718,
+    "monitored": false,
+    "name": "LIS-LIS-IPTRUNK",
+    "scid": "88adf39a-8218-4139-811f-10be7cdd8289",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00047",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "TS1.RIG.LV.GEANT.NET(OPENGEAR)",
+        "port": "NET1"
+      }
+    ],
+    "imsid": 677780,
+    "monitored": false,
+    "name": "RIG OOB LINK",
+    "scid": "88b08e3e-1131-45be-95d5-6626c18e15c9",
+    "service_type": "OOB IP LINK",
+    "sid": "GS-00415",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GARR"
+    ],
+    "endpoints": [],
+    "imsid": 663201,
+    "monitored": true,
+    "name": "GARR-BGP-LU-COC-AP2",
+    "scid": "88c1c92d-5a7d-4952-8786-e3cc0ac9fa38",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01006",
+    "speed": 322122547200,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 732263,
+    "monitored": true,
+    "name": "PARIS 007B-PARIS 007B-1GBE-028(GEANT)",
+    "scid": "88cdb942-9fc7-470b-9b06-3fe706893e9c",
+    "service_type": "ETHERNET",
+    "sid": "GA-01405",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.34"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-124051"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20:4068"
+      }
+    ],
+    "imsid": 744225,
+    "monitored": true,
+    "name": "MSERIZIV-02520",
+    "scid": "88d17665-1901-4efc-aadc-3a1750cc4582",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02520",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.1/31",
+          "2001:798:cc::2/126"
+        ],
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae7.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.0/31",
+          "2001:798:cc::1/126"
+        ],
+        "hostname": "rt1.buc.ro.geant.net",
+        "interface": "ae7.0"
+      }
+    ],
+    "imsid": 730444,
+    "monitored": true,
+    "name": "BUC-BUD-IPTRUNK",
+    "scid": "88df9c5e-1866-4a07-9012-846e2192d7ca",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00021",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "FACEBOOK"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "157.240.84.129/31",
+          "2620:0:1cff:dead:beee::14b3/127"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae47.0"
+      }
+    ],
+    "imsid": 737788,
+    "monitored": true,
+    "name": "FACEBOOK-32934-FRA-PCDE-90606625",
+    "scid": "89192920-9efd-4f50-9f0d-48abcf8863d3",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-02484",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662199,
+    "monitored": true,
+    "name": "GENEVA-GENEVA-1GBE-005(ETH)",
+    "scid": "896b4047-82bf-408c-a2b5-cf1b875a4e3f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01542",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661417,
+    "monitored": false,
+    "name": "ETHS-MX1.LON2.UK_GE-0/0/2.22",
+    "scid": "89700494-98f1-486e-b5b9-f1703bc05989",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00326",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "172.18.15.254/24"
+        ],
+        "hostname": "rt2.kie.ua.geant.net",
+        "interface": "ae2.103"
+      }
+    ],
+    "imsid": 715041,
+    "monitored": false,
+    "name": "DCN-MANAGEMENT-KIE2-UA",
+    "scid": "898c618e-da1d-45d6-9b04-82f0b37bcdab",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00132",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "LAT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.149/30",
+          "2001:798:1::b5/126"
+        ],
+        "hostname": "rt0.rig.lv.geant.net",
+        "interface": "lag-20.33"
+      }
+    ],
+    "imsid": 745986,
+    "monitored": true,
+    "name": "LAT-AP1-IAS",
+    "scid": "8997b807-296d-4f5a-8a74-24f55020dd51",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00577",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae15.1125"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-115008"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-21:cp-1125"
+      }
+    ],
+    "imsid": 744066,
+    "monitored": false,
+    "name": "IMINDS-00681",
+    "scid": "89b10159-9590-4fcb-a9e7-a4f807f63b44",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00681",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 707412,
+    "monitored": true,
+    "name": "KAU-KAU-LAG",
+    "scid": "89b96363-a534-4bf8-86bf-3fe56c67ba23",
+    "service_type": "ETHERNET",
+    "sid": "GA-02041",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "TS1.LON2.UK.GEANT.NET(OPENGEAR)",
+        "port": "NET1"
+      }
+    ],
+    "imsid": 677767,
+    "monitored": false,
+    "name": "LON2 EUNET OOB IP LINK (S00242664)",
+    "scid": "89d17ae0-acd2-49fc-b83d-c69be2e1a0b2",
+    "service_type": "OOB IP LINK",
+    "sid": "GS-00405",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "JISC"
+    ],
+    "endpoints": [
+      {
+        "equipment": "LON01-GRV4",
+        "port": "1/2/3"
+      },
+      {
+        "equipment": "GEN01-GRV6",
+        "port": "1/2/3"
+      }
+    ],
+    "imsid": 680167,
+    "monitored": true,
+    "name": "GEN-LON-LHC-CERN-JISC-20040",
+    "scid": "89db048f-810e-4b94-8308-68c97300274b",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-00794",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "ae16"
+      }
+    ],
+    "imsid": 658674,
+    "monitored": false,
+    "name": "LON2-PRD-ESX10-VM-TRAFFIC",
+    "scid": "89f10438-66ad-4e5b-9f64-2112af2904ed",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01704",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "HBKU"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.229/30",
+          "2001:798:99:1::ad/126"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/3/5.2100"
+      }
+    ],
+    "imsid": 661713,
+    "monitored": true,
+    "name": "FR-HBKU",
+    "scid": "89f49535-510b-44b1-8222-c36fb794b6fa",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00879",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 659148,
+    "monitored": true,
+    "name": "LJUBLJANA-LJUBLJANA-1GBE-003(ETH)",
+    "scid": "89f53c56-3c77-4be6-9951-ac51e0c9e73e",
+    "service_type": "ETHERNET",
+    "sid": "GA-01495",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5.2010"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-4/1/4.2010"
+      }
+    ],
+    "imsid": 738645,
+    "monitored": true,
+    "name": "LON-LON-GEANTOPEN-ESNET-NORDUNET-15039-2",
+    "scid": "8a48c70f-4c71-4bf8-956d-d2f4874bdffc",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00964",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "HEANET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.13/30",
+          "2001:798:18:10aa::15/126"
+        ],
+        "hostname": "rt0.cor.ie.geant.net",
+        "interface": "lag-20.12"
+      }
+    ],
+    "imsid": 747414,
+    "monitored": true,
+    "name": "HEANET-AP2",
+    "scid": "8a5756bb-5876-4315-9b54-c187b504dbc4",
+    "service_type": "GEANT IP",
+    "sid": "GS-00474",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 732393,
+    "monitored": true,
+    "name": "BUDAPEST-BUDAPEST-1GBE-003(GEANT)",
+    "scid": "8a659fdb-ca49-44c4-b9ef-a07e21305ea5",
+    "service_type": "ETHERNET",
+    "sid": "GA-01565",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "UOM"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.130/31",
+          "2001:798:1::a1/126"
+        ],
+        "hostname": "rt1.mil2.it.geant.net",
+        "interface": "ae11.333"
+      }
+    ],
+    "imsid": 722111,
+    "monitored": true,
+    "name": "UOM-AP1-IAS",
+    "scid": "8a66b8d4-2a6f-4e15-93f5-085efdff7a6a",
+    "service_type": "GWS - INDIRECT",
+    "sid": "GS-00548",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/3/2"
+      }
+    ],
+    "imsid": 727936,
+    "monitored": true,
+    "name": "PARIS 007B-PARIS 007B-10GBE-012(GEANT)",
+    "scid": "8aafc220-da5f-4290-a9e7-d5df1f0e49cc",
+    "service_type": "ETHERNET",
+    "sid": "GA-01391",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-1/0/13"
+      }
+    ],
+    "imsid": 658463,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-018(ETH)",
+    "scid": "8ab264f8-51f9-47c8-9233-6f2b71a15048",
+    "service_type": "ETHERNET",
+    "sid": "GA-01215",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.117.90/31"
+        ],
+        "hostname": "rt1.chi.md.geant.net",
+        "interface": "ae2.998"
+      }
+    ],
+    "imsid": 713271,
+    "monitored": false,
+    "name": "EX3400-MANAGEMENT-CHI-MD",
+    "scid": "8ab91ec7-b126-4c2b-807b-d400b95072a9",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00150",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "VERIZON"
+    ],
+    "endpoints": [],
+    "imsid": 724329,
+    "monitored": true,
+    "name": "VIENNA-VERIZON-2-LAG",
+    "scid": "8ac22948-774b-4e52-a29f-4ad2455b8060",
+    "service_type": "ETHERNET",
+    "sid": "GA-02223",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.24"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28.4083"
+      }
+    ],
+    "imsid": 739677,
+    "monitored": true,
+    "name": "BELNET-STADKORTRIJK-EXPRESSROUTE-VLAN-4083",
+    "scid": "8ac85ffe-60b7-48a5-885e-59b85b069e1d",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01128",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RENAM"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.100.46/31",
+          "2001:798::59/126"
+        ],
+        "hostname": "rt2.chi.md.geant.net",
+        "interface": "ae10.667"
+      }
+    ],
+    "imsid": 714071,
+    "monitored": true,
+    "name": "RENAM-AP2-CLS",
+    "scid": "8ad9440b-a6f6-48dd-aac3-68ea010093b3",
+    "service_type": "GEANT CLOUD PEERING",
+    "sid": "GS-00616",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SINGAREN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "203.30.38.113/31",
+          "2001:df0:21a:ffe9:0:20:965:1/64"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-2/0/5.2160"
+      }
+    ],
+    "imsid": 708101,
+    "monitored": false,
+    "name": "UK-SINGAREN-AER-VLAN2160",
+    "scid": "8b10fe6f-4af5-4592-b093-845b809ba60e",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00908",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-1/0/18"
+      }
+    ],
+    "imsid": 658386,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-001(ETH)",
+    "scid": "8b2ca47a-8bff-4407-90cc-623b5427f95d",
+    "service_type": "ETHERNET",
+    "sid": "GA-01216",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SURFNET"
+    ],
+    "endpoints": [],
+    "imsid": 720481,
+    "monitored": true,
+    "name": "SURFNET-TEMP-EXPRESSROUTE-VLAN3751",
+    "scid": "8b366817-0ab6-4a12-adb5-93e35bc6b225",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02201",
+    "speed": 64424509440,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae1"
+      }
+    ],
+    "imsid": 733969,
+    "monitored": true,
+    "name": "LAG-SW2.PAR.FR_AE1",
+    "scid": "8b4bebc7-1ed7-4d06-8860-0484f21276f5",
+    "service_type": "ETHERNET",
+    "sid": "GA-01826",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661251,
+    "monitored": false,
+    "name": "LON-SINET-HOST-DEVICE-IDRAC",
+    "scid": "8b5b2aaf-bbf1-4ea1-a86b-1fb7a6189a3c",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00235",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658983,
+    "monitored": true,
+    "name": "LJUBLJANA-LJUBLJANA-1GBE-002(ETH)",
+    "scid": "8b93f169-4870-44d3-b053-38c57e1f31ee",
+    "service_type": "ETHERNET",
+    "sid": "GA-01496",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662246,
+    "monitored": true,
+    "name": "DUBLIN (CITY WEST)-DUBLIN (CITY WEST)-1GBE-005(ETH)",
+    "scid": "8bbd2591-d606-4034-84db-0bc2653a0f98",
+    "service_type": "ETHERNET",
+    "sid": "GA-01596",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-4/1/4.411"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae26.411"
+      }
+    ],
+    "imsid": 738643,
+    "monitored": true,
+    "name": "LON-LON-GEANTOPEN-ESNET-ESNET-170391",
+    "scid": "8bd8b9b3-6985-4201-ae90-c95456fee925",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00962",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.AM.OFFICE",
+        "port": "GE-1/0/3"
+      }
+    ],
+    "imsid": 658391,
+    "monitored": true,
+    "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-007(ETH)",
+    "scid": "8c17ccc8-0f60-4348-9ac4-a2a215350044",
+    "service_type": "ETHERNET",
+    "sid": "GA-01275",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 721147,
+    "monitored": true,
+    "name": "PARIS 007B-PARIS 007B-10GBE-004(GEANT)",
+    "scid": "8c212fd1-818d-425a-bfdf-1a18047f0e01",
+    "service_type": "ETHERNET",
+    "sid": "GA-01392",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "RENAM"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.100.44/31",
+          "2001:798::55/126"
+        ],
+        "hostname": "mx1.buc.ro.geant.net",
+        "interface": "ae12.667"
+      }
+    ],
+    "imsid": 677400,
+    "monitored": true,
+    "name": "RENAM-AP1-CLS",
+    "scid": "8c53c525-2496-4091-ab3b-49b8eb10beba",
+    "service_type": "GEANT CLOUD PEERING",
+    "sid": "GS-00615",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "lon-lon2_GEANT_SURFNET-SINET_16007",
+    "scid": "8c9a63d1-947e-4681-8efe-c617971f7b56",
+    "service_type": null,
+    "sid": "DS-33355",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "LITNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.161/30",
+          "2001:798:1f:10aa::9/126"
+        ],
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ae10.100"
+      }
+    ],
+    "imsid": 745339,
+    "monitored": true,
+    "name": "LITNET-AP2",
+    "scid": "8cc820be-62a1-4682-a42b-5193743aeabb",
+    "service_type": "GEANT IP",
+    "sid": "GS-00487",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.fra.de.geant.net",
+        "interface": "ae10"
+      }
+    ],
+    "imsid": 658673,
+    "monitored": true,
+    "name": "FRANKFURT 15-FRANKFURT 15-LAG-060(GEANT)",
+    "scid": "8ccb1cd8-5e4e-4015-b264-4732c5eb5028",
+    "service_type": "ETHERNET",
+    "sid": "GA-01682",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RENAM"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "xe-5/0/0.0"
+      },
+      {
+        "hostname": "rt1.chi.md.geant.net",
+        "interface": "ae10.110"
+      }
+    ],
+    "imsid": 738245,
+    "monitored": true,
+    "name": "BUD-CHI-EAP-RENAM-ARELION-24033",
+    "scid": "8ceca1cd-f5a1-483b-b2ab-756ab0da26f1",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02110",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "2001:798:99:1::d/126"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae13.106"
+      }
+    ],
+    "imsid": 730105,
+    "monitored": true,
+    "name": "CH-ESNET-IPV6",
+    "scid": "8cf48638-518e-4f78-8dd4-5546c1d3d94b",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00873",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [],
+    "imsid": 662217,
+    "monitored": true,
+    "name": "HAMBURG-HAMBURG-1GBE-013(ETH)",
+    "scid": "8cfb4a66-1809-4896-bdde-4dd65db6e64f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01644",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "FCCN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx2.lis.pt.geant.net",
+        "interface": "ae10.1947"
+      },
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.10"
+      }
+    ],
+    "imsid": 707124,
+    "monitored": true,
+    "name": "FCCN-IPP-EXPRESSROUTE-VLAN1947",
+    "scid": "8d25144c-32f2-40ee-b627-6aca9d1fd0cc",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01141",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SINET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae12.2265"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae20.2265"
+      }
+    ],
+    "imsid": 721397,
+    "monitored": true,
+    "name": "AMS-LON-SINET-SINET-22074",
+    "scid": "8d52a5da-2212-4696-b4c6-f5f1f35ebf5b",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02207",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RESTENA"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae12.854"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae18.854"
+      }
+    ],
+    "imsid": 733000,
+    "monitored": false,
+    "name": "FRA-PAR-MISC-RESTENA-RENATER-20030",
+    "scid": "8d703367-935c-4c79-a13c-38e861d2861a",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00704",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658164,
+    "monitored": false,
+    "name": "AMS OOB LINK",
+    "scid": "8d922910-904c-4977-815e-9eb3b07afd5f",
+    "service_type": "OOB IP LINK",
+    "sid": "GS-00389",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "TS1.KAU.LT(OPENGEAR)",
+        "port": "NET1"
+      }
+    ],
+    "imsid": 658233,
+    "monitored": false,
+    "name": "KAU OOB LINK",
+    "scid": "8dc7382b-de26-430b-880c-41b62099f755",
+    "service_type": "OOB IP LINK",
+    "sid": "GS-00402",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "WP6T3"
+    ],
+    "endpoints": [],
+    "imsid": 678790,
+    "monitored": false,
+    "name": "LON2-PRA-WP6-GTS-20064",
+    "scid": "8dd962d2-b900-4cd2-87f8-68d0ac03424d",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00718",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "17.1.172.201/31",
+          "2a01:b740:1:8c10::201/127"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae45.0"
+      }
+    ],
+    "imsid": 730364,
+    "monitored": false,
+    "name": "DE-APPLE-IAS",
+    "scid": "8de489a7-3153-4167-8c4a-e6beaaab2653",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-02395",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/1/6.1003"
+      }
+    ],
+    "imsid": 661658,
+    "monitored": false,
+    "name": "JRA1-SDN-BOD-PILOT-BR53",
+    "scid": "8df58728-575d-4bbe-8f93-cfe0db46b83d",
+    "service_type": "L3-VPN",
+    "sid": "GS-02122",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "T-SYSTEMS"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "80.158.74.245/31"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae21.4002"
+      }
+    ],
+    "imsid": 728924,
+    "monitored": true,
+    "name": "DE-T-SYSTEMS-R&E",
+    "scid": "8e577713-0de2-453f-a4dd-4f17d153ada6",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-02330",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661310,
+    "monitored": false,
+    "name": "PS-MAD-ES-MANAGEMENT",
+    "scid": "8e61e130-d04f-44ed-82c3-135061f62b2e",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00329",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "JISC"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/0/3"
+      }
+    ],
+    "imsid": 723722,
+    "monitored": true,
+    "name": "LONDON-LONDON-10GBE-014(GEANT)",
+    "scid": "8e731536-f401-4ae7-8044-13cecf8d24f2",
+    "service_type": "ETHERNET",
+    "sid": "GA-01532",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "CYNET LAG",
+    "scid": "8e8e040d-d3d5-4b4b-bd78-c650cd952d2f",
+    "service_type": null,
+    "sid": "GA-01950",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.28"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28.4066"
+      }
+    ],
+    "imsid": 739660,
+    "monitored": true,
+    "name": "BELNET-ONDD-EXPRESSROUTE-VLAN4066",
+    "scid": "8e944086-e92f-4d59-beee-3970a6f7278a",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02390",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ORACLE"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae10.114"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae19.114"
+      }
+    ],
+    "imsid": 705442,
+    "monitored": true,
+    "name": "FRA-GEN-ORACLE-CERN-20094",
+    "scid": "8e9d94a9-6bbf-4e83-aba4-49d4891c944a",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00698",
+    "speed": 450971566080,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.zag.hr.geant.net",
+        "interface": "lag-3"
+      }
+    ],
+    "imsid": 747826,
+    "monitored": true,
+    "name": "BUD-ZAG-LAG",
+    "scid": "8eab03c0-40f2-4b92-a699-a5d392a53048",
+    "service_type": "ETHERNET",
+    "sid": "GA-01909",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SUNET"
+    ],
+    "endpoints": [],
+    "imsid": 715307,
+    "monitored": true,
+    "name": "MD-VPN-VRR-LJUBLJANA-SUNET-2-SE",
+    "scid": "8ebd1a42-7a1a-4355-911e-36667d34e044",
+    "service_type": "MD-VPN (PROXY)",
+    "sid": "GS-01066",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "WP6T3"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-1/2/8"
+      },
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/0/6"
+      },
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-1/2/8.11"
+      },
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/0/6.11"
+      }
+    ],
+    "imsid": 715036,
+    "monitored": false,
+    "name": "LON2-LON2-WP7T2SF-BMS8-JRA2T4-21089",
+    "scid": "8ec5c1d7-fa53-4ee4-900b-cd8a37e4de0a",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00740",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GOOGLE"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.89.46/31",
+          "2001:798:1::16d/126"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae13.0"
+      }
+    ],
+    "imsid": 733783,
+    "monitored": true,
+    "name": "GOOGLE-15169-NL",
+    "scid": "8ed7798c-34f0-4e0f-8c77-1389086c961c",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-02451",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.26"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28.4063"
+      }
+    ],
+    "imsid": 739662,
+    "monitored": true,
+    "name": "BELNET-JUST-EXPRESSROUTE-VLAN4063",
+    "scid": "8ef1b7bc-c825-4f7b-82b6-405c2b7ae2c8",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02319",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-1/0/46"
+      }
+    ],
+    "imsid": 658980,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-063(ETH)",
+    "scid": "8f046b8b-a734-4422-b426-d21a16282266",
+    "service_type": "ETHERNET",
+    "sid": "GA-01229",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "FCCN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx2.lis.pt.geant.net",
+        "interface": "ae10"
+      }
+    ],
+    "imsid": 659361,
+    "monitored": true,
+    "name": "FCCN-AP1-LAG",
+    "scid": "8f36dfef-9675-4fee-99ef-9c7de29e1627",
+    "service_type": "ETHERNET",
+    "sid": "GA-01786",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CSTNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae12.3552"
+      },
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae21.3552"
+      }
+    ],
+    "imsid": 732309,
+    "monitored": true,
+    "name": "GEN-MAR-IHEP-CERN-CSTNET",
+    "scid": "8f385fb8-9070-4944-81cf-1fdc0117ffd1",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02414",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662306,
+    "monitored": true,
+    "name": "FRANKFURT-FRANKFURT-10GBE-058(GEANT)",
+    "scid": "8f42060a-c71b-46bf-aa0d-7063b5599155",
+    "service_type": "ETHERNET",
+    "sid": "GA-01603",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "JISC"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.dub.ie.geant.net",
+        "interface": "lag-22"
+      }
+    ],
+    "imsid": 747272,
+    "monitored": true,
+    "name": "NRENBBEXT-JISC-LAG",
+    "scid": "8f498cb0-f916-4847-9f30-77a9a7f0974d",
+    "service_type": "ETHERNET",
+    "sid": "GA-01550",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "HEANET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.77/30",
+          "2001:798:1::61/126"
+        ],
+        "hostname": "rt0.cor.ie.geant.net",
+        "interface": "lag-20.333"
+      }
+    ],
+    "imsid": 747415,
+    "monitored": true,
+    "name": "HEANET-AP2-IAS",
+    "scid": "8f70add2-850b-404a-b5ac-0459957c3d09",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00573",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "172.18.2.1/24"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae1.103"
+      }
+    ],
+    "imsid": 733980,
+    "monitored": false,
+    "name": "DCN-MANAGEMENT-PAR-FR",
+    "scid": "8f7f92c5-6968-4369-aa3b-dc23445bc0a1",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00124",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "ae4"
+      }
+    ],
+    "imsid": 658685,
+    "monitored": false,
+    "name": "LON2-SEC-ESX20-ESXI-TRAFFIC",
+    "scid": "8f80b196-5332-40b2-a35b-2ce2133e5f29",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01692",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.AM.OFFICE",
+        "port": "GE-1/0/0"
+      }
+    ],
+    "imsid": 658623,
+    "monitored": true,
+    "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-028(ETH)",
+    "scid": "8f8a29bd-9e22-4bab-86a1-a5371ec1c500",
+    "service_type": "ETHERNET",
+    "sid": "GA-01277",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [],
+    "imsid": 712364,
+    "monitored": false,
+    "name": "MD-VPN-VRR-PARIS-RENATER-1-FR",
+    "scid": "8f998db0-fd16-44d7-9cda-d93ed41ff347",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01051",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708252,
+    "monitored": false,
+    "name": "PS-LIS-PT-BWCTL",
+    "scid": "8fa15d2c-0e3c-4551-8912-65aa3b185e01",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00315",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "RARE"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PF1-RARE.AMS.NL.GEANT.NET",
+        "port": "XE-2"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-1/0/2"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-1/0/2.702"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "xe-9/0/3.702"
+      }
+    ],
+    "imsid": 736105,
+    "monitored": false,
+    "name": "LON-AMS-DTN-GENERATOR",
+    "scid": "8fc6c7fd-c9a7-4d89-a699-bd4244d08950",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00722",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "equipment": "AMS01-GRV2",
+        "port": "1/1/6"
+      },
+      {
+        "equipment": "DIGITAL REALTY A-END",
+        "port": "DE258134"
+      },
+      {
+        "equipment": "DIGITAL REALTY Z-END",
+        "port": "DE258134"
+      }
+    ],
+    "imsid": 739363,
+    "monitored": true,
+    "name": "AMS-FRA-NORDUNET-24054-2",
+    "scid": "8fea8bde-f20a-4737-aaa6-b16f895f7e2d",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-02530",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.30"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28.4089"
+      }
+    ],
+    "imsid": 739664,
+    "monitored": true,
+    "name": "BELNET-MOBILIT-EXPRESSROUTE-VLAN4089",
+    "scid": "8fead412-5c89-4ddf-88ce-caa11fd6a796",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02170",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [],
+    "imsid": 662243,
+    "monitored": true,
+    "name": "AMSTERDAM-AMSTERDAM-1GBE-056(ETH)",
+    "scid": "8ff0150a-47bd-42ba-bacf-8f6548e177ff",
+    "service_type": "ETHERNET",
+    "sid": "GA-01630",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "DFN-AP1-CLS|ASN680",
+    "scid": "90234395-1165-4501-b037-4d67a3591aef",
+    "service_type": null,
+    "sid": "DS-33539",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CERN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae22"
+      }
+    ],
+    "imsid": 701583,
+    "monitored": true,
+    "name": "CERN-AP1-EXT2-LAG",
+    "scid": "90723412-846b-48ee-8ed5-4bf72c225dc0",
+    "service_type": "ETHERNET",
+    "sid": "GA-02089",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [],
+    "imsid": 658807,
+    "monitored": true,
+    "name": "PRAGUE-PRAGUE-1GBE-006(ETH)",
+    "scid": "908575d2-2a4c-4717-9c09-14428ca5abb9",
+    "service_type": "ETHERNET",
+    "sid": "GA-01442",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708236,
+    "monitored": false,
+    "name": "VEEAM-BACKUP-2-MAR-FR",
+    "scid": "90e175bf-dbc0-45e6-9515-7f7a45bc5602",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00378",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.gen.ch.geant.net",
+        "interface": "lag-7"
+      }
+    ],
+    "imsid": 739695,
+    "monitored": true,
+    "name": "GEN-PAR-1.6T-LAG",
+    "scid": "90e775c1-c48d-426c-b9a4-6c412ddff754",
+    "service_type": "ETHERNET",
+    "sid": "GA-01887",
+    "speed": 1717986918400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "ge-0/0/1"
+      }
+    ],
+    "imsid": 732259,
+    "monitored": true,
+    "name": "LONDON 2-LONDON 2-1GBE-008(GEANT)",
+    "scid": "91008b81-04a7-43d4-89cc-1140244d2487",
+    "service_type": "ETHERNET",
+    "sid": "GA-01512",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.lon2.uk.geant.net",
+        "interface": "lag-3"
+      }
+    ],
+    "imsid": 746140,
+    "monitored": true,
+    "name": "LON2-PAR-ROLR-LAG",
+    "scid": "9107e4f3-cb9d-4c23-a356-2aecf0974f4a",
+    "service_type": "ETHERNET",
+    "sid": "GA-50067",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.248/31",
+          "2001:798:cc:1::105/126"
+        ],
+        "hostname": "rt0.rig.lv.geant.net",
+        "interface": "lag-4.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.249/31",
+          "2001:798:cc:1::106/126"
+        ],
+        "hostname": "rt0.tar.ee.geant.net",
+        "interface": "lag-3.0"
+      }
+    ],
+    "imsid": 746458,
+    "monitored": true,
+    "name": "RIG-TAR-IPTRUNK",
+    "scid": "915247f2-026d-407e-bdb5-e5d272de411b",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02345",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 715097,
+    "monitored": true,
+    "name": "LONDON 2-LONDON 2-1GBE-010(ETH)",
+    "scid": "916bd190-edf7-430c-810c-4783aa38d978",
+    "service_type": "ETHERNET",
+    "sid": "GA-01509",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.par.fr.geant.net",
+        "interface": "ae0.0"
+      },
+      {
+        "hostname": "qfx.par.fr.geant.net",
+        "interface": "ae0.0"
+      },
+      {
+        "addresses": [
+          "62.40.116.121/29",
+          "2001:798:ee:10::1/64"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae30.3007"
+      },
+      {
+        "addresses": [
+          "62.40.104.29/30",
+          "2001:798:6:4::1/64"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae30.3015"
+      }
+    ],
+    "imsid": 712154,
+    "monitored": false,
+    "name": "INFOBLOX-VPAR-PAR-FR",
+    "scid": "916d1762-c571-4dbf-baf4-6a28c2f691ad",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00205",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661620,
+    "monitored": false,
+    "name": "PS-LON-UK-PSMP-BWCTL-VLAN23",
+    "scid": "91760f01-4e5c-44ce-bd1c-c294ca8506f9",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00322",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.57/31",
+          "2001:798:cc::5a/126"
+        ],
+        "hostname": "rt0.mil2.it.geant.net",
+        "interface": "lag-6.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.56/31",
+          "2001:798:cc::59/126"
+        ],
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "lag-2.0"
+      }
+    ],
+    "imsid": 745507,
+    "monitored": true,
+    "name": "ATH2-MIL2-IPTRUNK",
+    "scid": "917627fa-d842-4216-b637-a60d4ffee805",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00014",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.112.41/30",
+          "2001:799:cb2:3::1/64"
+        ],
+        "hostname": "srx1.ch.office.geant.net",
+        "interface": "ge-0/0/1.10"
+      }
+    ],
+    "imsid": 662954,
+    "monitored": false,
+    "name": "SRX1-SRX2-CH-OFFICE",
+    "scid": "917bf593-fd77-47e3-84cf-cf95cefe96da",
+    "service_type": "CORPORATE",
+    "sid": "GS-01646",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-23"
+      }
+    ],
+    "imsid": 747582,
+    "monitored": true,
+    "name": "HAM-DTN-LAG",
+    "scid": "91ec5940-45f6-4372-9f88-0b8dbf90b5af",
+    "service_type": "ETHERNET",
+    "sid": "GA-50069",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662224,
+    "monitored": true,
+    "name": "HAMBURG-HAMBURG-1GBE-015(ETH)",
+    "scid": "922eabaf-3cec-4d7a-8964-26c7cb86b8d6",
+    "service_type": "ETHERNET",
+    "sid": "GA-01649",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "IRANET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.85/30",
+          "2001:798:99:1::81/126"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "gr-3/0/0.50"
+      }
+    ],
+    "imsid": 732661,
+    "monitored": false,
+    "name": "DE-IRANET",
+    "scid": "923321c4-d3d9-4e95-9b63-d60f897bf720",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-01169",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "xe-3/0/2"
+      }
+    ],
+    "imsid": 658856,
+    "monitored": true,
+    "name": "POZNAN-POZNAN-10GBE-004(ETH)",
+    "scid": "924d8f89-e625-408c-9c00-4f98283d6911",
+    "service_type": "ETHERNET",
+    "sid": "GA-02139",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.buc.ro.geant.net",
+        "interface": "ae2"
+      }
+    ],
+    "imsid": 745567,
+    "monitored": true,
+    "name": "BUC-BUC-MGMT-LAG",
+    "scid": "92512f10-1f81-4902-bbb6-09242f8bbb82",
+    "service_type": "ETHERNET",
+    "sid": "GA-50061",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708751,
+    "monitored": true,
+    "name": "TAL-TAL-IPTRUNK",
+    "scid": "92592767-8522-4492-808f-e3775461377e",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00062",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 715163,
+    "monitored": true,
+    "name": "DUB2-LON-LAG",
+    "scid": "9274fc90-45e9-46ae-8d5e-0b6f9e42d8cc",
+    "service_type": "ETHERNET",
+    "sid": "GA-01847",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 660719,
+    "monitored": false,
+    "name": "ASREN-EDGE-DEVICE-VLAN505",
+    "scid": "928c7cf3-0e2c-4dc2-ba59-6afe83b008be",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00099",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "DS-09233",
+    "scid": "929eb4c1-1fa1-4de3-9646-6d49cb97f798",
+    "service_type": null,
+    "sid": "DS-09233",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "srx1.ch.office.geant.net",
+        "interface": "ge-0/0/2"
+      }
+    ],
+    "imsid": 662513,
+    "monitored": true,
+    "name": "PHY CONNECTION TO SWITCH CLUSTER VME.0 - SWITCH CHASSIS 0 MGMT - PRIMARY",
+    "scid": "92cbb48c-6658-4a43-8d41-114d0f4f489a",
+    "service_type": "ETHERNET",
+    "sid": "GA-01281",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RASH"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.sof.bg.geant.net",
+        "interface": "lag-24"
+      }
+    ],
+    "imsid": 744994,
+    "monitored": true,
+    "name": "RASH-AP2-LAG",
+    "scid": "92ddf792-8433-4c93-9168-87bc6a314426",
+    "service_type": "ETHERNET",
+    "sid": "GA-01768",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "172.18.22.1/24"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae1.103"
+      }
+    ],
+    "imsid": 729104,
+    "monitored": false,
+    "name": "DCN-MANAGEMENT-FRA-DE",
+    "scid": "93055442-d0a4-4fd5-b62e-b618140d5d7f",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00117",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.AM.OFFICE",
+        "port": "GE-2/0/47"
+      }
+    ],
+    "imsid": 658594,
+    "monitored": true,
+    "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-027(ETH)",
+    "scid": "93112d2e-d9b6-4e16-a007-2d735a0201ef",
+    "service_type": "ETHERNET",
+    "sid": "GA-01261",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "ae2"
+      }
+    ],
+    "imsid": 658664,
+    "monitored": false,
+    "name": "LON2-PRD-ESX02-ESXI-TRAFFIC",
+    "scid": "93138f6d-c0f7-403e-b3ea-faa694106c5d",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01696",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "195.169.24.10/28",
+          "2001:610:9d8::a/64"
+        ],
+        "hostname": "srx1.am.office.geant.net",
+        "interface": "ge-0/0/0.10"
+      }
+    ],
+    "imsid": 663032,
+    "monitored": false,
+    "name": "SRX1-AMS-INFRASTRUCTURE-MANAGEMENT",
+    "scid": "9315df0b-3984-4e2a-b3de-77df4720efaf",
+    "service_type": "CORPORATE",
+    "sid": "GS-00380",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "FCCN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.127.144/31",
+          "2001:798:99:1::e9/126"
+        ],
+        "hostname": "rt1.por.pt.geant.net",
+        "interface": "ae10.1931"
+      }
+    ],
+    "imsid": 712362,
+    "monitored": true,
+    "name": "FCCN-AP2",
+    "scid": "931ba49d-f849-4277-9820-bc22a7719a6f",
+    "service_type": "GEANT IP",
+    "sid": "GS-00460",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5.3906"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.8"
+      }
+    ],
+    "imsid": 706994,
+    "monitored": true,
+    "name": "NORDUNET-AALTO-EXPRESSROUTE-VLAN3906",
+    "scid": "933cbcbd-11ed-4e5a-9d19-78d122cfa02b",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01155",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "IUCC"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae22"
+      }
+    ],
+    "imsid": 729994,
+    "monitored": true,
+    "name": "IUCC-AP2-LAG",
+    "scid": "9344e3d4-0995-4dee-8ee9-e70ed3e738e1",
+    "service_type": "ETHERNET",
+    "sid": "GA-01940",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NIX"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.pra.cz.geant.net",
+        "interface": "ae12"
+      }
+    ],
+    "imsid": 724675,
+    "monitored": true,
+    "name": "PRA-NIX-LAG",
+    "scid": "934b5710-520d-4c56-968d-8476eb301870",
+    "service_type": "ETHERNET",
+    "sid": "GA-01828",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ACONET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.133/30",
+          "2001:0798:001e:10aa::d/126"
+        ],
+        "hostname": "rt1.mil2.it.geant.net",
+        "interface": "ae18.53"
+      }
+    ],
+    "imsid": 661508,
+    "monitored": true,
+    "name": "ACONET-AP2",
+    "scid": "935b6fd4-14e0-4faa-ab4c-4bdf120fade2",
+    "service_type": "GEANT IP",
+    "sid": "GS-00423",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "LINX"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae20"
+      }
+    ],
+    "imsid": 659363,
+    "monitored": true,
+    "name": "LINX-LAG",
+    "scid": "938b2901-6630-4f0b-8c1f-5e00b66ebb7c",
+    "service_type": "ETHERNET",
+    "sid": "GA-01839",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658504,
+    "monitored": false,
+    "name": "730XD-4-SLOT0-PORT1-VMNIC0-PAR",
+    "scid": "93a0cd7d-6c43-49e0-a5ed-93ecef672d30",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01286",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PSMP-GN-DRAC-LIS-PT.GEANT.ORG",
+        "port": "IDRAC"
+      },
+      {
+        "hostname": "mx2.lis.pt.geant.net",
+        "interface": "ge-0/3/7"
+      },
+      {
+        "addresses": [
+          "62.40.118.76/31",
+          "2001:798:ee:b::25/126"
+        ],
+        "hostname": "mx2.lis.pt.geant.net",
+        "interface": "ge-0/3/7.0"
+      }
+    ],
+    "imsid": 708306,
+    "monitored": false,
+    "name": "PS-LIS-PT-IDRAC",
+    "scid": "93a29f43-8d40-414d-820a-6a3e09052c8b",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00316",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 727155,
+    "monitored": true,
+    "name": "BRU-BRU-IPTRUNK",
+    "scid": "93db3ebc-37cb-428c-8f66-2e21ce28ab9c",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02277",
+    "speed": 128849018880,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.kau.lt.geant.net",
+        "interface": "lag-3"
+      }
+    ],
+    "imsid": 746516,
+    "monitored": true,
+    "name": "KAU-POZ-LAG",
+    "scid": "93eebe3a-4fdd-4d4a-9e81-ca23690ee5ed",
+    "service_type": "ETHERNET",
+    "sid": "GA-02044",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663066,
+    "monitored": false,
+    "name": "IPCAMERA-BUD-HU",
+    "scid": "93ffba14-5e4d-4cbd-a800-b90bc1613735",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00208",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658531,
+    "monitored": false,
+    "name": "730XD-1-VSAN-TRAFFIC-LAG",
+    "scid": "94026e49-10dd-4d4a-99d0-27c836060c16",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01679",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5.1501"
+      },
+      {
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-21:1501"
+      }
+    ],
+    "imsid": 747551,
+    "monitored": true,
+    "name": "HAM-LON-00719",
+    "scid": "940cf557-39dc-4140-a2e5-df9871cca828",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00719",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 728725,
+    "monitored": true,
+    "name": "KAU-RIG-IP1",
+    "scid": "9437476e-6c71-4b6d-88a2-c5f5d2b9a33d",
+    "service_type": "ETHERNET",
+    "sid": "GA-D00012    ---TEMP",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 744015,
+    "monitored": true,
+    "name": "BRUSSELS-BRUSSELS-LAG-002(GEANT)",
+    "scid": "943fee4a-a595-4e5e-ac96-282dd07a0ec0",
+    "service_type": "ETHERNET",
+    "sid": "GA-02570",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "ge-0/0/6"
+      }
+    ],
+    "imsid": 659219,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-1GBE-022(ETH)",
+    "scid": "9448d35b-055a-4c9a-9e93-c62b4d0753e6",
+    "service_type": "ETHERNET",
+    "sid": "GA-01506",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SCION"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-0/1/6.1728"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.1728"
+      }
+    ],
+    "imsid": 744389,
+    "monitored": false,
+    "name": "AMS-FRA-KAUST-SCION",
+    "scid": "9468c829-37b0-44b9-b661-d5567b753654",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02417",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662221,
+    "monitored": true,
+    "name": "FRANKFURT-FRANKFURT-1GBE-014(ETH)",
+    "scid": "9478eadd-5a52-4ab9-8bfb-8ab6bf9c0b96",
+    "service_type": "ETHERNET",
+    "sid": "GA-01609",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661612,
+    "monitored": false,
+    "name": "XANTARO-SERVICE-ENGINE-ETH1-NETDEVICES-LON2-VLAN946",
+    "scid": "948054e3-e0bb-481e-b9cd-1b2dbfdf7bbb",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00387",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "198.124.80.30/30",
+          "2001:400:f003:d::3/127"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae26.2013"
+      }
+    ],
+    "imsid": 709643,
+    "monitored": true,
+    "name": "ESNET-NEA3R-LON-LHCONE",
+    "scid": "94d4cda8-8527-4e9d-bb01-9769c302f118",
+    "service_type": "L3-VPN",
+    "sid": "GS-00822",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 701854,
+    "monitored": true,
+    "name": "LISBON-LISBON-1GBE-001(ETH)",
+    "scid": "94e3b74f-1a5a-4d55-be40-ea7c8a4b6a83",
+    "service_type": "ETHERNET",
+    "sid": "GA-01527",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.bil.es.geant.net",
+        "interface": "ae15.3005"
+      }
+    ],
+    "imsid": 726619,
+    "monitored": false,
+    "name": "RARE-BIL-REDIRIS",
+    "scid": "952a8701-3ca0-45ee-9b6a-a2890581bc23",
+    "service_type": "L2SERVICES",
+    "sid": "GS-02290",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 735853,
+    "monitored": true,
+    "name": "LON2-LON2-10G-LINK2",
+    "scid": "952ab172-3e07-4fc3-976c-b46fbfd816a9",
+    "service_type": "ETHERNET",
+    "sid": "GA-01324",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.bra.sk.geant.net",
+        "interface": "ae6"
+      }
+    ],
+    "imsid": 729435,
+    "monitored": true,
+    "name": "BRA-BUD LAG 100G",
+    "scid": "9535fce0-e586-420b-a044-f24df712a585",
+    "service_type": "ETHERNET",
+    "sid": "GA-01756",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GOOGLE"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae44"
+      }
+    ],
+    "imsid": 731226,
+    "monitored": true,
+    "name": "GOOGLE-FRA15-LAG2",
+    "scid": "95433ca9-9978-4791-844a-64e3f8e2296b",
+    "service_type": "ETHERNET",
+    "sid": "GA-02225",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.105/30"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae30.104"
+      }
+    ],
+    "imsid": 734112,
+    "monitored": true,
+    "name": "NL-ESNET-IPV4",
+    "scid": "954f1e38-cabb-4cf8-aa16-32fa65314c32",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00889",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.18"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-240594"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20:4089"
+      }
+    ],
+    "imsid": 744264,
+    "monitored": true,
+    "name": "MSEPREMIER-01137",
+    "scid": "9562b13c-43a3-4e63-8b59-77a18b7e8602",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01137",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "HBKU"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.225/30"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/0/2.2200"
+      }
+    ],
+    "imsid": 661378,
+    "monitored": true,
+    "name": "UK-HBKU",
+    "scid": "957ef638-c8c8-41cb-a2db-26a431b253c9",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00907",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "ASREN",
+    "scid": "95961283-cc7f-428f-b137-90b66f2f654e",
+    "service_type": null,
+    "sid": "GA-01319",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "DUB2-LON2 LAG",
+    "scid": "95a17705-7a97-4335-a2b9-986bdfc75228",
+    "service_type": null,
+    "sid": "GA-01890",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "DFN"
+    ],
+    "endpoints": [],
+    "imsid": 712401,
+    "monitored": false,
+    "name": "MD-VPN-VRR-PARIS-DFN-2-DE",
+    "scid": "95b6144a-03ea-4036-b670-de841b79384b",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01037",
+    "speed": 322122547200,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661677,
+    "monitored": false,
+    "name": "KVMOIP-PRA-CZ",
+    "scid": "95cec409-80ad-4d50-a8ad-795ef8938026",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00222",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.lon.uk.geant.net",
+        "interface": "lag-6"
+      }
+    ],
+    "imsid": 747277,
+    "monitored": true,
+    "name": "DUB-LON-LAG",
+    "scid": "95d88f6d-70d5-4c17-8f0b-38c15c6aa57d",
+    "service_type": "ETHERNET",
+    "sid": "GA-02006",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.33"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-240589"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20:4082"
+      }
+    ],
+    "imsid": 744267,
+    "monitored": true,
+    "name": "MSEKULEUVEN-01134",
+    "scid": "95ed5990-332b-49eb-87e8-beafde03260a",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01134",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708208,
+    "monitored": false,
+    "name": "PS-LON2-UK-BWCTL",
+    "scid": "95edd24e-8c6b-4f8d-bf6d-b30569ec013a",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00323",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "TS1.BUC-NEW",
+        "port": "GI0/0"
+      }
+    ],
+    "imsid": 677552,
+    "monitored": false,
+    "name": "BUC OOB LINK",
+    "scid": "95ee36f4-9ed8-47e0-9cd0-cc9e0a8c53b6",
+    "service_type": "OOB IP LINK",
+    "sid": "GS-00394",
+    "speed": 10485760,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "mx1.mad.es - Traffic - ae12 - LAG CUSTOMER REDIRIS SRF9926947 |",
+    "scid": "95f1df21-a239-4b1d-b1dc-832de292af1b",
+    "service_type": null,
+    "sid": "GA-01781",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-99514671"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-21:1176"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae13.37"
+      }
+    ],
+    "imsid": 745322,
+    "monitored": true,
+    "name": "GEANT_EPIPE_99514671",
+    "scid": "9622bc35-cc9c-4c41-8b12-cfef77399a13",
+    "service_type": "ETHERNET",
+    "sid": "GS-00682",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708257,
+    "monitored": false,
+    "name": "PS-PRA-CZ-OWAMP",
+    "scid": "9633657b-9418-4104-9c79-0cb0a6742662",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00350",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SURF"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.100.32/31",
+          "2001:798::39/126"
+        ],
+        "hostname": "mx1.ams.nl.geant.net",
+        "interface": "ae15.667"
+      }
+    ],
+    "imsid": 662996,
+    "monitored": false,
+    "name": "SURFNET-AP1-CLS",
+    "scid": "965a18db-e915-4235-a0a4-67335029d23f",
+    "service_type": "GEANT CLOUD PEERING",
+    "sid": "GS-00622",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "DFN"
+    ],
+    "endpoints": [],
+    "imsid": 712400,
+    "monitored": false,
+    "name": "MD-VPN-VRR-PARIS-DFN-1-DE",
+    "scid": "9664eb14-aeb9-4172-b87d-7d21d7efe83a",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01036",
+    "speed": 322122547200,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 660429,
+    "monitored": false,
+    "name": "TAAS-CONTROL-LONDON",
+    "scid": "9672fb48-5ce4-4c69-bcdf-b8850880ead9",
+    "service_type": "GTS",
+    "sid": "GS-01188",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae33"
+      }
+    ],
+    "imsid": 739552,
+    "monitored": true,
+    "name": "NORDUNET-AP3-LAG",
+    "scid": "968d6d88-88b8-4238-a46b-d927fc259148",
+    "service_type": "ETHERNET",
+    "sid": "GA-02480",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 659017,
+    "monitored": true,
+    "name": "PARIS-FLOWMON-MGMT-1GBE-004(ETH)",
+    "scid": "96bcab6c-ad79-4217-aff1-008413162519",
+    "service_type": "ETHERNET",
+    "sid": "GA-01400",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae15.300"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-113012"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-21:cp-300"
+      }
+    ],
+    "imsid": 744064,
+    "monitored": true,
+    "name": "GENI-00628",
+    "scid": "96fb0fd8-3a12-409d-99fa-c50dd0d3aea9",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00628",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae12.3005"
+      }
+    ],
+    "imsid": 712147,
+    "monitored": false,
+    "name": "RARE-PAR-RENATER",
+    "scid": "9704ae6b-f7d1-458a-b07f-3e44409e1e34",
+    "service_type": "L2SERVICES",
+    "sid": "GS-00776",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658658,
+    "monitored": false,
+    "name": "730XD-1-VSAN-TRAFFIC-LAG-PAR",
+    "scid": "9705a881-a490-4d31-ac78-efd1111490ef",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01721",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [
+      {
+        "hostname": "srx2.am.office.geant.net",
+        "interface": "ge-0/0/1"
+      },
+      {
+        "addresses": [
+          "195.169.24.50/30"
+        ],
+        "hostname": "srx2.am.office.geant.net",
+        "interface": "ge-0/0/1.0"
+      }
+    ],
+    "imsid": 708319,
+    "monitored": false,
+    "name": "SRX2-SRX1-AMS-OFFICE",
+    "scid": "973c5570-4763-413f-910d-76aa459b8ccd",
+    "service_type": "CORPORATE",
+    "sid": "GS-01750",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae12.550"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-23:550"
+      }
+    ],
+    "imsid": 744235,
+    "monitored": true,
+    "name": "GRID5K-02234",
+    "scid": "975af3bd-a397-49cc-8065-88e13f9f800a",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02234",
+    "speed": 343597383680,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "1/1/c25/1"
+      },
+      {
+        "addresses": [
+          "62.40.125.170/31",
+          "2001:798:18:10aa::11/126"
+        ],
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-20.100"
+      }
+    ],
+    "imsid": 669674,
+    "monitored": true,
+    "name": "DFN-AP2-400G-1",
+    "scid": "975d5c74-2359-4e29-81f7-34397dbee8e7",
+    "service_type": "ETHERNET",
+    "sid": "GS-00453",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 728949,
+    "monitored": true,
+    "name": "TAR-TAR-LAG",
+    "scid": "977a37ee-b099-472a-881e-394f9bb38472",
+    "service_type": "ETHERNET",
+    "sid": "GA-02352",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "EENET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.53/30",
+          "2001:798:1::41/126"
+        ],
+        "hostname": "rt0.tar.ee.geant.net",
+        "interface": "lag-20.200"
+      }
+    ],
+    "imsid": 746448,
+    "monitored": true,
+    "name": "EENET-AP1-IAS",
+    "scid": "977c1df1-97f8-4e9b-a373-59f68fc961cb",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00568",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662324,
+    "monitored": true,
+    "name": "HAMBURG-HAMBURG-10GBE-008(GEANT)",
+    "scid": "97920589-e14b-4f37-84aa-d7b49552ff70",
+    "service_type": "ETHERNET",
+    "sid": "GA-01561",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.par.fr.geant.net",
+        "interface": "lag-3"
+      }
+    ],
+    "imsid": 746140,
+    "monitored": true,
+    "name": "LON2-PAR-ROLR-LAG",
+    "scid": "97c84b65-35e7-4bb3-8302-937ea8918d3e",
+    "service_type": "ETHERNET",
+    "sid": "GA-50068",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.par.fr.geant.net",
+        "interface": "ae0.0"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae30.3002"
+      },
+      {
+        "addresses": [
+          "62.40.106.91/29",
+          "2001:798:bb:9::3/64"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "irb.3002"
+      }
+    ],
+    "imsid": 712150,
+    "monitored": false,
+    "name": "PS-LATENCY-NETWORK-PAR-FR",
+    "scid": "97d2f1b1-a483-4737-a2f5-a42a803e6bd1",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00313",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.9"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-240595"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20:4086"
+      }
+    ],
+    "imsid": 744263,
+    "monitored": true,
+    "name": "MSEFGOV-01132",
+    "scid": "981b4457-5638-489b-b34d-bc90993efcff",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01132",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NETHERLIGHT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PF1-RARE.AMS.NL.GEANT.NET",
+        "port": "XE-2"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "xe-9/0/3.701"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae15.701"
+      }
+    ],
+    "imsid": 736101,
+    "monitored": false,
+    "name": "AMS-AMS-NETHERLIGHT-RARE-9952733",
+    "scid": "9827f13b-e691-4c0f-90b4-ba2fac8512f5",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00626",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "AMT1.AMS.NL",
+        "port": "AE1.10"
+      },
+      {
+        "addresses": [
+          "62.40.98.118/31",
+          "2001:798:cc:1::c1/126"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae7.10"
+      }
+    ],
+    "imsid": 744359,
+    "monitored": true,
+    "name": "AMS-AMS-AMT-RELAYLINK",
+    "scid": "9835c83b-698e-424d-9f5c-2ce55aa04b72",
+    "service_type": "SERVER LINK",
+    "sid": "GS-02305",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SCION"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "xe-2/1/4.1627"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae19.1627"
+      }
+    ],
+    "imsid": 736637,
+    "monitored": false,
+    "name": "GEN-PAR-SCION-SCION-INTERNET2-1",
+    "scid": "983bd0c5-b104-4588-9883-63090595a48d",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02297",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "LAT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.kau.lt.geant.net",
+        "interface": "lag-20"
+      }
+    ],
+    "imsid": 746517,
+    "monitored": true,
+    "name": "LAT-AP2-LAG",
+    "scid": "9872666b-3b5c-431f-ac3e-42d979418bcb",
+    "service_type": "ETHERNET",
+    "sid": "GA-02074",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661478,
+    "monitored": false,
+    "name": "PAR-GROOVE-2-MANAGEMENT",
+    "scid": "987b97dd-5354-45f7-86d6-c982f7fd04c8",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00275",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ORACLE"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae24"
+      }
+    ],
+    "imsid": 719259,
+    "monitored": true,
+    "name": "UK-ORACLE-IAS-LAG",
+    "scid": "987c3d30-3dde-4ea3-8fd0-946278c26264",
+    "service_type": "ETHERNET",
+    "sid": "GA-02082",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "EENET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.tar.ee.geant.net",
+        "interface": "lag-20"
+      }
+    ],
+    "imsid": 746437,
+    "monitored": true,
+    "name": "EENET-AP1-LAG",
+    "scid": "98b9312c-12e8-4ffd-a1b5-adabb93dd1cd",
+    "service_type": "ETHERNET",
+    "sid": "GA-02053",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.177/30",
+          "2001:798:23:10aa::1/126"
+        ],
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-22.320"
+      }
+    ],
+    "imsid": 747601,
+    "monitored": true,
+    "name": "PIONIER-AP2",
+    "scid": "98d4b8ea-6b9d-44a0-be08-96b26cfbe6ac",
+    "service_type": "GEANT IP",
+    "sid": "GS-00496",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662196,
+    "monitored": true,
+    "name": "HAMBURG-HAMBURG-1GBE-008(ETH)",
+    "scid": "99223166-d39a-44b4-b432-99826d1b4b09",
+    "service_type": "ETHERNET",
+    "sid": "GA-01648",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 720343,
+    "monitored": true,
+    "name": "FR-ORANGE-LL #1",
+    "scid": "9930c564-c59c-4b2d-ba73-86811cffa2d2",
+    "service_type": "ETHERNET",
+    "sid": "GA-01389",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.AM.OFFICE",
+        "port": "GE-0/0/4"
+      }
+    ],
+    "imsid": 658591,
+    "monitored": true,
+    "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-024(ETH)",
+    "scid": "993a9c60-52b3-4503-95e9-45b135a5fede",
+    "service_type": "ETHERNET",
+    "sid": "GA-01257",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708158,
+    "monitored": false,
+    "name": "NETRONOME-IDRAC-LON2-UK",
+    "scid": "99404c1f-776f-4e52-a896-5c469d6521b6",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00189",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [],
+    "imsid": 712371,
+    "monitored": true,
+    "name": "MD-VPN-VRR-PARIS-PSNC-PL",
+    "scid": "994d2974-f5c1-475a-95f5-7479f896c4cd",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01049",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.cor.ie.geant.net",
+        "interface": "lag-3"
+      }
+    ],
+    "imsid": 738857,
+    "monitored": true,
+    "name": "COR-LON2-LAG",
+    "scid": "999bff17-ee62-4159-b308-f628b969d11c",
+    "service_type": "ETHERNET",
+    "sid": "GA-02387",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SURFNET"
+    ],
+    "endpoints": [],
+    "imsid": 709774,
+    "monitored": true,
+    "name": "SURFNET EUMETCAST AP1",
+    "scid": "999edf24-acea-45c5-9e12-017994f4c46a",
+    "service_type": "EUMETSAT TERRESTRIAL",
+    "sid": "GS-01118",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "mx1.bud.hu - Telia Multicast Traffic",
+    "scid": "99ad5f17-7ef9-48bb-8809-27ac0b2a0701",
+    "service_type": null,
+    "sid": "DS-40475",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "REDIRIS"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae16.409"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.6"
+      }
+    ],
+    "imsid": 708369,
+    "monitored": true,
+    "name": "REDIRIS-USC-EXPRESSROUTE-VLAN409",
+    "scid": "99b3ff19-c603-4bb9-b3f9-baa332d17668",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01167",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae26"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae26.1"
+      }
+    ],
+    "imsid": 709259,
+    "monitored": true,
+    "name": "NEA3R-LAG",
+    "scid": "99cad702-0337-407d-8ee8-99944be56e9f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01970",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661249,
+    "monitored": false,
+    "name": "PS-MIL2-IT-MANAGEMENT",
+    "scid": "99eab051-56a3-4ef8-9d1f-77ef1af8d5f8",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00336",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ARNES"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.lju.si.geant.net",
+        "interface": "lag-20"
+      }
+    ],
+    "imsid": 745704,
+    "monitored": true,
+    "name": "ARNES-AP1-LAG",
+    "scid": "99fae9f9-ebd0-4249-b514-debd4f8c53c7",
+    "service_type": "ETHERNET",
+    "sid": "GA-01742",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.152/31",
+          "2001:798:111:1::2d/126"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae13.111"
+      }
+    ],
+    "imsid": 730103,
+    "monitored": true,
+    "name": "ESNET-GEN-LHCONE",
+    "scid": "9a256c19-4882-49c8-981e-cf901d29049c",
+    "service_type": "L3-VPN",
+    "sid": "GS-00820",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663209,
+    "monitored": false,
+    "name": "FRANKFURT-DRAC",
+    "scid": "9a4ac853-8812-4a33-86cb-5ef077169a75",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00179",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 724614,
+    "monitored": false,
+    "name": "GEN-LON-400G-IPTRUNK",
+    "scid": "9ad82e63-c60d-4df7-83df-02775669cc5f",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02229",
+    "speed": 429496729600,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-21:3508"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-34173"
+      }
+    ],
+    "imsid": 747534,
+    "monitored": false,
+    "name": "BRU-HAM-02519",
+    "scid": "9addc483-3867-425e-b25d-095b96d2ceaf",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02519",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.bil.es.geant.net",
+        "interface": "ae2"
+      }
+    ],
+    "imsid": 708924,
+    "monitored": true,
+    "name": "BIL-POR-LAG",
+    "scid": "9affe5a5-f371-4a4e-8ecc-610008067eb7",
+    "service_type": "ETHERNET",
+    "sid": "GA-02077",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 732387,
+    "monitored": true,
+    "name": "LONDON-LONDON-1GBE-011(GEANT)",
+    "scid": "9b0b2c64-68d8-4bb2-a8cc-11c2f3bf703a",
+    "service_type": "ETHERNET",
+    "sid": "GA-01471",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/2/6"
+      }
+    ],
+    "imsid": 727934,
+    "monitored": true,
+    "name": "PARIS 007B-PARIS 007B-10GBE-011(GEANT)",
+    "scid": "9b10ab6d-ac6a-4999-ab32-b81bd54413fd",
+    "service_type": "ETHERNET",
+    "sid": "GA-01393",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 743396,
+    "monitored": true,
+    "name": "THE-THE-MGMT-IPTRUNK",
+    "scid": "9b6752b2-887c-4702-a4d0-a4401922f06c",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02627",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.bra.sk.geant.net",
+        "interface": "ae1"
+      }
+    ],
+    "imsid": 729433,
+    "monitored": true,
+    "name": "BRA-BRA-LAG",
+    "scid": "9bedca61-682b-4dc8-822d-a643f0b39986",
+    "service_type": "ETHERNET",
+    "sid": "GA-02148",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GARR"
+    ],
+    "endpoints": [],
+    "imsid": 712388,
+    "monitored": false,
+    "name": "MD-VPN-VRR-PARIS-GARR-2-IT",
+    "scid": "9c192536-832f-4179-aa7f-0677afbbd90e",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01043",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "lon-lon2_GEANTOpen_INTERNET2-SINET_06002",
+    "scid": "9c4971b5-b8d9-49f6-a0c7-9ffa003cb612",
+    "service_type": null,
+    "sid": "DS-33151",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 679313,
+    "monitored": false,
+    "name": "NE-ESXI-FRA-DE-TNMS-VLAN11",
+    "scid": "9c5d3e38-d735-47be-ab54-8aebf71a3971",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00257",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661735,
+    "monitored": false,
+    "name": "PS-LON2-UK-MANAGEMENT",
+    "scid": "9d0a3d9b-d9e9-4d2d-93c9-c05956790bec",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00325",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.109.189/30"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "gr-3/0/0.10"
+      }
+    ],
+    "imsid": 732666,
+    "monitored": false,
+    "name": "GRE-MULTICAST-TUNNEL-INPE",
+    "scid": "9d127fd3-05d2-40a9-9eea-0a236f1ee65f",
+    "service_type": "EUMETSAT GRE",
+    "sid": "GS-01080",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/0/6"
+      }
+    ],
+    "imsid": 658905,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-060(ETH)",
+    "scid": "9d24ca58-1eb8-4465-89d7-b1b6ab69e62c",
+    "service_type": "ETHERNET",
+    "sid": "GA-01318",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "CERN-GVA-ExpressRoute-VLAN496",
+    "scid": "9d5f6dbd-cca7-449a-998d-803f720ddc96",
+    "service_type": null,
+    "sid": "DS-52997",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GRNET"
+    ],
+    "endpoints": [],
+    "imsid": 735201,
+    "monitored": true,
+    "name": "GRNET-AP1-LAG",
+    "scid": "9d857ce8-3384-43a3-86f0-79df2425f0fa",
+    "service_type": "ETHERNET",
+    "sid": "DA-01929",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "172.21.4.1/24"
+        ],
+        "hostname": "rt1.por.pt.geant.net",
+        "interface": "ae1.998"
+      }
+    ],
+    "imsid": 712190,
+    "monitored": false,
+    "name": "EX3400-MANAGEMENT-POR-PT",
+    "scid": "9d8d7def-8883-4db7-8d7a-34b17ad0efff",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00158",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 738848,
+    "monitored": false,
+    "name": "DCN-MANAGEMENT-LJU-SI",
+    "scid": "9da73917-07db-47be-8a7e-36d683c9ddec",
+    "service_type": "SERVER LINK",
+    "sid": "GS-??????",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "et-8/0/2"
+      },
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae13"
+      }
+    ],
+    "imsid": 733499,
+    "monitored": true,
+    "name": "RENATER 100GB-LL4",
+    "scid": "9dd89ef5-b26a-4f63-aa08-ab3a3b0b9de1",
+    "service_type": "ETHERNET",
+    "sid": "GA-01549",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 745053,
+    "monitored": true,
+    "name": "LJU-LJU-IPTRUNK",
+    "scid": "9df51263-91e8-466c-92e8-d836ea61856a",
+    "service_type": "IP TRUNK",
+    "sid": "GS-50057",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "ae17"
+      }
+    ],
+    "imsid": 658659,
+    "monitored": false,
+    "name": "LON2-PRD-ESX11-VM-TRAFFIC",
+    "scid": "9df568bd-ca1a-4c27-b183-f1d4fbfb178b",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01705",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CYNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.198/31",
+          "2001:798:1::1a5/126"
+        ],
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae14.333"
+      }
+    ],
+    "imsid": 733815,
+    "monitored": true,
+    "name": "CYNET-AP1-IAS",
+    "scid": "9e0297f7-e544-48f7-97f3-f3476967ff78",
+    "service_type": "GWS - INDIRECT",
+    "sid": "GS-02442",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "HEANET"
+    ],
+    "endpoints": [],
+    "imsid": 669436,
+    "monitored": true,
+    "name": "INEX-10G-3",
+    "scid": "9e0b5a24-1201-4f58-a9ef-8672355a66d3",
+    "service_type": "ETHERNET",
+    "sid": "GA-01639",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ROEDUNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.248/31",
+          "2001:798:99:1::d9/126"
+        ],
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae21.100"
+      }
+    ],
+    "imsid": 679571,
+    "monitored": true,
+    "name": "ROEDUNET-AP2",
+    "scid": "9e27aae3-41f4-4bc5-8159-718a51569501",
+    "service_type": "GEANT IP",
+    "sid": "GS-00510",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "FACEBOOK"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae14"
+      }
+    ],
+    "imsid": 738663,
+    "monitored": true,
+    "name": "VIE-FACEBOOK-LAG-1",
+    "scid": "9e6e1a2a-afb6-47d2-a9c8-0a4828adac66",
+    "service_type": "ETHERNET",
+    "sid": "GA-01852",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ge-0/3/2.402"
+      }
+    ],
+    "imsid": 661430,
+    "monitored": false,
+    "name": "VIE-GROOVE-2-MANAGEMENT",
+    "scid": "9e757aa2-31b7-4a9d-801c-5d6ba551c72c",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00383",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.kie.ua.geant.net",
+        "interface": "ae3"
+      }
+    ],
+    "imsid": 740198,
+    "monitored": true,
+    "name": "KIE-POZ-LAG",
+    "scid": "9e8a8143-bdee-431e-80e8-6b8d01d9ba82",
+    "service_type": "ETHERNET",
+    "sid": "GA-02026",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708991,
+    "monitored": false,
+    "name": "EUMETSAT-GRE-DWD",
+    "scid": "9e8cdad7-50a8-4cb6-ab61-c1e3a503eff7",
+    "service_type": "EUMETSAT GRE",
+    "sid": "GS-01075",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "DFN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.184/31",
+          "2001:798:111:1::31/126"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae11.111"
+      }
+    ],
+    "imsid": 743292,
+    "monitored": true,
+    "name": "DFN-AP1-LHCONE",
+    "scid": "9eac97b5-b3a8-4031-9a50-6925259a3cbf",
+    "service_type": "L3-VPN",
+    "sid": "GS-00816",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.109.210/31"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "gr-3/0/0.26"
+      }
+    ],
+    "imsid": 736888,
+    "monitored": false,
+    "name": "GRE-MULTICAST-TUNNEL-UTWENTE",
+    "scid": "9ee39dd4-eb34-41f1-a4bd-6de95361aca8",
+    "service_type": "EUMETSAT GRE",
+    "sid": "GS-02448",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "BUD.KIFU.OOB.ACCESS.ROUTER",
+        "port": "ETH"
+      },
+      {
+        "equipment": "TS1.BUD.HU.GEANT.NET(OPENGEAR)",
+        "port": "NET1"
+      }
+    ],
+    "imsid": 677556,
+    "monitored": true,
+    "name": "BUD OOB LINK",
+    "scid": "9efa712a-81f8-4a05-831d-d5fca0d48a62",
+    "service_type": "OOB IP LINK",
+    "sid": "GS-00396",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.vie.at.geant.net",
+        "interface": "lag-4"
+      }
+    ],
+    "imsid": 740946,
+    "monitored": true,
+    "name": "MIL2-VIE-LAG",
+    "scid": "9efecc9d-f8d5-4fcb-8d4d-8e8b9e864fa5",
+    "service_type": "ETHERNET",
+    "sid": "GA-01854",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "GEN01-GRV4",
+        "port": "1/2/5"
+      },
+      {
+        "equipment": "AMS01-GRV2",
+        "port": "1/2/5"
+      }
+    ],
+    "imsid": 739639,
+    "monitored": true,
+    "name": "AMS-GEN1-SURF-24056-2",
+    "scid": "9f21fd55-2923-4c07-b5f4-9b103cc5d50b",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-02534",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 703027,
+    "monitored": true,
+    "name": "SOF-VIE-LAG",
+    "scid": "9f25c285-dcd2-483f-9145-34c6bac8229e",
+    "service_type": "ETHERNET",
+    "sid": "GA-01855",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [],
+    "imsid": 736762,
+    "monitored": false,
+    "name": "EUMET-JEUNO-LON-CLPK-16027",
+    "scid": "9f299c1e-d893-417a-a6df-e70bee94a01b",
+    "service_type": "EUMETSAT INTERNATIONAL",
+    "sid": "GS-01092",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SWITCH"
+    ],
+    "endpoints": [],
+    "imsid": 709298,
+    "monitored": false,
+    "name": "GEN-LON-MISC-SWITCH-INTERNET2-18045",
+    "scid": "9f55eb6f-3f83-4260-91c3-1e1b2f3e1377",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00711",
+    "speed": 536870912000,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 744408,
+    "monitored": false,
+    "name": "ZAG-ZAG-IPTRUNK",
+    "scid": "9f6dcc3a-a075-415b-b4fd-ff1c2e1f6cee",
+    "service_type": "IP TRUNK",
+    "sid": "GS-50045",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [],
+    "imsid": 712407,
+    "monitored": true,
+    "name": "MD-VPN-VRR-LJUBLJANA-RENATER-FR",
+    "scid": "9fac3f99-40ab-4daa-8fcd-bd89e36177a6",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01030",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "lon-lon_GEANTOPEN_NORDUNET-TENET_18075",
+    "scid": "9fc8c366-35ff-42cd-a177-cbc5bc61dc2e",
+    "service_type": null,
+    "sid": "DS-43529",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "FCCN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.por.pt.geant.net",
+        "interface": "ae10"
+      }
+    ],
+    "imsid": 712357,
+    "monitored": true,
+    "name": "FCCN-AP2-LAG",
+    "scid": "a0335d99-4571-4769-8377-590ce191c564",
+    "service_type": "ETHERNET",
+    "sid": "GA-02072",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "UOM"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.128/31",
+          "2001:798:1::9d/126"
+        ],
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae19.333"
+      }
+    ],
+    "imsid": 720397,
+    "monitored": true,
+    "name": "UOM-AP2-100G-IAS",
+    "scid": "a0728b5d-5a68-4b81-8c38-6360a1b0ff62",
+    "service_type": "GWS - INDIRECT",
+    "sid": "GS-02165",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "KIFU"
+    ],
+    "endpoints": [],
+    "imsid": 709759,
+    "monitored": true,
+    "name": "KIFU EUMETCAST AP2",
+    "scid": "a0995ce1-d736-4217-a0ab-91cc913e1825",
+    "service_type": "EUMETSAT TERRESTRIAL",
+    "sid": "GS-01112",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae3"
+      }
+    ],
+    "imsid": 740788,
+    "monitored": true,
+    "name": "BUD-VIE-LAG",
+    "scid": "a09dda66-6143-4e0a-a4b9-deb8db939104",
+    "service_type": "ETHERNET",
+    "sid": "GA-01907",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 701541,
+    "monitored": true,
+    "name": "AMS-LON-LAG",
+    "scid": "a09f0004-8b07-406e-b417-3dfd82e7a749",
+    "service_type": "ETHERNET",
+    "sid": "GA-01833",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-0/0/40"
+      }
+    ],
+    "imsid": 717050,
+    "monitored": true,
+    "name": "LONDON 2-LONDON 2-10GBE-005(GEANT)",
+    "scid": "a0b6b955-bdc4-4170-a324-6af417268420",
+    "service_type": "ETHERNET",
+    "sid": "GA-01665",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "ams-bru_Belnet_iMINDS-GTS_15002",
+    "scid": "a0c2e873-cce4-4e40-9da4-dcd88ae08580",
+    "service_type": null,
+    "sid": "DS-28665",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.156/31",
+          "2001:798:cc:1::f9/126"
+        ],
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-4.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.157/31",
+          "2001:798:cc:1::fa/126"
+        ],
+        "hostname": "rt0.poz.pl.geant.net",
+        "interface": "lag-4.0"
+      }
+    ],
+    "imsid": 740148,
+    "monitored": true,
+    "name": "HAM-POZ-IPTRUNK",
+    "scid": "a0d133c9-4497-4d9d-bf01-3993cb69217e",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02339",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "WP6T3"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-11/0/0"
+      }
+    ],
+    "imsid": 659088,
+    "monitored": true,
+    "name": "PARIS-BMS-SRV4-10GBE-001",
+    "scid": "a0f039ab-d90d-4271-bcb8-ab4a96687db6",
+    "service_type": "ETHERNET",
+    "sid": "GA-01381",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "REDIRIS"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.3"
+      },
+      {
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae16.412"
+      }
+    ],
+    "imsid": 707138,
+    "monitored": true,
+    "name": "REDIRIS-UCLM-EXPRESSROUTE-VLAN412",
+    "scid": "a0f73cb8-d5bf-4b4f-baf7-2cd94ff3acac",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01164",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [
+      {
+        "hostname": "srx2.am.office.geant.net",
+        "interface": "ge-0/0/2"
+      },
+      {
+        "addresses": [
+          "145.145.4.187/31",
+          "2001:610:fc7:0:145:145:4:187/127"
+        ],
+        "hostname": "srx2.am.office.geant.net",
+        "interface": "ge-0/0/2.0"
+      }
+    ],
+    "imsid": 708260,
+    "monitored": false,
+    "name": "SRX2-AMS-TO-SURFNET-SECONDARY",
+    "scid": "a1015a70-0db4-4c21-bc9b-b4dcb63771a9",
+    "service_type": "CORPORATE",
+    "sid": "GS-00002",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "mx1.lis.pt - Traffic - ae10 - LAG CUSTOMER FCT SRF9928603 | aka FCCN",
+    "scid": "a108c692-9c44-4667-9d7e-b0ece3419f14",
+    "service_type": null,
+    "sid": "GA-01765",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [],
+    "imsid": 731512,
+    "monitored": false,
+    "name": "NORDUNET-LAUREA-EXPRESSROUTE-VLAN3901",
+    "scid": "a10eeca9-66a8-48f3-a1a6-0dd814acdbec",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01152",
+    "speed": 118111600640,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "KIFU"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.85/30",
+          "2001:798:1::69/126"
+        ],
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae18.333"
+      }
+    ],
+    "imsid": 734862,
+    "monitored": true,
+    "name": "KIFU-AP2-IAS",
+    "scid": "a11214f3-cb4f-47fe-a55f-85877a35cc58",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00576",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "AfgREN AP1 IAS",
+    "scid": "a13afd7e-a798-40ad-b530-30e380f853c3",
+    "service_type": null,
+    "sid": "DS-40165",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "DFN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.217/30",
+          "2001:0798:0014:10aa::9/126"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae11.100"
+      }
+    ],
+    "imsid": 743295,
+    "monitored": true,
+    "name": "DFN-AP1",
+    "scid": "a13b95b3-aa03-496e-9c8b-acc50fbacb99",
+    "service_type": "GEANT IP",
+    "sid": "GS-00452",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ae3"
+      }
+    ],
+    "imsid": 740147,
+    "monitored": true,
+    "name": "POZ-POZ-LAG",
+    "scid": "a13bc58d-b6d4-4356-9583-96669d1ad485",
+    "service_type": "ETHERNET",
+    "sid": "GA-02526",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "MICROSOFT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-21:3903"
+      }
+    ],
+    "imsid": 747628,
+    "monitored": true,
+    "name": "AMS-HAM-MSE-01151",
+    "scid": "a14205cc-9bb6-421c-a796-2b1195f41e56",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-01151",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx2.lis.pt.geant.net",
+        "interface": "ae3"
+      }
+    ],
+    "imsid": 707340,
+    "monitored": true,
+    "name": "LIS-POR-LAG",
+    "scid": "a147c6bc-88ae-41f3-8a49-93083ef267a8",
+    "service_type": "ETHERNET",
+    "sid": "GA-01787",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "ae3"
+      }
+    ],
+    "imsid": 738841,
+    "monitored": true,
+    "name": "LON2-LON2-800G-LAG",
+    "scid": "a1518382-42c3-4387-ad7b-070f2b02a342",
+    "service_type": "ETHERNET",
+    "sid": "GA-02468",
+    "speed": 858993459200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 703050,
+    "monitored": true,
+    "name": "HAM-TAL-LAG",
+    "scid": "a1639b57-1dbc-4554-a726-a1e88e875313",
+    "service_type": "ETHERNET",
+    "sid": "GA-01895",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GRNET"
+    ],
+    "endpoints": [],
+    "imsid": 709755,
+    "monitored": true,
+    "name": "GRNET EUMETCAST AP2",
+    "scid": "a175ebed-8b61-4433-aac6-e28fc5b02bff",
+    "service_type": "EUMETSAT TERRESTRIAL",
+    "sid": "GS-01108",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "UBUNTUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/3/2.401"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae26.401"
+      }
+    ],
+    "imsid": 709304,
+    "monitored": true,
+    "name": "LON-LON-MISC-UBUNTUNET-CANARIE-170351",
+    "scid": "a181a454-92a0-4415-887a-f88e829e9778",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00727",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CESNET"
+    ],
+    "endpoints": [],
+    "imsid": 709744,
+    "monitored": true,
+    "name": "CESNET EUMETCAST AP2",
+    "scid": "a1ac42e6-b6da-493e-b73c-f364d9b2b3c6",
+    "service_type": "EUMETSAT TERRESTRIAL",
+    "sid": "GS-01100",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.121/30",
+          "2001:798:1::95/126"
+        ],
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ae11.333"
+      }
+    ],
+    "imsid": 660626,
+    "monitored": true,
+    "name": "PIONIER-AP1-IAS",
+    "scid": "a1bfe136-6c25-4349-8ba3-46d23c2e76e1",
+    "service_type": "GWS - INDIRECT",
+    "sid": "GS-00539",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.229/30",
+          "2001:0798:0029:10aa::9/126"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae15.212"
+      }
+    ],
+    "imsid": 661489,
+    "monitored": true,
+    "name": "FR-ESNET",
+    "scid": "a1cdca5b-85e1-45a0-85dc-688ffdacc959",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00878",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.dub.ie.geant.net",
+        "interface": "pwe-113015"
+      },
+      {
+        "hostname": "rt0.dub.ie.geant.net",
+        "interface": "lag-22:3015"
+      }
+    ],
+    "imsid": 747355,
+    "monitored": true,
+    "name": "GEANT_EPIPE_113015",
+    "scid": "a1e14ab7-d48d-444b-99ff-9357dd028650",
+    "service_type": "ETHERNET",
+    "sid": "GS-00690",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [],
+    "imsid": 659040,
+    "monitored": true,
+    "name": "PRAGUE-PRAGUE-1GBE-010(ETH)",
+    "scid": "a1e3c639-3ac5-4e04-9e7d-3b09d3aa1218",
+    "service_type": "ETHERNET",
+    "sid": "GA-01441",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662947,
+    "monitored": false,
+    "name": "GEN-GROOVE-2",
+    "scid": "a1fabce4-772f-4453-bcda-726ac1e1f65c",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00183",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 732265,
+    "monitored": true,
+    "name": "ZAGREB 1-ZAGREB 1-1GBE-026(GEANT)",
+    "scid": "a20aab85-341e-4c78-96eb-0fb927cb79f1",
+    "service_type": "ETHERNET",
+    "sid": "GA-01492",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663246,
+    "monitored": false,
+    "name": "PS-DUB-IE-IDRAC-VLAN23",
+    "scid": "a223642b-be91-4fcb-8845-fff522a5a267",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00296",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.127.180/31"
+        ],
+        "hostname": "rt1.bil.es.geant.net",
+        "interface": "ae15.88"
+      }
+    ],
+    "imsid": 721130,
+    "monitored": true,
+    "name": "EUMET-BUCC-BIL-20117",
+    "scid": "a240aa5d-cc1d-4b60-9f7a-11637797c670",
+    "service_type": "GEANT IP",
+    "sid": "GS-00458",
+    "speed": 430570471424,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661499,
+    "monitored": false,
+    "name": "LON-GROOVE-2",
+    "scid": "a249a0fc-3b67-48dc-b1a4-31c5d45ab554",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00230",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "KREONET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.8/31",
+          "2001:798:111:1::89/126"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae15.111"
+      }
+    ],
+    "imsid": 734566,
+    "monitored": false,
+    "name": "NL-KREONET-LHCONE",
+    "scid": "a26cad83-788b-441d-a3d8-aa5efd763613",
+    "service_type": "L3-VPN",
+    "sid": "GS-00837",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "RedIRIS-GN-XiFi-VPN-Proxy-Marseille-L3VPN",
+    "scid": "a29773b4-bf38-4e13-a220-3cf690c4ee22",
+    "service_type": null,
+    "sid": "DS-27547",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 745431,
+    "monitored": false,
+    "name": "ATH2-ATH2-MGMT-IPTRUNK",
+    "scid": "a29c38c4-3fcf-48c6-a87c-ee6da97f0368",
+    "service_type": "IP TRUNK",
+    "sid": "GS-50006",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 710811,
+    "monitored": true,
+    "name": "BUC-FRA-LAG",
+    "scid": "a2a6e1c9-a992-4edb-8921-7a2d5ee8b803",
+    "service_type": "ETHERNET",
+    "sid": "GA-01995",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "INTERNET2"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "192.168.150.2/30"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae15.500"
+      }
+    ],
+    "imsid": 677814,
+    "monitored": false,
+    "name": "INTERNET2-TESTVLAN-RTT",
+    "scid": "a2d826bf-fe04-48a3-b0e2-36fa514d77dc",
+    "service_type": "GEANT IP",
+    "sid": "GS-00475",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.bra.sk.geant.net",
+        "interface": "ae2"
+      }
+    ],
+    "imsid": 742923,
+    "monitored": true,
+    "name": "BRA-BRA-MGMT-LAG",
+    "scid": "a2ec23d0-56dd-4896-84df-c01501760271",
+    "service_type": "ETHERNET",
+    "sid": "GA-02600",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.92/31",
+          "2001:798:cc:1::6d/126"
+        ],
+        "hostname": "mx2.lis.pt.geant.net",
+        "interface": "ae3.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.93/31",
+          "2001:798:cc:1::6e/126"
+        ],
+        "hostname": "rt1.por.pt.geant.net",
+        "interface": "ae3.0"
+      }
+    ],
+    "imsid": 708705,
+    "monitored": true,
+    "name": "LIS-POR-IPTRUNK",
+    "scid": "a3005403-d0de-4025-b0dd-1e8a35ac3962",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00050",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "TENET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae24"
+      }
+    ],
+    "imsid": 732993,
+    "monitored": true,
+    "name": "NL-TENET-LAG",
+    "scid": "a322c093-b337-4680-a25a-1f0465b080ff",
+    "service_type": "ETHERNET",
+    "sid": "GA-02142",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.233/30"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5.111"
+      }
+    ],
+    "imsid": 661194,
+    "monitored": true,
+    "name": "NORDUNET-AP1-IPV4-LHCONE",
+    "scid": "a33c7189-776e-4d9d-897c-9add7ed7e206",
+    "service_type": "L3-VPN",
+    "sid": "GS-00841",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663147,
+    "monitored": false,
+    "name": "DASHBOARD-SERVER-LON2-VLAN50",
+    "scid": "a37c049d-6265-4146-8356-9fc64cf152a9",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00113",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ARNES"
+    ],
+    "endpoints": [],
+    "imsid": 659340,
+    "monitored": true,
+    "name": "ARNES-AP3-LAG",
+    "scid": "a3a0f413-ad56-4c50-9b14-8f055086606a",
+    "service_type": "ETHERNET",
+    "sid": "GA-01767",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CSTNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.2000"
+      }
+    ],
+    "imsid": 738711,
+    "monitored": true,
+    "name": "CSTNET-AMS-LHCONE",
+    "scid": "a3a4e4ed-a33c-4120-afef-fe5361718758",
+    "service_type": "L3-VPN",
+    "sid": "GS-02537",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663194,
+    "monitored": false,
+    "name": "AMS-GROOVE-2-MANAGEMENT",
+    "scid": "a3aabf40-8493-4aaf-8f15-f38ce8636584",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00094",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SETCOR"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.zag.hr.geant.net",
+        "interface": "lag-26"
+      }
+    ],
+    "imsid": 747906,
+    "monitored": true,
+    "name": "SETCOR-HR-LAG",
+    "scid": "a3af7ce3-592e-4fd4-a0a2-91dd653e174e",
+    "service_type": "ETHERNET",
+    "sid": "GA-02000",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 679156,
+    "monitored": true,
+    "name": "FRANKFURT-FRANKFURT-1GBE-024(ETH)",
+    "scid": "a3eb91fa-7d24-43f5-9e27-bf479d896dff",
+    "service_type": "ETHERNET",
+    "sid": "GA-01622",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.104.233/30"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae2.15"
+      }
+    ],
+    "imsid": 740679,
+    "monitored": true,
+    "name": "LON-EUMETSAT-SERVER-DATA-TRAFFIC",
+    "scid": "a3ee647f-7a30-461f-af23-e5c3a74ea6d9",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-02313",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SCION"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-0/1/6.1624"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae19.1624"
+      }
+    ],
+    "imsid": 736667,
+    "monitored": false,
+    "name": "FRA-PAR-SCION-SCION-INTERNET2-1",
+    "scid": "a4109552-ba22-4eb4-b8dd-05245f4e8497",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02296",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662253,
+    "monitored": true,
+    "name": "FRANKFURT-FRANKFURT-1GBE-022(ETH)",
+    "scid": "a4456592-8c34-434f-98fe-fdf6394a6e09",
+    "service_type": "ETHERNET",
+    "sid": "GA-01608",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "AT-Microsoft LAG",
+    "scid": "a4a62413-ac98-4038-96b5-2cb1b02039b8",
+    "service_type": null,
+    "sid": "DS-37947",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ROEDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.buc.ro.geant.net",
+        "interface": "lag-20"
+      }
+    ],
+    "imsid": 747888,
+    "monitored": true,
+    "name": "ROEDUNET-AP1-LAG",
+    "scid": "a4bb6f71-c439-4238-8305-2c490249c613",
+    "service_type": "ETHERNET",
+    "sid": "GA-01934",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [],
+    "imsid": 708231,
+    "monitored": false,
+    "name": "LON-EEX-ESNET-1G",
+    "scid": "a4e49a3d-44be-4cf5-a2db-5d61c2865483",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00887",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.109.200/31"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "gr-3/0/0.18"
+      }
+    ],
+    "imsid": 732669,
+    "monitored": false,
+    "name": "GRE-MULTICAST-TUNNEL-IMPA",
+    "scid": "a4eeaed6-709e-4797-ac64-ab1c83a0af32",
+    "service_type": "EUMETSAT GRE",
+    "sid": "GS-01079",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-0/0/6"
+      }
+    ],
+    "imsid": 732310,
+    "monitored": true,
+    "name": "FRANKFURT 15-FRANKFURT 15-10GBE-049(GEANT)",
+    "scid": "a4f32340-4b35-4b4a-b1b3-7b15bf515bb4",
+    "service_type": "ETHERNET",
+    "sid": "GA-02198",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CLOUDFERRO"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "45.92.241.127/31",
+          "2a01:9aa0:beef::127/127"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae35.0"
+      }
+    ],
+    "imsid": 708235,
+    "monitored": true,
+    "name": "DE-CLOUDFERRO-IAS",
+    "scid": "a4f4719c-a4fc-417f-b0df-545dd950111d",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-00603",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [
+      {
+        "hostname": "srx1.am.office.geant.net",
+        "interface": "ge-0/0/15"
+      },
+      {
+        "addresses": [
+          "145.145.4.185/31",
+          "2001:610:fc7:0:145:145:4:185/127"
+        ],
+        "hostname": "srx1.am.office.geant.net",
+        "interface": "ge-0/0/15.0"
+      }
+    ],
+    "imsid": 708298,
+    "monitored": false,
+    "name": "SRX1-AMS-TO-SURFNET-PRIMARY",
+    "scid": "a53344f7-59bc-40f0-84a8-9602bf99098d",
+    "service_type": "CORPORATE",
+    "sid": "GS-00001",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-114016"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-21:705"
+      },
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "pwe-114016"
+      },
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "lag-22:705"
+      }
+    ],
+    "imsid": 744022,
+    "monitored": true,
+    "name": "GEANT_EPIPE_114016",
+    "scid": "a5534a2b-2df7-414c-aa73-fd4d75992a68",
+    "service_type": "ETHERNET",
+    "sid": "GS-00668",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "UBUNTUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae26.802"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae17.802"
+      }
+    ],
+    "imsid": 735619,
+    "monitored": true,
+    "name": "AMS-LON-MISC-UBUNTUNET-INTERNET2-170342",
+    "scid": "a558186a-95f8-4346-88c0-f155536f10f8",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00647",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20:3060"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-125006"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae23.3060"
+      }
+    ],
+    "imsid": 744345,
+    "monitored": true,
+    "name": "OFCFODMOB-02630",
+    "scid": "a5a37a30-24f5-44f2-976e-61eb41565abf",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02630",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SCION"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/3/4.1623"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae19.1623"
+      }
+    ],
+    "imsid": 736659,
+    "monitored": false,
+    "name": "PAR-PAR-SCION-INTERNET2-SCION-2",
+    "scid": "a5ceb962-4a11-43a5-b568-ce9b94899a0a",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02309",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 706154,
+    "monitored": false,
+    "name": "MIL2 OOB LINK",
+    "scid": "a5ff5567-1125-4de9-b016-2fd7cdfdc3e7",
+    "service_type": "OOB IP LINK",
+    "sid": "GS-00410",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658515,
+    "monitored": false,
+    "name": "730XD-3-VSAN-TRAFFIC-LAG",
+    "scid": "a6410ba1-5717-46cc-b0a7-12097816639f",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01677",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "UOM"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.74/31",
+          "2001:798:99:1::115/126"
+        ],
+        "hostname": "rt1.mil2.it.geant.net",
+        "interface": "ae11.100"
+      }
+    ],
+    "imsid": 722110,
+    "monitored": true,
+    "name": "UOM-AP1",
+    "scid": "a644191f-4b58-4549-8bef-d6ff8c40f226",
+    "service_type": "GEANT IP",
+    "sid": "GS-00519",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CAREN"
+    ],
+    "endpoints": [],
+    "imsid": 662501,
+    "monitored": true,
+    "name": "DE-CAREN-LAG",
+    "scid": "a661ff93-b40d-4df3-8aeb-7da22c002976",
+    "service_type": "ETHERNET",
+    "sid": "GA-01942",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.par.fr.geant.net",
+        "interface": "lag-5"
+      }
+    ],
+    "imsid": 747403,
+    "monitored": true,
+    "name": "COR-PAR-LAG",
+    "scid": "a6a14251-41a4-4b8d-95d5-b6537c5b3348",
+    "service_type": "ETHERNET",
+    "sid": "GA-02479",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "xe-7/0/0"
+      }
+    ],
+    "imsid": 742610,
+    "monitored": true,
+    "name": "MAD-MAD-MGMT-LINK-1",
+    "scid": "a6bf1f39-68b7-4d24-8a2f-22f6548e48c9",
+    "service_type": "ETHERNET",
+    "sid": "GA-01661",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "2001:798:111:1::5/126"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae12.116"
+      }
+    ],
+    "imsid": 661664,
+    "monitored": false,
+    "name": "RENATER-AP1-IPV6-LHCONE",
+    "scid": "a6eb401d-8a68-42d2-8158-6119257850e8",
+    "service_type": "L3-VPN",
+    "sid": "GS-00854",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661572,
+    "monitored": false,
+    "name": "SDX-L2-PILOT-BR51-OF-P3-MIL2",
+    "scid": "a6f77830-ec28-46f9-b5a5-e8ce976f38fe",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00761",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "mx1.lon.uk - DE-NISN - Multicast Traffic",
+    "scid": "a73f487f-b9ff-40e1-b770-80ddae228d95",
+    "service_type": null,
+    "sid": "DS-11633",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.buc.ro.geant.net",
+        "interface": "lag-2"
+      }
+    ],
+    "imsid": 745567,
+    "monitored": true,
+    "name": "BUC-BUC-MGMT-LAG",
+    "scid": "a7509de9-1932-4c0b-a413-e24a4b7e68e7",
+    "service_type": "ETHERNET",
+    "sid": "GA-50062",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.144/31",
+          "2001:798:cc::e1/126"
+        ],
+        "hostname": "rt0.lon2.uk.geant.net",
+        "interface": "lag-3.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.145/31",
+          "2001:798:cc::e2/126"
+        ],
+        "hostname": "rt0.par.fr.geant.net",
+        "interface": "lag-3.0"
+      }
+    ],
+    "imsid": 746141,
+    "monitored": true,
+    "name": "LON2-PAR-ROLR-IPTRUNK$GS-50066",
+    "scid": "a78018dc-65d8-458d-86c8-d2f821983bf8",
+    "service_type": "IP TRUNK",
+    "sid": "GS-50066",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [],
+    "imsid": 658877,
+    "monitored": true,
+    "name": "PRAGUE-PRAGUE-1GBE-007(ETH)",
+    "scid": "a7830e42-93f2-4d00-8508-9788dcdfafb7",
+    "service_type": "ETHERNET",
+    "sid": "GA-01434",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "DFN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae20.420"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae11.420"
+      }
+    ],
+    "imsid": 724886,
+    "monitored": true,
+    "name": "FRA-GEN-DFN-NKN-22079",
+    "scid": "a7a623f6-90f0-4997-b9f7-2b1de49e23ae",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02210",
+    "speed": 450971566080,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "INTERNET2"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/0/2.2210"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae19.2210"
+      }
+    ],
+    "imsid": 736739,
+    "monitored": true,
+    "name": "LON-PAR-GEANTOPEN-HBKU-INTERNET2-190091",
+    "scid": "a7b7c01b-f359-470b-afa9-69c9f236d7f6",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00967",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663141,
+    "monitored": false,
+    "name": "AMS-SINET-INTERNET-ACCESS",
+    "scid": "a7c775cc-0d11-4c73-8fed-aab5148c43bb",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00098",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663172,
+    "monitored": false,
+    "name": "GIDP-BUD-HU-VLAN93",
+    "scid": "a7d36adf-1fe0-44a2-afd9-d96b87bf702b",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00188",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661231,
+    "monitored": false,
+    "name": "KVMOIP-ATH2-GR",
+    "scid": "a7fa137c-d28b-44c0-89d8-62603b7c367f",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00217",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 729572,
+    "monitored": true,
+    "name": "LJU01-MIL2-IPTRUNK",
+    "scid": "a82a1580-c1b0-453e-b53c-44e0cbf4c60f",
+    "service_type": "IP TRUNK",
+    "sid": "DS-00032",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "172.21.22.1/24"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae1.998"
+      },
+      {
+        "addresses": [
+          "62.40.117.14/31"
+        ],
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "ae1.998"
+      }
+    ],
+    "imsid": 729100,
+    "monitored": false,
+    "name": "EX3400-MANAGEMENT-FRA-DE",
+    "scid": "a8302418-4619-41bf-9c31-9182e70709eb",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00151",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 744407,
+    "monitored": true,
+    "name": "ZAG-ZAG-MGMT-LAG",
+    "scid": "a83fa432-e088-4946-9dc5-981b5f78316b",
+    "service_type": "ETHERNET",
+    "sid": "GA-50047",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.AM.OFFICE",
+        "port": "GE-0/0/1"
+      }
+    ],
+    "imsid": 658359,
+    "monitored": true,
+    "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-004(ETH)",
+    "scid": "a8838a0f-8c0a-405a-975e-4d5750d08e7d",
+    "service_type": "ETHERNET",
+    "sid": "GA-01253",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.par.fr.geant.net",
+        "interface": "ae0"
+      }
+    ],
+    "imsid": 712106,
+    "monitored": true,
+    "name": "LAG-QFX.PAR.FR_AE0",
+    "scid": "a8ca2183-dd11-4476-b725-c35e6c640a95",
+    "service_type": "ETHERNET",
+    "sid": "GA-01714",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.18"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28.4093"
+      }
+    ],
+    "imsid": 739681,
+    "monitored": true,
+    "name": "BELNET-PREMIER-EXPRESSROUTE-VLAN4093",
+    "scid": "a8d29b87-062a-47ad-be96-c114c1cd6fde",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01127",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "AMT1.AMS.NL",
+        "port": "AE1.20"
+      },
+      {
+        "addresses": [
+          "83.97.90.38/31"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae7.20"
+      }
+    ],
+    "imsid": 744351,
+    "monitored": false,
+    "name": "AMS-AMS-AMT-RELAYLINK-IAS",
+    "scid": "a8f1ecdd-e452-4ccd-be49-faa493755704",
+    "service_type": "SERVER LINK",
+    "sid": "GS-02636",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661268,
+    "monitored": false,
+    "name": "LON2-GROOVE-2",
+    "scid": "a8fabcf5-9b04-4748-b51d-c9b2101fc87d",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00240",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CARNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.9/30",
+          "2001:798:10:10aa::9/126"
+        ],
+        "hostname": "rt0.zag.hr.geant.net",
+        "interface": "lag-22.100"
+      }
+    ],
+    "imsid": 747838,
+    "monitored": true,
+    "name": "CARNET-AP1",
+    "scid": "a90abebc-5c17-4fe9-8d23-31712fb9e2e0",
+    "service_type": "GEANT IP",
+    "sid": "GS-00440",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ARNES"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.13/30",
+          "2001:798:1::11/126"
+        ],
+        "hostname": "rt0.zag.hr.geant.net",
+        "interface": "lag-20.333"
+      }
+    ],
+    "imsid": 747852,
+    "monitored": true,
+    "name": "ARNES-AP2-IAS",
+    "scid": "a928a705-e4aa-456e-a3e3-ea6ecd698db6",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00553",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "LAT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.rig.lv.geant.net",
+        "interface": "lag-20"
+      }
+    ],
+    "imsid": 745953,
+    "monitored": true,
+    "name": "LAT-AP1-LAG",
+    "scid": "a9382674-1185-4571-b783-45564390b5fe",
+    "service_type": "ETHERNET",
+    "sid": "GA-02073",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ge-0/3/2.21"
+      }
+    ],
+    "imsid": 661748,
+    "monitored": false,
+    "name": "HADES-VIE-AT-DRAC",
+    "scid": "a95e2b40-8dbf-43d6-9059-0325cd790cda",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00198",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ge-0/3/2"
+      }
+    ],
+    "imsid": 659059,
+    "monitored": true,
+    "name": "VIENNA-VIENNA-1GBE-006(ETH)",
+    "scid": "a9785dd1-f731-41b7-8ca9-08d520d4f7b9",
+    "service_type": "ETHERNET",
+    "sid": "GA-01485",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CNGI-6IX"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.10/31",
+          "2001:798:111:1::a1/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-1/0/0.111"
+      }
+    ],
+    "imsid": 661398,
+    "monitored": true,
+    "name": "UK-CNGI-6IX-CERNET-LHCONE",
+    "scid": "a98466d5-82c1-4359-98ab-d3b050eb58b0",
+    "service_type": "L3-VPN",
+    "sid": "GS-00815",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [],
+    "imsid": 712144,
+    "monitored": true,
+    "name": "GEANT-CORPORATE-VIAVODAFONE-VRF",
+    "scid": "a9bfad01-08a5-4331-9f5d-9b6ff80f8d1c",
+    "service_type": "CORPORATE",
+    "sid": "GS-00465",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae2"
+      }
+    ],
+    "imsid": 739044,
+    "monitored": true,
+    "name": "FRA-FRA-800G-LAG",
+    "scid": "a9e64dc1-a71c-4818-aaf4-9272bf61f66f",
+    "service_type": "ETHERNET",
+    "sid": "GA-02459",
+    "speed": 858993459200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.mil2.it.geant.net",
+        "interface": "lag-3"
+      }
+    ],
+    "imsid": 746143,
+    "monitored": true,
+    "name": "LJU-MIL2-LAG",
+    "scid": "a9ff049e-d47c-4063-a72f-c360bcab9870",
+    "service_type": "ETHERNET",
+    "sid": "GA-01775",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "HEANET"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PF1-RARE.FRA.DE.GEANT.NET",
+        "port": "XE-2"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-0/0/2"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-0/0/2.1213"
+      },
+      {
+        "hostname": "rt0.dub.ie.geant.net",
+        "interface": "pwe-120062"
+      },
+      {
+        "hostname": "rt0.dub.ie.geant.net",
+        "interface": "lag-20:1213"
+      }
+    ],
+    "imsid": 747360,
+    "monitored": false,
+    "name": "DUB-FRA-HEANET-RARE-20062",
+    "scid": "aa102f6c-4e74-40ac-8925-dd0343e7d15f",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00689",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 734735,
+    "monitored": true,
+    "name": "ATH2-MIL2-LAG",
+    "scid": "aa2c87a7-9646-4d09-b168-6a2f454b6caf",
+    "service_type": "ETHERNET",
+    "sid": "DA-000197",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "AMS-HAM-SCION-GTS-20054",
+    "scid": "aa466f4f-425e-4cf7-80b8-5ea78301fdeb",
+    "service_type": null,
+    "sid": "DS-51656",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662997,
+    "monitored": true,
+    "name": "SURFNET VLAN 100 - FOR LINK TO GEANT IT VRF VIA MX1.AMS - SURFNET SERVICE ID: 5836",
+    "scid": "aa7eb1d5-6812-40f0-b6fc-a7af8dfd7c15",
+    "service_type": "ETHERNET",
+    "sid": "GS-00372",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-4"
+      }
+    ],
+    "imsid": 740146,
+    "monitored": true,
+    "name": "HAM-POZ-LAG",
+    "scid": "aa8edd2c-9e45-4b24-9a72-6bdaecdf5614",
+    "service_type": "ETHERNET",
+    "sid": "GA-02340",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662297,
+    "monitored": true,
+    "name": "AMSTERDAM-AMSTERDAM-10GBE-007(GEANT)",
+    "scid": "aac991d8-0363-4af1-81f2-888ada477c53",
+    "service_type": "ETHERNET",
+    "sid": "GA-01751",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 738105,
+    "monitored": true,
+    "name": "FRANKFURT 15-FRANKFURT 15-LAG-019(GEANT)",
+    "scid": "aaea7fdd-77a7-4a7e-86e7-2a953c1003a5",
+    "service_type": "ETHERNET",
+    "sid": "GA-01968",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 659066,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-1GBE-018(ETH)",
+    "scid": "ab1e47f4-46ce-4f33-b475-55007fac35ca",
+    "service_type": "ETHERNET",
+    "sid": "GA-01504",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae3"
+      }
+    ],
+    "imsid": 738584,
+    "monitored": true,
+    "name": "LON-LON-800G-LAG",
+    "scid": "ab39ba80-4b82-45d6-b9e7-223277434c1f",
+    "service_type": "ETHERNET",
+    "sid": "GA-02465",
+    "speed": 858993459200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "AMT1.FRA.DE",
+        "port": "AE1"
+      }
+    ],
+    "imsid": 744378,
+    "monitored": true,
+    "name": "FRA-AMT-LAG",
+    "scid": "ab3b2b55-98b2-451f-ae6c-f1e51151dbed",
+    "service_type": "ETHERNET",
+    "sid": "GA-02300",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "xe-2/0/2"
+      }
+    ],
+    "imsid": 740086,
+    "monitored": true,
+    "name": "GENEVA-GENEVA-10GBE-006(GEANT)",
+    "scid": "ab442769-0f3d-449b-a781-5bf65210fe8b",
+    "service_type": "ETHERNET",
+    "sid": "GA-01538",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae32"
+      }
+    ],
+    "imsid": 720097,
+    "monitored": true,
+    "name": "FR-ORANGE-LAG-3",
+    "scid": "ab75ebca-c7cb-4c7c-8519-f2c6a3a51c6d",
+    "service_type": "ETHERNET",
+    "sid": "GA-02179",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.chi.md.geant.net",
+        "interface": "ae5"
+      }
+    ],
+    "imsid": 744731,
+    "monitored": true,
+    "name": "BUC2-CHI-LAG",
+    "scid": "ab91e089-80e9-467e-87ce-8c6f017ddd0d",
+    "service_type": "ETHERNET",
+    "sid": "GA-02018",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708278,
+    "monitored": false,
+    "name": "FLOWMON-PAR-FR-IDRAC",
+    "scid": "aba3a178-0aca-45c1-91cd-280efc25990e",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00167",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ae11"
+      }
+    ],
+    "imsid": 659367,
+    "monitored": true,
+    "name": "PIONIER-AP1-LAG",
+    "scid": "abb1d5dc-6b67-4747-9dd4-5459a56710bc",
+    "service_type": "ETHERNET",
+    "sid": "GA-01811",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.150/31",
+          "2001:798:111:1::29/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae13.111"
+      }
+    ],
+    "imsid": 730146,
+    "monitored": true,
+    "name": "ESNET-LON-LHCONE",
+    "scid": "abc51e3b-812b-40d8-b7d3-20f41b255d32",
+    "service_type": "L3-VPN",
+    "sid": "GS-00821",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "ae3"
+      }
+    ],
+    "imsid": 658679,
+    "monitored": false,
+    "name": "LON2-PRD-ESX03-ESXI-TRAFFIC",
+    "scid": "abdc166d-3307-4e19-afe7-b1021a32168b",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01691",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661299,
+    "monitored": false,
+    "name": "PS-LON-UK-PSMP-BWCTL-VLAN21",
+    "scid": "abf4169e-5c61-41f3-80f7-0f646ba5a83b",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00321",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "FACEBOOK"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "103.4.98.47/31",
+          "2620:0:1cff:dead:beee::105/127"
+        ],
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae16.0"
+      }
+    ],
+    "imsid": 738665,
+    "monitored": true,
+    "name": "FACEBOOK-32934-VIE-FC-203126783",
+    "scid": "ac0304e0-00a2-498a-9d5a-7465209de37a",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-00930",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-824045"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-21:3504"
+      },
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ae11.2702"
+      }
+    ],
+    "imsid": 745319,
+    "monitored": true,
+    "name": "GEANT_EPIPE_824045",
+    "scid": "ac2034f1-4d6d-42b4-bddd-f1c49e399d22",
+    "service_type": "ETHERNET",
+    "sid": "GS-02487",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ge-0/2/3"
+      }
+    ],
+    "imsid": 732264,
+    "monitored": true,
+    "name": "VIENNA-VIENNA-1GBE-002(GEANT)",
+    "scid": "ac276944-85ac-4d5b-be6a-d32e66f55964",
+    "service_type": "ETHERNET",
+    "sid": "GA-01486",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 659290,
+    "monitored": true,
+    "name": "LONDON-LONDON-1GBE-015(ETH)",
+    "scid": "ac2e3522-40e1-4d1b-97bb-dd481515b92b",
+    "service_type": "ETHERNET",
+    "sid": "GA-01475",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ae11.2709"
+      },
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "pwe-224045"
+      },
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "lag-20:716"
+      }
+    ],
+    "imsid": 745409,
+    "monitored": true,
+    "name": "SLCUTH-02490",
+    "scid": "ac33812b-305f-410c-992c-4fc6ef3dd83e",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02490",
+    "speed": 171798691840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5.1"
+      }
+    ],
+    "imsid": 659121,
+    "monitored": true,
+    "name": "NORDUNET-GEO-LL",
+    "scid": "ac537ea8-8eab-4e83-96fb-29a03bb6b176",
+    "service_type": "CBL1",
+    "sid": "GA-01447",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RASH"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.mil2.it.geant.net",
+        "interface": "ae16"
+      }
+    ],
+    "imsid": 727798,
+    "monitored": true,
+    "name": "RASH-AP1-100G-LAG",
+    "scid": "ac540183-b1ff-476a-b605-5ce8aecc527a",
+    "service_type": "ETHERNET",
+    "sid": "GA-02324",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ge-0/3/2.25"
+      }
+    ],
+    "imsid": 718923,
+    "monitored": false,
+    "name": "DDOS-DET1-VIE-AT-IDRAC",
+    "scid": "ac5c7167-50cd-43a9-ab25-a6f6d5826fb6",
+    "service_type": "SERVER LINK",
+    "sid": "GS-01284",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ARNES"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.5/30",
+          "2001:798:10:10aa::5/126"
+        ],
+        "hostname": "rt0.zag.hr.geant.net",
+        "interface": "lag-20.100"
+      }
+    ],
+    "imsid": 747839,
+    "monitored": true,
+    "name": "ARNES-AP2",
+    "scid": "ac74f2ce-e7ae-4296-8f64-05e3f171218d",
+    "service_type": "GEANT IP",
+    "sid": "GS-00427",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "INTERNET2"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.510"
+      }
+    ],
+    "imsid": 734549,
+    "monitored": true,
+    "name": "NL-INTERNET2-VLAN510",
+    "scid": "ac87d316-bdb0-4044-b4cf-651addb274c1",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00894",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [],
+    "imsid": 719129,
+    "monitored": false,
+    "name": "NORDU-TO-NETHERLIGHT-TEST",
+    "scid": "ac9b7b4c-b85b-44dd-9a39-aaf2ee16d1fa",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00742",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.109.208/31"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "gr-3/0/0.25"
+      }
+    ],
+    "imsid": 733837,
+    "monitored": false,
+    "name": "GRE-MULTICAST-TUNNEL-UNI-OF-CHILE",
+    "scid": "aca4be6f-7d5a-48d0-8d3b-b94dc8e5cd94",
+    "service_type": "EUMETSAT GRE",
+    "sid": "GS-02447",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.CHI.MD",
+        "port": "AE3"
+      }
+    ],
+    "imsid": 713247,
+    "monitored": true,
+    "name": "LAG-RT2.CHI.MD_AE2-SW1.CHI.MD_AE3",
+    "scid": "acbcff11-be99-43c9-b097-baa0ad300145",
+    "service_type": "ETHERNET",
+    "sid": "GA-02084",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [],
+    "imsid": 658772,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-1GBE-005(ETH)",
+    "scid": "acceebf7-4a3d-40dc-a9e0-fd4f1c5109c7",
+    "service_type": "ETHERNET",
+    "sid": "GA-01511",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.cor.ie.geant.net",
+        "interface": "lag-2"
+      }
+    ],
+    "imsid": 747403,
+    "monitored": true,
+    "name": "COR-PAR-LAG",
+    "scid": "ad1c671f-deb6-47ce-9ed3-984663ee7c65",
+    "service_type": "ETHERNET",
+    "sid": "GA-02478",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "REDIRIS"
+    ],
+    "endpoints": [],
+    "imsid": 719488,
+    "monitored": false,
+    "name": "LON-MAD-OFELIA-JISC-REDIRIS-13013",
+    "scid": "ad3485ed-b969-4532-97aa-c38feb7cb454",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00733",
+    "speed": 332859965440,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "AARNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "138.44.226.9/31"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae12.3102"
+      }
+    ],
+    "imsid": 661897,
+    "monitored": true,
+    "name": "AARNET-LON-LHCONE",
+    "scid": "ad57018a-3fa1-491e-827a-b843124c62a9",
+    "service_type": "L3-VPN",
+    "sid": "GS-00805",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.158/31",
+          "2001:798:cc:1::c5/126"
+        ],
+        "hostname": "rt0.fra.de.geant.net",
+        "interface": "lag-6.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.159/31",
+          "2001:798:cc:1::c6/126"
+        ],
+        "hostname": "rt0.pra.cz.geant.net",
+        "interface": "lag-6.0"
+      }
+    ],
+    "imsid": 740465,
+    "monitored": true,
+    "name": "FRA-PRA-IPTRUNK",
+    "scid": "ad5ac8d9-a6f1-452a-862a-cf992362cb62",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00033",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "FACEBOOK"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae16"
+      }
+    ],
+    "imsid": 738662,
+    "monitored": true,
+    "name": "VIE-FACEBOOK-LAG-2",
+    "scid": "ad65cd41-e1ff-4618-9526-c210fdbafa74",
+    "service_type": "ETHERNET",
+    "sid": "GA-01863",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658669,
+    "monitored": true,
+    "name": "730XD-2-VSAN-TRAFFIC-LAG-PAR",
+    "scid": "ad7152e8-e3c2-4ec9-9b29-1294ea365581",
+    "service_type": "ETHERNET",
+    "sid": "GA-01718",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae6"
+      }
+    ],
+    "imsid": 719610,
+    "monitored": true,
+    "name": "BIL-MAD-LAG",
+    "scid": "ad8287ff-0a1e-44fd-9f90-26c0ad5a56ad",
+    "service_type": "ETHERNET",
+    "sid": "GA-02204",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [],
+    "imsid": 727426,
+    "monitored": true,
+    "name": "V-LAN_1003_RT2.BRU.BE_XE-0/1/0_",
+    "scid": "ad858cfc-dee8-45e0-8188-0d878e3e33e7",
+    "service_type": "ETHERNET",
+    "sid": "GS-00676",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "172.18.254.1/30"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "gr-1/3/0.0"
+      }
+    ],
+    "imsid": 717895,
+    "monitored": false,
+    "name": "FORTIGATE-TUNNEL-TO-CH-LON-UK",
+    "scid": "ad9488d1-f973-4301-81ac-25d690ddeef7",
+    "service_type": "L3-VPN",
+    "sid": "GS-02125",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NKN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.34/31",
+          "2001:798:111:1::cd/126"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae20.111"
+      }
+    ],
+    "imsid": 678079,
+    "monitored": true,
+    "name": "NKN-GEN-LHCONE",
+    "scid": "ae0df7b5-31d2-407d-817a-3a5a7907886e",
+    "service_type": "L3-VPN",
+    "sid": "GS-00833",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "ae9"
+      }
+    ],
+    "imsid": 739650,
+    "monitored": true,
+    "name": "LONDON 2-LONDON 2-LAG-010(GEANT)",
+    "scid": "ae137ca3-c132-4c9e-902e-231ff0dc511b",
+    "service_type": "ETHERNET",
+    "sid": "GA-TBA",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.96/31"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae2.108"
+      }
+    ],
+    "imsid": 736093,
+    "monitored": false,
+    "name": "AMS-EUMETSAT-SERVER-DATA-TRAFFIC",
+    "scid": "ae20d05c-36bd-4a38-afd4-e15377b69d9d",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-02312",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.127.138/31"
+        ],
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-1/2/2.19"
+      }
+    ],
+    "imsid": 707142,
+    "monitored": false,
+    "name": "DASHBOARD-TEST-SERVICE-LON2-VIRGIN(DO-NOT-OPEN-TICKET)",
+    "scid": "ae2605a4-a078-4811-8800-2b2d4412c3e7",
+    "service_type": "CORPORATE",
+    "sid": "GS-00006",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GOOGLE"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae49"
+      }
+    ],
+    "imsid": 745908,
+    "monitored": true,
+    "name": "GOOGLE-FRA-LAG",
+    "scid": "ae305595-159b-46ee-b7ca-fe1bb8d7c17f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01943",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "LJU-VIE-TRUNK",
+    "scid": "ae4a4d79-2019-4022-8221-bd1178a1717f",
+    "service_type": null,
+    "sid": "DS-19925",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PF1-RARE.BUD.HU.GEANT.NET",
+        "port": "XE-2"
+      },
+      {
+        "hostname": "rt1.pra.cz.geant.net",
+        "interface": "xe-3/0/7"
+      },
+      {
+        "hostname": "rt1.pra.cz.geant.net",
+        "interface": "xe-3/0/7.500"
+      },
+      {
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "xe-3/0/2.500"
+      }
+    ],
+    "imsid": 744388,
+    "monitored": false,
+    "name": "BUD-POZ-RARE-BMS8",
+    "scid": "ae4fcd56-4d4c-4521-981d-98860735981f",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02629",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "FCCN"
+    ],
+    "endpoints": [],
+    "imsid": 709745,
+    "monitored": true,
+    "name": "FCCN EUMETCAST AP1",
+    "scid": "ae5d7970-892b-428e-8709-63028bd431a7",
+    "service_type": "EUMETSAT TERRESTRIAL",
+    "sid": "GS-01103",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "pwe-424046"
+      },
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "lag-20:715"
+      },
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "pwe-39082"
+      }
+    ],
+    "imsid": 745450,
+    "monitored": true,
+    "name": "GEANT_EPIPE_424046",
+    "scid": "ae684268-ad51-4ffd-a1c0-b7aa5b4cdd90",
+    "service_type": "ETHERNET",
+    "sid": "GS-02500",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661196,
+    "monitored": false,
+    "name": "VM-LON2-UK-IDRACS-250",
+    "scid": "ae818e45-5e84-4021-8ec2-54a127fd4ea1",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00385",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 718936,
+    "monitored": false,
+    "name": "EX3400-MANAGEMENT-ZAG-HR",
+    "scid": "ae8381e5-c76e-4d04-a77b-f25adad39b7f",
+    "service_type": "SERVER LINK",
+    "sid": "GA-01459",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ANKABUT"
+    ],
+    "endpoints": [],
+    "imsid": 720034,
+    "monitored": false,
+    "name": "ANKABUT-GEO-UK-1",
+    "scid": "aebf89ff-6183-4e33-bd7f-49c982401d5b",
+    "service_type": "GEANT OPEN PORT",
+    "sid": "GA-01836",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "srx1.ch.office.geant.net",
+        "interface": "ge-0/0/1"
+      }
+    ],
+    "imsid": 662517,
+    "monitored": true,
+    "name": "PHY CONNECTION TO SRX2",
+    "scid": "aec58254-b34a-4e82-83b3-dadacf9e49a1",
+    "service_type": "ETHERNET",
+    "sid": "GA-01283",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mil2.it.geant.net",
+        "interface": "xe-1/0/6"
+      },
+      {
+        "hostname": "mx1.mil2.it.geant.net",
+        "interface": "xe-1/0/6.3"
+      }
+    ],
+    "imsid": 661923,
+    "monitored": true,
+    "name": "SDX-L2-HOSTC-TO-BR52",
+    "scid": "aec97668-5500-49a6-bac8-a65df11fef83",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00763",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 718916,
+    "monitored": false,
+    "name": "EX3400-MANAGEMENT-POZ1-PL",
+    "scid": "aec9d26b-4160-4ed5-9a39-02786fd71b3d",
+    "service_type": "SERVER LINK",
+    "sid": "GS-01172",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 714886,
+    "monitored": true,
+    "name": "HEANET-AP2-100G-LL1",
+    "scid": "aee66f60-c921-41d9-bda9-9f2ac824f622",
+    "service_type": "ETHERNET",
+    "sid": "GA-01666",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "KIFU"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.101/30",
+          "2001:798:1b:10aa::5/126"
+        ],
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae10.100"
+      }
+    ],
+    "imsid": 663051,
+    "monitored": true,
+    "name": "KIFU-AP1",
+    "scid": "af143114-ae97-469b-a33f-fcf643bb1c76",
+    "service_type": "GEANT IP",
+    "sid": "GS-00481",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CERN"
+    ],
+    "endpoints": [
+      {
+        "equipment": "MIL02-GRV3",
+        "port": "1/1/3"
+      },
+      {
+        "equipment": "GEN02-GRV-1",
+        "port": "1/1/3"
+      }
+    ],
+    "imsid": 669632,
+    "monitored": true,
+    "name": "GEN2-MIL2-LHC-CERN-GARR-18105",
+    "scid": "af35fd01-7aac-4a08-b0dc-e26c7fcd727f",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-00798",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 660431,
+    "monitored": true,
+    "name": "OCVM-LON-UK-ESXI",
+    "scid": "af3a73ca-29fb-43b4-9f9c-e3c6871826a0",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00138",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.127.134/31",
+          "2001:798:22::1/126"
+        ],
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20.2"
+      }
+    ],
+    "imsid": 744240,
+    "monitored": true,
+    "name": "BELNET-AP1",
+    "scid": "af59171b-0ecc-4b67-ac16-8fbe30589afd",
+    "service_type": "GEANT IP",
+    "sid": "GS-00437",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.221/30"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae14.111"
+      }
+    ],
+    "imsid": 733481,
+    "monitored": true,
+    "name": "RENATER-AP2-IPV4-LHCONE",
+    "scid": "afa8ca87-db65-4b19-8514-b5345abef9bb",
+    "service_type": "L3-VPN",
+    "sid": "GS-00855",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.83/31",
+          "2001:798:cc::8a/126"
+        ],
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae3.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.82/31",
+          "2001:798:cc::89/126"
+        ],
+        "hostname": "rt0.vie.at.geant.net",
+        "interface": "lag-3.0"
+      }
+    ],
+    "imsid": 740752,
+    "monitored": true,
+    "name": "VIE-VIE-IPTRUNK",
+    "scid": "afe48180-19e0-48c5-8c92-eac23febfab1",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02563",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.66/31",
+          "2001:798:cc:1::d1/126"
+        ],
+        "hostname": "rt0.ams.nl.geant.net",
+        "interface": "lag-9.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.67/31",
+          "2001:798:cc:1::d2/126"
+        ],
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-9.0"
+      }
+    ],
+    "imsid": 739970,
+    "monitored": true,
+    "name": "AMS-HAM-IPTRUNK",
+    "scid": "afeb63dd-fcfd-49db-9e87-29e537e6fd6b",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00010",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 660640,
+    "monitored": false,
+    "name": "HADES-MIL2-IT-DRAC",
+    "scid": "aff7c214-034a-40bd-95dc-e34cf0b4db76",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00195",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5.3912"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.14"
+      }
+    ],
+    "imsid": 707047,
+    "monitored": true,
+    "name": "NORDUNET-TUNI-EXPRESSROUTE-VLAN3912",
+    "scid": "b00c9ff4-6a3f-4475-af17-32042185da5f",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01162",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661728,
+    "monitored": false,
+    "name": "HADES-PRA-CZ-DRAC",
+    "scid": "b00debcd-1ce8-4e1b-89fc-12c21dc30bd1",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00197",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [],
+    "imsid": 738648,
+    "monitored": true,
+    "name": "UK-ESNET-EEX-OPEN",
+    "scid": "b01450d5-c784-49fc-8e3a-dbcd6d061a26",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00917",
+    "speed": 429496729600,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 679116,
+    "monitored": true,
+    "name": "ATH2-VIE-LAG",
+    "scid": "b014661b-6ba6-469d-b67c-fd25cd41ae22",
+    "service_type": "ETHERNET",
+    "sid": "GA-01930",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.2/31",
+          "2001:798:cc::d/126"
+        ],
+        "hostname": "rt0.poz.pl.geant.net",
+        "interface": "lag-3.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.3/31",
+          "2001:798:cc::e/126"
+        ],
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ae3.0"
+      }
+    ],
+    "imsid": 740149,
+    "monitored": true,
+    "name": "POZ-POZ-IPTRUNK",
+    "scid": "b0250d18-e8de-406c-9956-851ecd2dc0f6",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02528",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "DFN"
+    ],
+    "endpoints": [],
+    "imsid": 728422,
+    "monitored": false,
+    "name": "DFN-BGP-LU-COC-AP1",
+    "scid": "b025fe43-620c-40c5-903f-221fce8c42c5",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01001",
+    "speed": 322122547200,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.36"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-123062"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20:4063"
+      }
+    ],
+    "imsid": 744144,
+    "monitored": true,
+    "name": "MSEULB-02363",
+    "scid": "b031653d-0746-4a53-bcb0-17735a60d939",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02363",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [],
+    "imsid": 712353,
+    "monitored": true,
+    "name": "MD-VPN-VRR-LJUBLJANA-BELNET-BE-1",
+    "scid": "b0714f27-1eeb-423f-9bd4-853c66c28933",
+    "service_type": "MD-VPN (PROXY)",
+    "sid": "GS-01012",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.par.fr.geant.net",
+        "interface": "ae17"
+      }
+    ],
+    "imsid": 658518,
+    "monitored": true,
+    "name": "LAG-QFX.PAR.FR_AE17",
+    "scid": "b0ae383b-27c5-4b7e-8617-86e4e1544e50",
+    "service_type": "ETHERNET",
+    "sid": "GA-01730",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GARR"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae12"
+      }
+    ],
+    "imsid": 662478,
+    "monitored": true,
+    "name": "GARR-AP2-LAG",
+    "scid": "b0cc2e3b-9f09-446e-a960-6a62abcdff7f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01883",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.par.fr.geant.net",
+        "interface": "lag-7"
+      }
+    ],
+    "imsid": 739695,
+    "monitored": true,
+    "name": "GEN-PAR-1.6T-LAG",
+    "scid": "b0d6ff8f-f763-4b11-a0ec-767db94a4cdc",
+    "service_type": "ETHERNET",
+    "sid": "GA-01823",
+    "speed": 1717986918400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 745806,
+    "monitored": true,
+    "name": "LJUBLJANA 1-LJUBLJANA 1-LAG-006(GEANT)",
+    "scid": "b1025b55-9aee-4bf0-ac90-9fcb6a18beaf",
+    "service_type": "ETHERNET",
+    "sid": "GA-50058",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ASNET-AM"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.17/30",
+          "2001:798:1::cd/126"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae17.433"
+      }
+    ],
+    "imsid": 747039,
+    "monitored": false,
+    "name": "ASNET-AM-AP2-IAS",
+    "scid": "b14195c8-ccd2-4095-bba9-1e1e04760574",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-02651",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae16.947"
+      },
+      {
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-21:947"
+      }
+    ],
+    "imsid": 747550,
+    "monitored": true,
+    "name": "HAM-MAD-02183",
+    "scid": "b1710dc3-6b76-4402-8d76-24af9e21a0c4",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02183",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663003,
+    "monitored": false,
+    "name": "FRA-GROOVE-3",
+    "scid": "b17cbfbe-a721-4ca6-9479-487339c25f4a",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00176",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SWITCH"
+    ],
+    "endpoints": [],
+    "imsid": 709646,
+    "monitored": false,
+    "name": "SWITCH-GN-PRACE-VPN-PROXY-GENEVA-L3VPN",
+    "scid": "b186f976-88c1-49c3-af9e-79809ced5e9f",
+    "service_type": "MD-VPN (PROXY)",
+    "sid": "GS-01071",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "FCCN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.16/31",
+          "2001:798:111:1::51/126"
+        ],
+        "hostname": "mx2.lis.pt.geant.net",
+        "interface": "ae10.1990"
+      }
+    ],
+    "imsid": 730596,
+    "monitored": true,
+    "name": "FCCN-AP1-LIS-LHCONE",
+    "scid": "b19d79ee-cffd-44d7-8792-604caf241411",
+    "service_type": "L3-VPN",
+    "sid": "GS-02401",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.109.196/31"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "gr-3/0/0.13"
+      }
+    ],
+    "imsid": 732667,
+    "monitored": false,
+    "name": "GRE-MULTICAST-TUNNEL-ECMWF",
+    "scid": "b1ba457f-ff1c-439e-ba25-1e52076bec93",
+    "service_type": "EUMETSAT GRE",
+    "sid": "GS-01076",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "INTERNET2"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "et-3/0/4"
+      }
+    ],
+    "imsid": 734041,
+    "monitored": true,
+    "name": "BOD-PAR-INTERNET2-23089",
+    "scid": "b1da962b-0830-4706-a89c-2b2ca82faa2a",
+    "service_type": "ETHERNET",
+    "sid": "GS-02398",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CSTNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.62/31",
+          "2001:798:111:1::e1/126"
+        ],
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae12.111"
+      }
+    ],
+    "imsid": 729627,
+    "monitored": true,
+    "name": "CSTNET-MAR-LHCONE-PRIMARY",
+    "scid": "b1e2393e-5749-4bb8-b9c3-6dbcdfa78557",
+    "service_type": "L3-VPN",
+    "sid": "GS-00814",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661719,
+    "monitored": false,
+    "name": "PS-VIE-AT-IDRAC",
+    "scid": "b1f015b9-d936-43e3-8d39-743ea1795640",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00356",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 743398,
+    "monitored": true,
+    "name": "COR-COR-MGMT-IPTRUNK",
+    "scid": "b1f50754-8459-4099-892c-c99787131412",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02618",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "172.18.25.1/24"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae2.991"
+      }
+    ],
+    "imsid": 745871,
+    "monitored": false,
+    "name": "DCN-MANAGEMENT-LON",
+    "scid": "b2003241-e0bd-4734-93d6-92fc0f6ac4fe",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00119",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658721,
+    "monitored": true,
+    "name": "BRUSSELS-BRUSSELS-1GBE-004(ETH)",
+    "scid": "b2894ff8-4f5c-4ed3-bbf2-ec545b8680d9",
+    "service_type": "ETHERNET",
+    "sid": "GA-01361",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SWITCH"
+    ],
+    "endpoints": [
+      {
+        "equipment": "MIL01-GRV1",
+        "port": "1/2/3"
+      },
+      {
+        "equipment": "GEN01-GRV3",
+        "port": "1/2/3"
+      }
+    ],
+    "imsid": 734724,
+    "monitored": true,
+    "name": "GEN1-MIL1-ECMWF-SWITCH-GARR-23109-1",
+    "scid": "b28dce6f-bb4c-4fd4-8c6f-33063dddcd59",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-02419",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "172.21.33.1/24"
+        ],
+        "hostname": "rt1.bra.sk.geant.net",
+        "interface": "ae3.998"
+      }
+    ],
+    "imsid": 731619,
+    "monitored": false,
+    "name": "EX3400-MANAGEMENT-BRA-SK",
+    "scid": "b2918a27-23fc-4fb0-ba9e-6d32f63977b2",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00149",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 709270,
+    "monitored": false,
+    "name": "RIG-TAL-IPTRUNK",
+    "scid": "b2ca6e36-1008-49ae-b29f-f00f83586fb3",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00061",
+    "speed": 32212254720,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 719645,
+    "monitored": false,
+    "name": "UAT-TEST-GPLUS",
+    "scid": "b2ee6ce8-8d98-41e6-895d-abed7b531642",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-11112",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 734325,
+    "monitored": true,
+    "name": "THE-THE-IPTRUNK",
+    "scid": "b2faef2d-0abf-4145-b4c7-5f59c5bb914c",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02427",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [],
+    "imsid": 735696,
+    "monitored": true,
+    "name": "V-LAN_4_MX1.AMS.NL_AE21_",
+    "scid": "b30460fd-d894-4a60-beb5-50ac0bc561cf",
+    "service_type": "ETHERNET",
+    "sid": "GS-01158",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "TWAREN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "211.79.48.146/30",
+          "2001:e10:ffff:30c::2/64"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae15.221"
+      }
+    ],
+    "imsid": 661630,
+    "monitored": true,
+    "name": "FR-TWAREN-221",
+    "scid": "b31af1ef-77a7-4cca-a6e8-e0d50787917f",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00886",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [],
+    "imsid": 709760,
+    "monitored": true,
+    "name": "PIONIER EUMETCAST AP1",
+    "scid": "b33f45fa-ff32-4d08-b7fd-186b0100af9a",
+    "service_type": "EUMETSAT TERRESTRIAL",
+    "sid": "GS-01114",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663241,
+    "monitored": false,
+    "name": "PS-FRA-DE-PSMP1-2",
+    "scid": "b34b0e9c-08b8-4050-8dd3-11a48e801d62",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00300",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [],
+    "imsid": 662370,
+    "monitored": true,
+    "name": "HAMBURG-HAMBURG-10GBE-013(GEANT)",
+    "scid": "b36e81dc-df48-459f-8d7f-816e9afe7430",
+    "service_type": "ETHERNET",
+    "sid": "GA-02135",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PSMP-GN-DRAC-LON2-UK.GEANT.ORG",
+        "port": "0-3"
+      },
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/3/1"
+      },
+      {
+        "addresses": [
+          "62.40.106.248/31",
+          "2001:798:bb:2::d5/126"
+        ],
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/3/1.0"
+      }
+    ],
+    "imsid": 708923,
+    "monitored": false,
+    "name": "UAT-PS-LON2-UK-BWCTL",
+    "scid": "b3778d94-7f4e-434d-994e-0319f44bb6a1",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00377",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae30"
+      }
+    ],
+    "imsid": 658684,
+    "monitored": true,
+    "name": "FRANKFURT 15-FRANKFURT 15-LAG-057(GEANT)",
+    "scid": "b37e10c4-9552-4d63-8f06-79ff83c0a439",
+    "service_type": "ETHERNET",
+    "sid": "GA-01938",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "ae31.0"
+      },
+      {
+        "addresses": [
+          "62.40.99.17/28",
+          "2001:798:ee:14::1/64"
+        ],
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "ae16.2001"
+      }
+    ],
+    "imsid": 661564,
+    "monitored": false,
+    "name": "ESXI-MANAGEMENT-LON2",
+    "scid": "b3a1ede6-d417-4aad-9294-211de943fdd6",
+    "service_type": "POP LAN LINK",
+    "sid": "GS-00074",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "MREN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.109/30",
+          "2001:798:1::85/126"
+        ],
+        "hostname": "rt0.zag.hr.geant.net",
+        "interface": "lag-24.333"
+      }
+    ],
+    "imsid": 747956,
+    "monitored": true,
+    "name": "MREN-AP1-IAS",
+    "scid": "b3c9b555-7f1d-47d7-9031-079edac22f85",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00538",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.109.16/31"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "gr-3/0/0.15"
+      }
+    ],
+    "imsid": 732675,
+    "monitored": false,
+    "name": "GRE-MULTICAST-TUNNEL-NOAA2",
+    "scid": "b3edecf3-f344-40c7-87cf-be30385dbaf8",
+    "service_type": "EUMETSAT GRE",
+    "sid": "GS-01087",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 678987,
+    "monitored": true,
+    "name": "DUB-DUB2-LAG",
+    "scid": "b3f2db88-7ee5-497c-b736-4c430182cb1f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01927",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.37/31",
+          "2001:798:cc:1::d6/126"
+        ],
+        "hostname": "rt0.vie.at.geant.net",
+        "interface": "lag-4.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.36/31",
+          "2001:798:cc:1::d5/126"
+        ],
+        "hostname": "rt0.mil2.it.geant.net",
+        "interface": "lag-4.0"
+      }
+    ],
+    "imsid": 740950,
+    "monitored": true,
+    "name": "MIL2-VIE-IPTRUNK",
+    "scid": "b44df27c-8312-4673-81a8-bd68413992ba",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00057",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae12"
+      }
+    ],
+    "imsid": 727609,
+    "monitored": true,
+    "name": "FR-IC1-LAG",
+    "scid": "b44eaa26-0f7a-4874-af94-b81b003264e4",
+    "service_type": "ETHERNET",
+    "sid": "GA-02233",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ULAKBIM"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.161/30",
+          "2001:798:1::c5/126"
+        ],
+        "hostname": "rt0.the.gr.geant.net",
+        "interface": "lag-21.333"
+      }
+    ],
+    "imsid": 745293,
+    "monitored": true,
+    "name": "ULAKBIM-AP1-IAS",
+    "scid": "b4738f69-42a7-46e7-8356-663cf725bff5",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00591",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.120.89/29",
+          "2001:798:bb:2c::1/64"
+        ],
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-1/2/2.11"
+      }
+    ],
+    "imsid": 661935,
+    "monitored": false,
+    "name": "FLOWMON-LON2-UK-MANAGEMENT",
+    "scid": "b478a077-1a79-4471-b3e5-7e888197fa2e",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00166",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae14"
+      }
+    ],
+    "imsid": 662488,
+    "monitored": true,
+    "name": "RENATER-AP2-LAG",
+    "scid": "b4a0784c-deb6-4edb-9975-70274b9e33cd",
+    "service_type": "ETHERNET",
+    "sid": "GA-01877",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.26"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-123035"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20:4062"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-21:3501"
+      }
+    ],
+    "imsid": 745336,
+    "monitored": true,
+    "name": "MSEJUST-02318",
+    "scid": "b4a38235-7e8e-4579-9cc7-88f6a5fe4d8f",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02318",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661688,
+    "monitored": false,
+    "name": "LHCONE-PAR-FR-VLAN550",
+    "scid": "b4af3b04-7360-4dc9-b135-048915e27be2",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00225",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT-IT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.fra.de.geant.net",
+        "interface": "xe-1/0/17"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/3/6"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-5/0/1.0"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/3/6.0"
+      }
+    ],
+    "imsid": 729480,
+    "monitored": true,
+    "name": "FRA-PAR-SUPERPOP-QFX-2-GEANT",
+    "scid": "b4b0a9cb-9224-4923-abb3-7415fe8a6dbd",
+    "service_type": "GEANT - GBS",
+    "sid": "GS-00079",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663140,
+    "monitored": false,
+    "name": "KVMOIP-FRA-DE",
+    "scid": "b4e41b4e-48fd-4927-ad07-3ab5f23ac75b",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00220",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 721149,
+    "monitored": true,
+    "name": "PARIS 007B-PARIS 007B-10GBE-006(GEANT)",
+    "scid": "b50369b2-fe86-461a-9710-36401e7b2f9e",
+    "service_type": "ETHERNET",
+    "sid": "GA-01384",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "DFN-AP2-CLS|ASN680",
+    "scid": "b50e70a2-c325-4a9b-a1b0-092673723fe5",
+    "service_type": null,
+    "sid": "DS-33537",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "REDIRIS"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae10.930"
+      },
+      {
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae16.930"
+      }
+    ],
+    "imsid": 719523,
+    "monitored": true,
+    "name": "LON-MAD-GOTO-REDIRIS-JISC-16018",
+    "scid": "b5139f6c-0614-46b5-abba-d489a12c5020",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00734",
+    "speed": 858993459200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "2001:798:111:1::1/126"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae14.116"
+      }
+    ],
+    "imsid": 733483,
+    "monitored": true,
+    "name": "RENATER-AP2-IPV6-LHCONE",
+    "scid": "b51879d5-99bd-476f-b051-1c194b76cfb2",
+    "service_type": "L3-VPN",
+    "sid": "GS-00856",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661381,
+    "monitored": false,
+    "name": "PSMP-ATH-GR-DRAC",
+    "scid": "b52f676a-9bd9-4ae9-916b-2f31c5bec571",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00362",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "xe-2/2/4"
+      }
+    ],
+    "imsid": 720003,
+    "monitored": true,
+    "name": "GENEVA-GENEVA-10GBE-009(GEANT)",
+    "scid": "b55e4183-a474-4485-9823-3be4651c46e2",
+    "service_type": "ETHERNET",
+    "sid": "GA-02190",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 724614,
+    "monitored": true,
+    "name": "GEN-LON-800G-IPTRUNK",
+    "scid": "b572d1e2-e75f-4886-ba80-e1e7258e8e41",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02228",
+    "speed": 858993459200,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.mil2.it.geant.net",
+        "interface": "lag-4"
+      }
+    ],
+    "imsid": 740946,
+    "monitored": true,
+    "name": "MIL2-VIE-LAG",
+    "scid": "b576a90f-5beb-4ec8-83a5-c0bebd0b6533",
+    "service_type": "ETHERNET",
+    "sid": "GA-01769",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 718262,
+    "monitored": true,
+    "name": "LONDON 2-LONDON 2-1GBE-003(GEANT)",
+    "scid": "b582c35d-0d6d-42ba-b980-bc9e1d9c7b43",
+    "service_type": "ETHERNET",
+    "sid": "GA-01500",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CANARIE"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "205.189.32.77/31",
+          "2001:410:101:fa5::2/64"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae15.2200"
+      }
+    ],
+    "imsid": 661404,
+    "monitored": true,
+    "name": "CANARIE-PAR-LHCONE",
+    "scid": "b5963593-0b98-4b89-adf4-1023cc4c72a4",
+    "service_type": "L3-VPN",
+    "sid": "GS-00809",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NETHERLIGHT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-2/0/5"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-2/0/5.1"
+      }
+    ],
+    "imsid": 668908,
+    "monitored": true,
+    "name": "NETHERLIGHT-GEO-UK-1-LL",
+    "scid": "b5aa5e1a-55c3-4693-a519-d4031a2e52fe",
+    "service_type": "CBL1",
+    "sid": "GA-01481",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "mx1.fra.de - Telia Multicast Traffic",
+    "scid": "b5e526fa-ffa0-4324-a951-3bf25c2c7a5e",
+    "service_type": null,
+    "sid": "DS-40463",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "URAN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.127.154/31",
+          "2001:798:99:1::f5/126"
+        ],
+        "hostname": "rt2.kie.ua.geant.net",
+        "interface": "ae10.100"
+      }
+    ],
+    "imsid": 714000,
+    "monitored": true,
+    "name": "URAN-AP2",
+    "scid": "b6b872c2-a7e2-4665-ad89-795f61bc48ea",
+    "service_type": "GEANT IP",
+    "sid": "GS-00521",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "MX2.RIG.LV",
+        "port": "XE-1/1/1"
+      }
+    ],
+    "imsid": 679333,
+    "monitored": true,
+    "name": "RIGA-RIGA-10GBE-001(LAT)",
+    "scid": "b6cf4e2b-58b3-4f06-8a7c-f5e014ee85aa",
+    "service_type": "ETHERNET",
+    "sid": "GA-01531",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-0/0/46"
+      }
+    ],
+    "imsid": 658711,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-050(ETH)",
+    "scid": "b6dc006e-5cfd-4c21-b576-6a954177c050",
+    "service_type": "ETHERNET",
+    "sid": "GA-01220",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661693,
+    "monitored": false,
+    "name": "PRA-GROOVE-1",
+    "scid": "b6e17064-f328-46a3-9b50-14abe3efd9fc",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00279",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 732262,
+    "monitored": true,
+    "name": "GENEVA-GENEVA-1GBE-003(GEANT)",
+    "scid": "b728c593-1929-4bf8-a9e5-405722aa49d7",
+    "service_type": "ETHERNET",
+    "sid": "GA-01548",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708172,
+    "monitored": false,
+    "name": "PS-FRA-DE-PSMP3-OWAMP",
+    "scid": "b740f04d-06fa-4d73-b1f2-821de0f7847a",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00306",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662934,
+    "monitored": false,
+    "name": "AMS-GROOVE-1-MANAGEMENT",
+    "scid": "b782f417-d8ef-4dd7-abbe-cc41da655bc6",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00092",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.89.208/31",
+          "2001:798:1::19a/127"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae48.740"
+      }
+    ],
+    "imsid": 741337,
+    "monitored": false,
+    "name": "A10-DDOS-SCRUBBING-FRA-CLEAN-TRAFFIC",
+    "scid": "b7b741da-5847-4bcb-8dc3-179e3a3dd54b",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00087",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.245/31",
+          "2001:798:cc:1::102/126"
+        ],
+        "hostname": "rt0.rig.lv.geant.net",
+        "interface": "lag-3.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.244/31",
+          "2001:798:cc:1::101/126"
+        ],
+        "hostname": "rt0.kau.lt.geant.net",
+        "interface": "lag-4.0"
+      }
+    ],
+    "imsid": 746526,
+    "monitored": true,
+    "name": "KAU-RIG-IPTRUNK",
+    "scid": "b7b8f440-5e5f-4b31-b1d9-d5a598ab5415",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00044",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SURF"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.38/31",
+          "2001:798:99:1::19/126"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae15.1103"
+      }
+    ],
+    "imsid": 734591,
+    "monitored": true,
+    "name": "SURF-AP1",
+    "scid": "b7e1373e-17b5-4561-80c9-b5a0fbab0d33",
+    "service_type": "GEANT IP",
+    "sid": "GS-00512",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.lju.si.geant.net",
+        "interface": "lag-1"
+      }
+    ],
+    "imsid": 746143,
+    "monitored": true,
+    "name": "LJU-MIL2-LAG",
+    "scid": "b7f8dc8d-7fd7-415f-8daa-44d16e05403e",
+    "service_type": "ETHERNET",
+    "sid": "GA-01741",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "198.124.80.10/30",
+          "2001:400:f003:c::3/127"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae15.2004"
+      }
+    ],
+    "imsid": 661188,
+    "monitored": true,
+    "name": "ESNET-PAR-LHCONE",
+    "scid": "b80a4c95-1b57-450c-a86d-25de68a303b9",
+    "service_type": "L3-VPN",
+    "sid": "GS-00823",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 732261,
+    "monitored": true,
+    "name": "FRANKFURT-FRANKFURT-1GBE-001(GEANT)",
+    "scid": "b81fb1ee-f611-413e-b402-20129b27eba3",
+    "service_type": "ETHERNET",
+    "sid": "GA-01611",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.32"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28.4086"
+      }
+    ],
+    "imsid": 739668,
+    "monitored": true,
+    "name": "BELNET-THOMASMORE-EXPRESSROUTE-VLAN4086",
+    "scid": "b85d9136-670a-4bdb-b877-ee0c376bac30",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02476",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BREN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.21/30",
+          "2001:798:1::19/126"
+        ],
+        "hostname": "rt0.sof.bg.geant.net",
+        "interface": "lag-101.334"
+      }
+    ],
+    "imsid": 744964,
+    "monitored": true,
+    "name": "BREN-AP2-IAS",
+    "scid": "b86df08f-c9d5-48f8-9256-24d04e3b845f",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00558",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ARNES"
+    ],
+    "endpoints": [],
+    "imsid": 708704,
+    "monitored": true,
+    "name": "ARNES EUMETCAST AP2",
+    "scid": "b8996f7b-d661-4bab-b225-0eadf9d06eae",
+    "service_type": "EUMETSAT TERRESTRIAL",
+    "sid": "GS-01095",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-1/0/5"
+      }
+    ],
+    "imsid": 717187,
+    "monitored": true,
+    "name": "LONDON 2-LONDON 2-10GBE-006(GEANT)",
+    "scid": "b8a9b384-a396-4877-8981-eb1681863166",
+    "service_type": "ETHERNET",
+    "sid": "GA-01231",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/0/7"
+      }
+    ],
+    "imsid": 658815,
+    "monitored": true,
+    "name": "LONDON-LONDON-10GBE-007(ETH)",
+    "scid": "b8ae15ec-5ab1-4136-8742-d7c580c7fa17",
+    "service_type": "ETHERNET",
+    "sid": "GA-01460",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "ae11"
+      }
+    ],
+    "imsid": 658519,
+    "monitored": false,
+    "name": "LON2-PRD-ESX01-VM-TRAFFIC",
+    "scid": "b8d7dbcf-4326-454e-99c6-0a4fd5af81bf",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01699",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "KREN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.66/31",
+          "2001:798:99:1::95/126"
+        ],
+        "hostname": "rt0.zag.hr.geant.net",
+        "interface": "lag-25.100"
+      }
+    ],
+    "imsid": 747899,
+    "monitored": true,
+    "name": "KREN-AP1",
+    "scid": "b90fce2b-7f04-4901-b025-8b46a66f6ccf",
+    "service_type": "GEANT IP",
+    "sid": "GS-02153",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.30"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-240586"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20:4093"
+      }
+    ],
+    "imsid": 744269,
+    "monitored": true,
+    "name": "MSEMOBILIT-02169",
+    "scid": "b929d646-5fcb-4818-a9a8-18e86b792c8a",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02169",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 712119,
+    "monitored": true,
+    "name": "SW4.LON.UK-LAG",
+    "scid": "b9306bed-fc72-4752-8beb-8b97ee903a76",
+    "service_type": "ETHERNET",
+    "sid": "GA-02066",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW2.MAD.ES",
+        "port": "AE3"
+      }
+    ],
+    "imsid": 702121,
+    "monitored": true,
+    "name": "LAG-MX1.MAD.ES_AE3",
+    "scid": "b9387dc3-1b43-4b80-be6f-8e47c9c9b5a8",
+    "service_type": "ETHERNET",
+    "sid": "GA-02085",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663071,
+    "monitored": false,
+    "name": "FRA-GROOVE-2",
+    "scid": "b93d5aa2-e98e-4a4d-8711-88c27d953fed",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00174",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5.3902"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.5"
+      }
+    ],
+    "imsid": 707076,
+    "monitored": true,
+    "name": "NORDUNET-JYV-EXPRESSROUTE-VLAN3902",
+    "scid": "b966f5f6-46bf-4a8a-ac6a-a73d67cc7416",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01157",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GRNET"
+    ],
+    "endpoints": [],
+    "imsid": 742905,
+    "monitored": false,
+    "name": "GRNET-AP1-COPERNICUS",
+    "scid": "b98db90e-403d-4c27-a380-fd2b987fad8f",
+    "service_type": "L3-VPN",
+    "sid": "GS-00828",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "CyNet AP1 IAS",
+    "scid": "b9c6ba65-676c-4b97-86e2-6297c48cff88",
+    "service_type": null,
+    "sid": "DS-31661",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.bil.es.geant.net",
+        "interface": "ae15.956"
+      },
+      {
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-21:2105"
+      }
+    ],
+    "imsid": 747545,
+    "monitored": true,
+    "name": "BIL-HAM-02517",
+    "scid": "b9cd992f-be68-44b5-b466-c18e63d6b539",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02517",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW2.PAR.FR",
+        "port": "AE1"
+      }
+    ],
+    "imsid": 733969,
+    "monitored": true,
+    "name": "LAG-SW2.PAR.FR_AE1",
+    "scid": "b9e5fff8-6075-4a74-90ce-32fc97f90a57",
+    "service_type": "ETHERNET",
+    "sid": "GA-02063",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "149.29.9.10/30",
+          "2001:978:2:7::13b:2/126"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae32.0"
+      }
+    ],
+    "imsid": 731788,
+    "monitored": true,
+    "name": "COGENT-GWS-FRA",
+    "scid": "b9f79c25-3bc2-4c59-8103-c1f496d07308",
+    "service_type": "GWS - UPSTREAM",
+    "sid": "GS-00066",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.109/31",
+          "2001:798:cc::a2/126"
+        ],
+        "hostname": "rt1.bra.sk.geant.net",
+        "interface": "ae2.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.108/31",
+          "2001:798:cc::a1/126"
+        ],
+        "hostname": "rt0.bra.sk.geant.net",
+        "interface": "lag-2.0"
+      }
+    ],
+    "imsid": 743065,
+    "monitored": false,
+    "name": "BRA-BRA-MGMT-IPTRUNK",
+    "scid": "b9f8f440-038d-4a4e-bb99-6afdd111d953",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02602",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [],
+    "imsid": 658900,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-1GBE-012(ETH)",
+    "scid": "ba283a19-dc87-41ad-bd9f-a1e3e37a35c6",
+    "service_type": "ETHERNET",
+    "sid": "GA-01517",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "FCCN"
+    ],
+    "endpoints": [],
+    "imsid": 709746,
+    "monitored": true,
+    "name": "FCCN EUMETCAST AP2",
+    "scid": "ba4afbce-2cb2-4bf8-9969-5a94e7b2d9ad",
+    "service_type": "EUMETSAT TERRESTRIAL",
+    "sid": "GS-01104",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "212.133.7.166/30",
+          "2001:1900:5:2:2:0:8:5a56/126"
+        ],
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae28.0"
+      }
+    ],
+    "imsid": 720369,
+    "monitored": true,
+    "name": "COLT-GWS-VIE",
+    "scid": "ba5f76b0-1612-4e9f-bfc5-e9f5d8bbaf75",
+    "service_type": "GWS - UPSTREAM",
+    "sid": "GS-00070",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "INTERNET2"
+    ],
+    "endpoints": [],
+    "imsid": 661663,
+    "monitored": false,
+    "name": "PAR-PAR-MISC-SWITCH-INTERNET2-19116",
+    "scid": "ba7ddc4c-96a0-4613-8515-cb07a77bdb03",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00748",
+    "speed": 322122547200,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "COGENT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae19"
+      }
+    ],
+    "imsid": 662449,
+    "monitored": true,
+    "name": "LAG-MX1.BUD.HU_AE19",
+    "scid": "ba9322c1-93f2-409f-9ca8-163031e89fc5",
+    "service_type": "ETHERNET",
+    "sid": "GA-01898",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.245/30",
+          "2001:798:23:10aa::9/126"
+        ],
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ae11.100"
+      }
+    ],
+    "imsid": 661706,
+    "monitored": true,
+    "name": "PIONIER-AP1",
+    "scid": "badce9f7-75f9-4033-839b-4abf274ba34a",
+    "service_type": "GEANT IP",
+    "sid": "GS-00495",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "URAN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.127.156/31",
+          "2001:798:99:1::f9/126"
+        ],
+        "hostname": "rt1.kie.ua.geant.net",
+        "interface": "ae10.100"
+      }
+    ],
+    "imsid": 714001,
+    "monitored": true,
+    "name": "URAN-AP1",
+    "scid": "baf94437-b3b0-49b6-84cf-09c027e9d4f8",
+    "service_type": "GEANT IP",
+    "sid": "GS-00520",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 702121,
+    "monitored": true,
+    "name": "LAG-MX1.MAD.ES_AE3",
+    "scid": "bb030b01-0fac-4993-b17e-a777e468b904",
+    "service_type": "ETHERNET",
+    "sid": "GA-01782",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ORACLE"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae10.112"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae19.112"
+      }
+    ],
+    "imsid": 705439,
+    "monitored": true,
+    "name": "FRA-GEN-ORACLE-CERN-20150",
+    "scid": "bb3aeb56-5f86-4023-acc7-557780a35424",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00699",
+    "speed": 450971566080,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [],
+    "imsid": 661738,
+    "monitored": false,
+    "name": "BELNET-AP1",
+    "scid": "bb4e06c5-0c1a-4b97-ab81-7d4bb4981096",
+    "service_type": "GEANT IP",
+    "sid": "GS-00435",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae16.191"
+      },
+      {
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-21:191"
+      }
+    ],
+    "imsid": 747542,
+    "monitored": true,
+    "name": "HAM-MAD-02343",
+    "scid": "bb5ab83d-82f7-4984-8737-a10faff5e16f",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02343",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.21"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28.4082"
+      }
+    ],
+    "imsid": 739676,
+    "monitored": true,
+    "name": "BELNET-ZWEV-EXPRESSROUTE-VLAN4082",
+    "scid": "bb783906-5d3c-461a-adca-a6151b843aac",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01129",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ULAKBIM"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.52/31",
+          "2001:798:111:1::e9/126"
+        ],
+        "hostname": "rt0.sof.bg.geant.net",
+        "interface": "lag-23.111"
+      }
+    ],
+    "imsid": 744997,
+    "monitored": true,
+    "name": "ULAKBIM-AP2-LHCONE",
+    "scid": "bbe48914-6d1c-46c9-8086-8c328d3bafdc",
+    "service_type": "L3-VPN",
+    "sid": "GS-00869",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SINGAREN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "103.5.242.43/31",
+          "2401:c7c0:21a:fff7:0:20:965:1/127"
+        ],
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae12.840"
+      }
+    ],
+    "imsid": 727611,
+    "monitored": true,
+    "name": "FR-IC1-SINGAREN",
+    "scid": "bbe76de0-e9b4-45e5-add5-5415245a28f7",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-02320",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "REDCLARA"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.127.166/31",
+          "2001:798:0:1::d/126"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae19.612"
+      }
+    ],
+    "imsid": 736650,
+    "monitored": true,
+    "name": "REDCLARA-PAR-COPERNICUS",
+    "scid": "bc06fe95-4236-4a26-b343-b1976d7f8e39",
+    "service_type": "L3-VPN",
+    "sid": "GS-00849",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "172.21.6.1/24"
+        ],
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae3.998"
+      }
+    ],
+    "imsid": 702125,
+    "monitored": false,
+    "name": "EX3400-MANAGEMENT-MAD-ES",
+    "scid": "bc1a44f4-7ae8-4a89-ad19-241866f73378",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00154",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CESNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae23"
+      }
+    ],
+    "imsid": 731668,
+    "monitored": true,
+    "name": "CESNET-AP2-VIE-LAG",
+    "scid": "bc54f878-78a5-4b91-8241-3041224c3cce",
+    "service_type": "ETHERNET",
+    "sid": "GA-01899",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "REDCLARA"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.127.160/31",
+          "2001:798:0:1::1/126"
+        ],
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae15.668"
+      }
+    ],
+    "imsid": 713845,
+    "monitored": true,
+    "name": "REDCLARA-MAD-COPERNICUS",
+    "scid": "bc6ced75-3059-458a-a60f-203fa1fe4066",
+    "service_type": "L3-VPN",
+    "sid": "GS-00850",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5.3151"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae12.3151"
+      }
+    ],
+    "imsid": 705892,
+    "monitored": true,
+    "name": "LON-LON-GEANTOPEN-NORDUNET-SINGAREN-CAE1-19074-VL3151",
+    "scid": "bc6d5311-3173-490e-8ea0-09d12d6518d5",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00976",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-124049"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-21:3502"
+      }
+    ],
+    "imsid": 745306,
+    "monitored": true,
+    "name": "GEANT_EPIPE_124049",
+    "scid": "bc857d8e-0ceb-47fa-83e9-810b75c5aa82",
+    "service_type": "ETHERNET",
+    "sid": "GS-02511",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RESTENA"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.113/30",
+          "2001:0798:0014:10aa::21/126"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae18.2602"
+      }
+    ],
+    "imsid": 732142,
+    "monitored": true,
+    "name": "RESTENA-AP1",
+    "scid": "bc96eb08-e225-484c-b1ff-c17a181a84b9",
+    "service_type": "GEANT IP",
+    "sid": "GS-00507",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW2.MIL2.IT",
+        "port": "AE1"
+      }
+    ],
+    "imsid": 726135,
+    "monitored": true,
+    "name": "RT1.MIL2-SW2.MIL2-LAG-001(GEANT)",
+    "scid": "bc972494-6123-447c-a0df-b8c7c813acca",
+    "service_type": "ETHERNET",
+    "sid": "GA-02062",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SCION"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-0/1/7.370"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-0/0/7.370"
+      },
+      {
+        "addresses": [
+          "10.0.2.254/24"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "irb.370"
+      }
+    ],
+    "imsid": 732533,
+    "monitored": false,
+    "name": "SCION-SCION-FRA-INTERNAL-VPN-VL370",
+    "scid": "bc9dece8-ebf6-47bb-bf46-f9971f920528",
+    "service_type": "L3-VPN",
+    "sid": "GS-02216",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae2"
+      }
+    ],
+    "imsid": 742922,
+    "monitored": true,
+    "name": "BUD-BUD-LAG",
+    "scid": "bcd19a90-051d-4aa5-9a20-436e23c038c0",
+    "service_type": "ETHERNET",
+    "sid": "GA-02594",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "HEANET"
+    ],
+    "endpoints": [],
+    "imsid": 712192,
+    "monitored": false,
+    "name": "MD-VPN-VRR-PARIS-HEANET-IE-(RR1-PW-HEA-NET)",
+    "scid": "bcd2e9ff-7cd7-4053-9749-7c232f738ba5",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01045",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "mx1.lis.pt - Traffic - xe-1/1/0 - FCCN AP2 LL 3\t",
+    "scid": "bcf6fbab-4bac-42f0-8c4f-dac9d8b82684",
+    "service_type": null,
+    "sid": "DS-46639",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.par.fr.geant.net",
+        "interface": "ae0.0"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae30.3003"
+      },
+      {
+        "addresses": [
+          "62.40.123.59/29",
+          "2001:798:bb:4::3/64"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "irb.3003"
+      }
+    ],
+    "imsid": 712151,
+    "monitored": false,
+    "name": "PS-THROUGHPUT-NETWORK-PAR-FR",
+    "scid": "bd04925e-e0bf-4bc0-aeed-6cbcd277660a",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00354",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 733131,
+    "monitored": false,
+    "name": "BUC-FRA-IPTRUNK",
+    "scid": "bd09d218-e5fc-44c5-ab90-2d035408b225",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00023",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-111505"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-21:1008"
+      }
+    ],
+    "imsid": 745323,
+    "monitored": true,
+    "name": "GEANT_EPIPE_111505",
+    "scid": "bd0b0011-52eb-452b-bd92-ee343984ce57",
+    "service_type": "ETHERNET",
+    "sid": "GS-00680",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "VIE-OOB-MC",
+        "port": "GE-/1"
+      }
+    ],
+    "imsid": 677796,
+    "monitored": false,
+    "name": "VIE OOB LINK",
+    "scid": "bd221e52-81e6-4818-8ef6-59d2fa497906",
+    "service_type": "OOB IP LINK",
+    "sid": "GS-00419",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae14.518"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae26.518"
+      }
+    ],
+    "imsid": 709299,
+    "monitored": true,
+    "name": "LON-GEN-CNES-NISN-RENATER-09201",
+    "scid": "bd390604-e36a-45fe-b40a-b8bd85b6856c",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00723",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [],
+    "imsid": 709886,
+    "monitored": false,
+    "name": "AMS-GEN-EEX-ESNET-2104",
+    "scid": "bd6355ad-644c-413a-87c5-cc2008e6ee44",
+    "service_type": "GEANT LAMBDA",
+    "sid": "GS-00779",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "KIFU"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae10.2805"
+      },
+      {
+        "hostname": "rt1.bil.es.geant.net",
+        "interface": "ae15.953"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-124046"
+      },
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "pwe-124046"
+      }
+    ],
+    "imsid": 739311,
+    "monitored": true,
+    "name": "UPV/EHU-REDIRIS-KIFU-SLICES-SZTAKI",
+    "scid": "bdaeefa1-99e5-41e9-b8de-13e10264e3da",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02518",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.169/31",
+          "2001:798:cc:1::fe/126"
+        ],
+        "hostname": "rt0.poz.pl.geant.net",
+        "interface": "lag-6.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.168/31",
+          "2001:798:cc:1::fd/126"
+        ],
+        "hostname": "rt0.kau.lt.geant.net",
+        "interface": "lag-3.0"
+      }
+    ],
+    "imsid": 746527,
+    "monitored": true,
+    "name": "KAU-POZ-IPTRUNK",
+    "scid": "bdf51392-7991-4564-bc29-c409c4bd840b",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00043",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708154,
+    "monitored": false,
+    "name": "NE-ESXI-FRA-DE-IDRAC",
+    "scid": "bdf993b0-17ee-45b4-aa3d-a2805f6bbdd8",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00253",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW2.MAR.FR",
+        "port": "AE1"
+      }
+    ],
+    "imsid": 719608,
+    "monitored": true,
+    "name": "MAR01-MAR01-LAG-004(GEANT)",
+    "scid": "bdf9a65c-4eec-4d99-9110-490c7b0b978c",
+    "service_type": "ETHERNET",
+    "sid": "GA-02061",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.64/31",
+          "2001:798:cc:1::29/126"
+        ],
+        "hostname": "rt0.lon.uk.geant.net",
+        "interface": "lag-2.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.65/31",
+          "2001:798:cc:1::2a/126"
+        ],
+        "hostname": "rt0.lon2.uk.geant.net",
+        "interface": "lag-2.0"
+      }
+    ],
+    "imsid": 738842,
+    "monitored": true,
+    "name": "LON-LON2-IPTRUNK",
+    "scid": "be1ba63d-b53c-43ab-8d16-17b8c4517e18",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00052",
+    "speed": 1717986918400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.mil2.it.geant.net",
+        "interface": "lag-7"
+      }
+    ],
+    "imsid": 740948,
+    "monitored": true,
+    "name": "MIL2-MIL2-LAG",
+    "scid": "be2dcbf1-13e0-4c2b-822a-371c73f7ef28",
+    "service_type": "ETHERNET",
+    "sid": "GA-02547",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708745,
+    "monitored": false,
+    "name": "FRA-POZ-IPTRUNK",
+    "scid": "be523bf4-760c-4174-9f6a-2657d4260748",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00036",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.AM.OFFICE",
+        "port": "GE-1/0/4"
+      }
+    ],
+    "imsid": 658560,
+    "monitored": true,
+    "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-021(ETH)",
+    "scid": "be748e4c-3f3b-4180-92b9-b366d9572201",
+    "service_type": "ETHERNET",
+    "sid": "GA-01274",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ULAKBIM"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.the.gr.geant.net",
+        "interface": "lag-21"
+      }
+    ],
+    "imsid": 745286,
+    "monitored": true,
+    "name": "ULAKBIM-AP1-LAG",
+    "scid": "be7a90ca-1e4b-41b4-8710-042be5a070fa",
+    "service_type": "ETHERNET",
+    "sid": "GA-01904",
+    "speed": 0,
+    "status": "planned"
+  },
+  {
+    "customers": [
+      "LAT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae15.3003"
+      },
+      {
+        "hostname": "rt0.rig.lv.geant.net",
+        "interface": "pwe-150561"
+      },
+      {
+        "hostname": "rt0.rig.lv.geant.net",
+        "interface": "lag-20:3003"
+      }
+    ],
+    "imsid": 745967,
+    "monitored": true,
+    "name": "EVLBI-JIVE-00662",
+    "scid": "beb2d2ce-a399-406c-b323-ecd1eae09269",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00662",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [],
+    "imsid": 658773,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-1GBE-006(ETH)",
+    "scid": "bedf31ca-dbb2-4852-a2c9-8cf3a6cb9647",
+    "service_type": "ETHERNET",
+    "sid": "GA-01516",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.PRA.CZ.GEANT2.NET",
+        "port": "ETH-45"
+      },
+      {
+        "hostname": "mx1.pra.cz.geant.net",
+        "interface": "xe-2/0/2.1022"
+      },
+      {
+        "hostname": "mx1.pra.cz.geant.net",
+        "interface": "ge-0/3/9.1022"
+      }
+    ],
+    "imsid": 661916,
+    "monitored": false,
+    "name": "BOD-SDN-PILOT-HOST-ETH1-PRAGUE",
+    "scid": "befccdd4-26e3-4f06-9495-0c1a48a5c4f5",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00102",
+    "speed": 11811160064,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.AM.OFFICE",
+        "port": "GE-2/0/7"
+      }
+    ],
+    "imsid": 658593,
+    "monitored": true,
+    "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-026(ETH)",
+    "scid": "bf5d1f2d-aa3e-4613-88ef-54d35838a615",
+    "service_type": "ETHERNET",
+    "sid": "GA-01262",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 716952,
+    "monitored": false,
+    "name": "DCN-MANAGEMENT-BUD-HU",
+    "scid": "bf809248-bb2c-4fa6-be53-0a7355efef6f",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00106",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [],
+    "imsid": 738788,
+    "monitored": true,
+    "name": "V-LAN_246_RT1.BRU.BE_AE14_",
+    "scid": "bf814326-d51d-4481-98c2-343d98847678",
+    "service_type": "ETHERNET",
+    "sid": "GS-02333",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.43"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28.4070"
+      }
+    ],
+    "imsid": 741111,
+    "monitored": true,
+    "name": "BELNET-HOGENT-EXPRESSROUTE-VLAN4070",
+    "scid": "bfc4f0d7-3852-46bb-ad3a-930bdcd1cf20",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02574",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.144/31",
+          "2001:798:99:1::30/127"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae12.161"
+      }
+    ],
+    "imsid": 661439,
+    "monitored": true,
+    "name": "RENATER-AP-RTBH",
+    "scid": "bfff3423-7cbf-46a3-9f5a-5cfbb34cd382",
+    "service_type": "GEANT IP",
+    "sid": "GS-00503",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PSMP.LON.UK.GEANT2.NET",
+        "port": "1-10GE-1"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/0/6"
+      },
+      {
+        "addresses": [
+          "62.40.106.130/31",
+          "2001:798:fc00:28::5/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/0/6.0"
+      }
+    ],
+    "imsid": 708187,
+    "monitored": false,
+    "name": "PS-LON-UK-PSMP-BWCTL",
+    "scid": "c0127f31-17b6-4850-9aa7-c7a9461c3aec",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00319",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.123.217/29",
+          "2001:798:bb:38::1/64"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "et-11/3/0.100"
+      }
+    ],
+    "imsid": 708301,
+    "monitored": false,
+    "name": "DTN-PAR-100G-DATA",
+    "scid": "c0130d43-abac-4dc2-9b91-4e0d39e608bd",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00277",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [],
+    "imsid": 658975,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-1GBE-015(ETH)",
+    "scid": "c027abff-f550-4599-a2d4-a0dc81588a91",
+    "service_type": "ETHERNET",
+    "sid": "GA-01507",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "RIG-TAL-TRUNK",
+    "scid": "c037d8c1-d24f-4204-8f81-4ab8aafda4cb",
+    "service_type": null,
+    "sid": "GS-00549",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658660,
+    "monitored": false,
+    "name": "LON2-PRD-ESX01-VSAN-LAG",
+    "scid": "c05ba211-eb05-4753-939c-9eb3b33db778",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01706",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 707227,
+    "monitored": false,
+    "name": "AMS-GROOVE",
+    "scid": "c06b683a-6ae1-468b-b84f-42bd6a3a9a3d",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00090",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 743602,
+    "monitored": true,
+    "name": "SOF-SOF-IPTRUNK",
+    "scid": "c0b5ce20-2a38-43c8-83c7-0b13b8884c28",
+    "service_type": "IP TRUNK",
+    "sid": "GS-50009",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [],
+    "imsid": 708276,
+    "monitored": false,
+    "name": "NL-EEX-ESNET-OOB",
+    "scid": "c0bef8db-0fd6-45c1-a011-1b91fe243147",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00891",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/0/5"
+      }
+    ],
+    "imsid": 658906,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-061(ETH)",
+    "scid": "c0f795da-5b2f-4652-b465-c220d662e892",
+    "service_type": "ETHERNET",
+    "sid": "GA-01326",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "LAT"
+    ],
+    "endpoints": [],
+    "imsid": 669690,
+    "monitored": true,
+    "name": "LAT-AP2-LL-1",
+    "scid": "c130dd1f-c064-463d-be1a-6943ca0ef502",
+    "service_type": "ETHERNET",
+    "sid": "GA-02140",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708216,
+    "monitored": false,
+    "name": "PS-PAR-FR-BWCTL-XE4/0/0",
+    "scid": "c13dc034-c2c5-4828-91a2-c92cbe19b6ae",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00338",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.129/30",
+          "2001:798:99:1::21/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5.2023"
+      }
+    ],
+    "imsid": 661366,
+    "monitored": true,
+    "name": "NORDUNET-AP1",
+    "scid": "c1671512-4f49-46ba-9264-aeb5287eaf17",
+    "service_type": "GEANT IP",
+    "sid": "GS-00492",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661594,
+    "monitored": false,
+    "name": "LON-GROOVE-2-MANAGEMENT",
+    "scid": "c191f481-890c-4c50-8829-fb375b34b2d0",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00231",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ams.nl.geant.net",
+        "interface": "lag-8"
+      }
+    ],
+    "imsid": 739043,
+    "monitored": true,
+    "name": "AMS-FRA-1.6T-LAG",
+    "scid": "c1a05ef7-133c-4ba9-a46a-fad8d55c17e9",
+    "service_type": "ETHERNET",
+    "sid": "GA-01915",
+    "speed": 1717986918400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.39"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28.4067"
+      }
+    ],
+    "imsid": 739670,
+    "monitored": true,
+    "name": "BELNET-RVA-ONEM-EXPRESSROUTE-VLAN4067",
+    "scid": "c1b43827-bd76-4f4a-872a-0e2ba1816e6b",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02432",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "ams-lon_eVLBI_JANET-NetherLight_12010",
+    "scid": "c1c4094e-9e76-4ac6-8406-4fe1d0681836",
+    "service_type": null,
+    "sid": "GS-00641",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "equipment": "AMS01-GRV2",
+        "port": "1/3/8"
+      },
+      {
+        "equipment": "GEN01-GRV4",
+        "port": "1/3/8"
+      },
+      {
+        "equipment": "DIGITAL REALTY A-END",
+        "port": "NL172777-1"
+      },
+      {
+        "equipment": "DIGITAL REALTY Z-END",
+        "port": "NL172777-1"
+      }
+    ],
+    "imsid": 730061,
+    "monitored": true,
+    "name": "AMS-GEN1-EEX-ESNET-2373-3-400G",
+    "scid": "c1cc5200-6748-4bf6-ab95-d17eca1d8a90",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-02336",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.fra.de.geant.net",
+        "interface": "ae0.0"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "irb.991"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae30.991"
+      }
+    ],
+    "imsid": 733023,
+    "monitored": false,
+    "name": "CORIANT-LIBRENMS-ACCESS-FRA-DE",
+    "scid": "c1da5da7-f513-42f5-b9fe-4606eb0f98fb",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00108",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.fra.de.geant.net",
+        "interface": "ae2"
+      }
+    ],
+    "imsid": 658663,
+    "monitored": false,
+    "name": "FRANKFURT 15-FRANKFURT 15-LAG-054(GEANT)",
+    "scid": "c1f65e8f-588f-4863-93e7-2b88cd228a47",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01678",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.AM.OFFICE",
+        "port": "GE-0/0/46"
+      }
+    ],
+    "imsid": 658499,
+    "monitored": true,
+    "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-017(ETH)",
+    "scid": "c20b9371-1a71-4ce7-ae81-c790b9e83d4a",
+    "service_type": "ETHERNET",
+    "sid": "GA-01254",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 738899,
+    "monitored": true,
+    "name": "PARIS 007B-PARIS 007B-10GBE-001(GEANT)",
+    "scid": "c223df65-1067-46e9-9981-27164ad66cfb",
+    "service_type": "ETHERNET",
+    "sid": "GA-01382",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GARR"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "xe-2/0/0.1100"
+      },
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae12.1100"
+      }
+    ],
+    "imsid": 707040,
+    "monitored": true,
+    "name": "GEN-GEN-GARR-CERNLIGHT-CERN-GARR-16011",
+    "scid": "c23442f2-3e0e-4fb0-b0be-fc1f3e2ea273",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00708",
+    "speed": 332859965440,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ORACLE"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ae11.416"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae40.416"
+      }
+    ],
+    "imsid": 726355,
+    "monitored": true,
+    "name": "FRA-POZ-ORACLE-PIONIER-23002-VL416",
+    "scid": "c23e44cf-a432-4564-bac6-3eccf4b49868",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02243",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "URAN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.89.192/31",
+          "2001:798:1::215/126"
+        ],
+        "hostname": "rt1.kie.ua.geant.net",
+        "interface": "ae10.333"
+      }
+    ],
+    "imsid": 713995,
+    "monitored": true,
+    "name": "URAN-AP1-IAS",
+    "scid": "c2535121-6f0a-44f4-bab8-ebde3099606d",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00593",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.19/31",
+          "2001:798:cc::16/126"
+        ],
+        "hostname": "rt0.lon2.uk.geant.net",
+        "interface": "lag-6.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.18/31",
+          "2001:798:cc::15/126"
+        ],
+        "hostname": "rt0.cor.ie.geant.net",
+        "interface": "lag-3.0"
+      }
+    ],
+    "imsid": 738860,
+    "monitored": true,
+    "name": "COR-LON2-IPTRUNK",
+    "scid": "c26b818b-0512-4be8-9740-62f2ba60da81",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02386",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658696,
+    "monitored": false,
+    "name": "LON2-PRD-ESX12-VSAN-LAG",
+    "scid": "c27038e1-5257-41cf-ba83-712b5562c3c2",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01713",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT-IT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.fra.de.geant.net",
+        "interface": "ae14"
+      }
+    ],
+    "imsid": 679045,
+    "monitored": true,
+    "name": "FRA-SUPERPOP-LAG",
+    "scid": "c29d438f-0d92-44e0-a730-1b74577463b5",
+    "service_type": "ETHERNET",
+    "sid": "GA-01686",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CSTNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.64/31",
+          "2001:798:111:1::f5/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae12.112"
+      }
+    ],
+    "imsid": 730081,
+    "monitored": true,
+    "name": "CSTNET-LON-LHCONE-SECONDARY",
+    "scid": "c2a86c96-75ac-4bd4-a540-52acdb190e82",
+    "service_type": "L3-VPN",
+    "sid": "GS-02380",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "REDIRIS-AP2-CLS|ASN766",
+    "scid": "c2aaefe4-6774-48d2-99d8-7db4f5d711b5",
+    "service_type": null,
+    "sid": "GS-00614",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-4/1/4.2710"
+      },
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ae11.2710"
+      }
+    ],
+    "imsid": 739897,
+    "monitored": true,
+    "name": "LON-POZ-PIONIER-ESNET-QUANTUM-DEMO-VL2710",
+    "scid": "c2af009b-d919-4ead-b5d4-f4d1e05318e0",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02557",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.kie.ua.geant.net",
+        "interface": "ae1"
+      }
+    ],
+    "imsid": 713324,
+    "monitored": true,
+    "name": "KIE-KIE-LAG",
+    "scid": "c2b1e809-0e87-438e-a0f4-ee1e3b09f831",
+    "service_type": "ETHERNET",
+    "sid": "GA-02023",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.sof.bg.geant.net",
+        "interface": "lag-5"
+      }
+    ],
+    "imsid": 744990,
+    "monitored": true,
+    "name": "BUC-SOF-LAG",
+    "scid": "c2d5f624-3636-4670-9954-62760ed1c293",
+    "service_type": "ETHERNET",
+    "sid": "GA-01733",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BREN"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW2.SOF.BG",
+        "port": "AE3"
+      }
+    ],
+    "imsid": 745039,
+    "monitored": true,
+    "name": "BREN-AP2-LAG",
+    "scid": "c3080f02-99aa-4134-8ee5-56afca846349",
+    "service_type": "ETHERNET",
+    "sid": "GA-01997",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "AMRES"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.5/30",
+          "2001:798:1::9/126"
+        ],
+        "hostname": "rt0.sof.bg.geant.net",
+        "interface": "lag-21.333"
+      }
+    ],
+    "imsid": 744957,
+    "monitored": true,
+    "name": "AMRES-AP2-IAS",
+    "scid": "c310cf90-0422-4e84-8cf0-47ba377cff1c",
+    "service_type": "GWS - INDIRECT",
+    "sid": "GS-02241",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.8/31",
+          "2001:798:cc:1::119/126"
+        ],
+        "hostname": "rt0.sof.bg.geant.net",
+        "interface": "lag-3.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.9/31",
+          "2001:798:cc:1::11a/126"
+        ],
+        "hostname": "rt0.zag.hr.geant.net",
+        "interface": "lag-1.0"
+      }
+    ],
+    "imsid": 747867,
+    "monitored": true,
+    "name": "SOF-ZAG-IPTRUNK",
+    "scid": "c335e87a-a00f-48c9-9e5a-71693e8ea6c0",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02367",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.109.202/31"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "gr-3/0/0.20"
+      }
+    ],
+    "imsid": 732662,
+    "monitored": false,
+    "name": "GRE-MULTICAST-TUNNEL-KMA2",
+    "scid": "c35754f2-9b40-432e-88db-84138eb6e783",
+    "service_type": "EUMETSAT GRE",
+    "sid": "GS-00790",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 712568,
+    "monitored": false,
+    "name": "EX3400-MANAGEMENT-PRA-CZ",
+    "scid": "c3656cc7-ec51-46c4-9ab0-d361a0b28f13",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00159",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GOOGLE"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "et-2/1/1"
+      },
+      {
+        "addresses": [
+          "173.194.125.195/31",
+          "2001:4860:1:1::3a69/127"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae49.0"
+      }
+    ],
+    "imsid": 746056,
+    "monitored": true,
+    "name": "GOOGLE-FRA-IP1",
+    "scid": "c39b0dd0-dfb4-4d59-90b0-0a85f2485d68",
+    "service_type": "ETHERNET",
+    "sid": "GS-00934",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [],
+    "imsid": 662247,
+    "monitored": true,
+    "name": "AMSTERDAM-AMSTERDAM-1GBE-058(ETH)",
+    "scid": "c39b9496-57f1-4be8-8568-8c58c4678351",
+    "service_type": "ETHERNET",
+    "sid": "GA-01591",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NETHERLIGHT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-2/0/5.4020"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae19.4020"
+      }
+    ],
+    "imsid": 736741,
+    "monitored": true,
+    "name": "LON-PAR-GEANTOPEN-INTERNET2-NETHERLIGHT-15034",
+    "scid": "c3e109c3-4e36-4cf4-a5c9-d91e2f8648a5",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00968",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662860,
+    "monitored": true,
+    "name": "DE-CSTNET LAG",
+    "scid": "c406b696-6083-4686-a585-3ab6778287d0",
+    "service_type": "ETHERNET",
+    "sid": "GA-01964",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "ae7"
+      }
+    ],
+    "imsid": 744435,
+    "monitored": true,
+    "name": "LON2-AMT-LAG",
+    "scid": "c417031b-98e1-4dc9-a737-f7d75f8604ad",
+    "service_type": "ETHERNET",
+    "sid": "GA-02301",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.104.193/30"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae2.53"
+      }
+    ],
+    "imsid": 745870,
+    "monitored": false,
+    "name": "FLOWMON-LON-IDRAC",
+    "scid": "c41c5af1-6375-4f4b-aec0-a89444b6b527",
+    "service_type": "SERVER LINK",
+    "sid": "GS-01193",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663011,
+    "monitored": false,
+    "name": "DNA-FRA-DE-ILO",
+    "scid": "c42cd91c-9c49-45a3-84b4-961dab243923",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00136",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/0/6"
+      }
+    ],
+    "imsid": 721140,
+    "monitored": true,
+    "name": "PARIS-PSMP-MGMT (GEANT)",
+    "scid": "c4385623-973b-425f-978e-f1e67fbacc85",
+    "service_type": "ETHERNET",
+    "sid": "GA-01397",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SWITCH"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae13"
+      }
+    ],
+    "imsid": 659313,
+    "monitored": true,
+    "name": "SWITCH-AP2-LAG",
+    "scid": "c4419bc4-2cbf-4bc8-9260-0cda17a00970",
+    "service_type": "ETHERNET",
+    "sid": "GA-01817",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae7"
+      }
+    ],
+    "imsid": 744346,
+    "monitored": true,
+    "name": "AMS-AMT-LAG",
+    "scid": "c48751f8-34ad-439c-ac75-a1a04b5ed972",
+    "service_type": "ETHERNET",
+    "sid": "GA-02302",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.fra.de.geant.net",
+        "interface": "ae0.0"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae30.3000"
+      }
+    ],
+    "imsid": 733005,
+    "monitored": false,
+    "name": "VM-DATANETWORK-FRA",
+    "scid": "c48bb3d0-ac8e-402c-ba78-550ad6bdb970",
+    "service_type": "POP LAN LINK",
+    "sid": "GS-00084",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 709619,
+    "monitored": false,
+    "name": "HA-3140E01B69",
+    "scid": "c491707b-ffd3-4e92-af24-7c4ba0468993",
+    "service_type": "GTS",
+    "sid": "GS-01173",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "RedIRIS-GN-PRACE-VPN-Proxy-Marseille-L3VPN",
+    "scid": "c4c0ed0e-f010-4c8b-a224-78a85ca22205",
+    "service_type": null,
+    "sid": "GS-01068",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 744057,
+    "monitored": false,
+    "name": "BRU-BRU-IPTRUNK",
+    "scid": "c4e87f30-543c-417f-bd89-ba4a3e1e33a5",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02571",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5.123"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-4/1/4.123"
+      }
+    ],
+    "imsid": 738642,
+    "monitored": true,
+    "name": "LON-LON-GEANTOPEN-ESNET-NORDUNET-15039-1",
+    "scid": "c4f0c295-1abe-4464-8089-9d7606c4c37f",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00963",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 707240,
+    "monitored": false,
+    "name": "DCN-MANAGEMENT-MIL2-IT-NEW",
+    "scid": "c502fc22-8cac-469a-a111-b67599801724",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00247",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.104.34/31"
+        ],
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ae1.28"
+      }
+    ],
+    "imsid": 732103,
+    "monitored": false,
+    "name": "POZ-EUMETSAT-SERVER-DATA-TRAFFIC",
+    "scid": "c5169868-38fa-4809-84d3-81bfd8bd97a8",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-02360",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GRNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "lag-20"
+      }
+    ],
+    "imsid": 745467,
+    "monitored": true,
+    "name": "GRNET-AP1-LAG",
+    "scid": "c517debb-5428-4cdf-82da-cdd396544e25",
+    "service_type": "ETHERNET",
+    "sid": "GA-01794",
+    "speed": 64424509440,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 660551,
+    "monitored": false,
+    "name": "LON-SINET-INTERNET-ACCESS",
+    "scid": "c56c589a-710f-4191-a304-f58acd786b0a",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00236",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708315,
+    "monitored": false,
+    "name": "FLOWMON-DDOS-FRA-DE-IDRAC",
+    "scid": "c5787831-0a20-42e1-b213-944d7d910d49",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00163",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708006,
+    "monitored": true,
+    "name": "RIG-TAL-LAG",
+    "scid": "c591626c-a7d6-49ba-9c67-dc8edd689c90",
+    "service_type": "ETHERNET",
+    "sid": "GA-02050",
+    "speed": 32212254720,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.par.fr.geant.net",
+        "interface": "ae0.0"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae30.3004"
+      },
+      {
+        "addresses": [
+          "10.254.254.3/29"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "irb.3004"
+      }
+    ],
+    "imsid": 712152,
+    "monitored": false,
+    "name": "TAAS-CONTROL-RANCID-LOGICAL-INTERFACE-PAR-FR",
+    "scid": "c5bf4d76-6da0-44a1-afeb-6127ada78f16",
+    "service_type": "L3-VPN",
+    "sid": "GS-00865",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5.3910"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.12"
+      }
+    ],
+    "imsid": 706560,
+    "monitored": true,
+    "name": "NORDUNET-HHU-EXPRESSROUTE-VLAN3910",
+    "scid": "c5bfe097-4a36-46db-b2c3-adff4f18db66",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01156",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GRNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.100.50/31",
+          "2001:798::61/126"
+        ],
+        "hostname": "mx1.ath2.gr.geant.net",
+        "interface": "ae11.667"
+      }
+    ],
+    "imsid": 663015,
+    "monitored": false,
+    "name": "GRNET-AP2-CLS",
+    "scid": "c5c574ad-32aa-4903-ae1d-50328c5f523b",
+    "service_type": "GEANT CLOUD PEERING",
+    "sid": "GS-00609",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SCION"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "xe-2/1/4.1726"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.1726"
+      }
+    ],
+    "imsid": 732831,
+    "monitored": true,
+    "name": "AMS-GEN-KAUST-SCION",
+    "scid": "c63fc8f0-7c84-43e5-9430-e2fca1bedfcb",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02418",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.117.88/31"
+        ],
+        "hostname": "rt1.kie.ua.geant.net",
+        "interface": "ae2.998"
+      }
+    ],
+    "imsid": 713313,
+    "monitored": false,
+    "name": "EX3400-MANAGEMENT-KIE-UA",
+    "scid": "c648e129-b7b9-4c78-bbf3-5bc66018c2f1",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00152",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "KIAE"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.121/30",
+          "2001:798:99:1::8d/126"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae16.100"
+      }
+    ],
+    "imsid": 734246,
+    "monitored": true,
+    "name": "NL-KIAE",
+    "scid": "c65bd8e2-6e6a-421f-82df-edea4123a75f",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00896",
+    "speed": 32212254720,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.120.65/29"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae2.310"
+      }
+    ],
+    "imsid": 740700,
+    "monitored": false,
+    "name": "DTN-PROJECT-VLAN310",
+    "scid": "c662da28-422a-421a-b184-c6c246d67b6e",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00142",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661383,
+    "monitored": false,
+    "name": "XANTARO-SERVICE-ENGINE-REMOTEKVM-LON2-VLAN940",
+    "scid": "c66721fa-422b-4cb8-aa96-76bd47249a5d",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00388",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ENSTINET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.301"
+      }
+    ],
+    "imsid": 734573,
+    "monitored": false,
+    "name": "NL-ENSTINET-IAS",
+    "scid": "c67758f9-c224-47a7-a94a-c6d9d7401d5e",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00579",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.par.fr.geant.net",
+        "interface": "xe-0/0/40"
+      }
+    ],
+    "imsid": 721387,
+    "monitored": true,
+    "name": "PARIS 007B-PARIS 007B-10GBE-010(GEANT)",
+    "scid": "c67a3ca0-0cba-410a-8345-3dfa4a0fb559",
+    "service_type": "ETHERNET",
+    "sid": "GA-01668",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-0/0/26"
+      }
+    ],
+    "imsid": 658649,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-044(ETH)",
+    "scid": "c68d5615-2d47-4fde-b8be-bca37088df5e",
+    "service_type": "ETHERNET",
+    "sid": "GA-01228",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.vie.at.geant.net",
+        "interface": "lag-3"
+      }
+    ],
+    "imsid": 740750,
+    "monitored": true,
+    "name": "VIE-VIE-LAG",
+    "scid": "c69101bb-1942-4400-b11f-6ea34ee7e363",
+    "service_type": "ETHERNET",
+    "sid": "GA-02562",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 677786,
+    "monitored": false,
+    "name": "SOF OOB LINK",
+    "scid": "c6a4a1cf-5682-4937-a6b0-73bb86ab4a35",
+    "service_type": "OOB IP LINK",
+    "sid": "GS-00417",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 677790,
+    "monitored": false,
+    "name": "TAL OOB LINK",
+    "scid": "c6af1acd-ca4e-4b71-9716-9c2a5a48f654",
+    "service_type": "OOB IP LINK",
+    "sid": "GS-00418",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ORANGE"
+    ],
+    "endpoints": [],
+    "imsid": 733923,
+    "monitored": true,
+    "name": "NL-ORANGE-LAG-1",
+    "scid": "c6c02e10-8e53-41e7-8266-cfde5355c3a1",
+    "service_type": "ETHERNET",
+    "sid": "GA-02141",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 719588,
+    "monitored": true,
+    "name": "AMSTERDAM-AMSTERDAM-1GBE-001(GEANT)",
+    "scid": "c7090b30-837a-4078-859b-d9c6cf88659a",
+    "service_type": "ETHERNET",
+    "sid": "GA-01586",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ASNET-AM"
+    ],
+    "endpoints": [],
+    "imsid": 746552,
+    "monitored": false,
+    "name": "ASNET-AM-AP2-TEST",
+    "scid": "c726ebd2-1454-4a1c-a900-0edb44ba6289",
+    "service_type": "GEANT IP",
+    "sid": "TS-00430",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "DFN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae11"
+      }
+    ],
+    "imsid": 743291,
+    "monitored": true,
+    "name": "DFN-AP1-LAG-400G",
+    "scid": "c73589e3-fd22-4fe7-bc54-4c0ae4de7efc",
+    "service_type": "ETHERNET",
+    "sid": "GA-01957",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BREN"
+    ],
+    "endpoints": [],
+    "imsid": 712354,
+    "monitored": true,
+    "name": "MD-VPN-VRR-LJUBLJANA-BREN-BG",
+    "scid": "c761998e-3f08-4dec-8031-76d94f536c28",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01013",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "Belnet CONFINE BRU L3VPN",
+    "scid": "c79892fd-1b39-4355-b090-05aa1bd4b5df",
+    "service_type": null,
+    "sid": "DS-28049",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [],
+    "imsid": 708305,
+    "monitored": true,
+    "name": "GEN513-EEX-ESNET-1G",
+    "scid": "c79c24dd-0402-4ac9-a011-abc778fbefc0",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00187",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GARR"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.mil2.it.geant.net",
+        "interface": "ae10.4088"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.22"
+      }
+    ],
+    "imsid": 707295,
+    "monitored": true,
+    "name": "GARR-ROMA_EXPRESSROUTE_VLAN4088",
+    "scid": "c7af49ba-94ec-413a-b819-14b37888133e",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01147",
+    "speed": 332859965440,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.pra.cz.geant.net",
+        "interface": "ae2"
+      }
+    ],
+    "imsid": 739238,
+    "monitored": true,
+    "name": "PRA-PRA-LAG",
+    "scid": "c7c2ba71-7c2a-433f-b643-99d5e5b9b26d",
+    "service_type": "ETHERNET",
+    "sid": "GA-02543",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "JISC"
+    ],
+    "endpoints": [],
+    "imsid": 714986,
+    "monitored": false,
+    "name": "DTN-JISC-NETHERLIGHT-21093",
+    "scid": "c7c44b27-02eb-4ed0-b1d0-be676f0e8cf0",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00688",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "RARE"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PF1-RARE.AMS.NL.GEANT.NET",
+        "port": "XE-2"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "xe-9/0/3.1916"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae15.1916"
+      }
+    ],
+    "imsid": 736072,
+    "monitored": false,
+    "name": "AMS-PAR-RARE-INTERNET2-RNP-20061",
+    "scid": "c7f1bf65-eb72-4f3d-af16-6b93695dadc1",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00655",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.420"
+      },
+      {
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-20:420"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae34.420"
+      }
+    ],
+    "imsid": 745831,
+    "monitored": true,
+    "name": "AMSTERDAM-AMSTERDAM-ETHS-409(GEANT)",
+    "scid": "c7f5e6de-99d1-4a67-9bf0-ae9aee46dba1",
+    "service_type": "ETHERNET",
+    "sid": "GS-02211",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "SANET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.bra.sk.geant.net",
+        "interface": "ae13"
+      }
+    ],
+    "imsid": 718826,
+    "monitored": true,
+    "name": "SANET-AP1-LAG",
+    "scid": "c7fe2cc8-d104-461c-82c8-81a3deca515c",
+    "service_type": "ETHERNET",
+    "sid": "GA-02157",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.112.2/29",
+          "2001:799:cb2::2/64"
+        ],
+        "hostname": "srx1.ch.office.geant.net",
+        "interface": "ge-0/0/3.501"
+      }
+    ],
+    "imsid": 663189,
+    "monitored": false,
+    "name": "SRX1-CITY-HOUSE-WAN-GATEWAY",
+    "scid": "c80fdf8c-c8b4-4dc2-a27a-ff02df72d61b",
+    "service_type": "CORPORATE",
+    "sid": "GS-01744",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658993,
+    "monitored": true,
+    "name": "BRUSSELS-BRUSSELS-1GBE-006(ETH)",
+    "scid": "c816804c-afdd-4a68-ab4c-fdc68d1f21c5",
+    "service_type": "ETHERNET",
+    "sid": "GA-01360",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SINGAREN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "203.30.38.93/31",
+          "2001:df0:21a:fff2:0:20:965:1/64"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae12.3160"
+      }
+    ],
+    "imsid": 661924,
+    "monitored": true,
+    "name": "UK-CAE1-SINGAREN",
+    "scid": "c83ba1d9-bff1-4947-8585-dc997f3be6a5",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00912",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663125,
+    "monitored": false,
+    "name": "PSMP3-MANAGEMENT-LHCONE",
+    "scid": "c84075b9-ba96-4191-aff3-b2fc99af8eac",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00368",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "172.18.254.5/30"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "gr-4/0/0.1"
+      }
+    ],
+    "imsid": 736088,
+    "monitored": false,
+    "name": "TUNNEL-FORTIGATE-AMSTERDAM",
+    "scid": "c854bca5-a89b-44aa-b307-46c4b712d592",
+    "service_type": "L3-VPN",
+    "sid": "GS-01113",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663098,
+    "monitored": false,
+    "name": "PS-BUD-HU-MANAGEMENT",
+    "scid": "c85a204a-d7c4-47bf-9e80-d731ab2a763c",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00294",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.89.13/30",
+          "2001:798:1::111/126"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae14.333"
+      }
+    ],
+    "imsid": 678048,
+    "monitored": true,
+    "name": "RENATER-AP2-IAS",
+    "scid": "c8b67507-835d-47b7-b137-4bc0d1a7104d",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00584",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CSTNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.26/31",
+          "2001:798:99:1::5/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae12.1007"
+      }
+    ],
+    "imsid": 732232,
+    "monitored": true,
+    "name": "UK-CAE-1-CSTNET-SECONDARY",
+    "scid": "c8bee5bf-01ee-4d42-89fb-894e85597692",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-02391",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662932,
+    "monitored": false,
+    "name": "AMS-GROOVE-1",
+    "scid": "c8c28f15-a34b-4fa0-8af4-f00e3ad618d2",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00091",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 728004,
+    "monitored": true,
+    "name": "AMS-PSMP-PS BWCTL(GEANT)",
+    "scid": "c8e8c5e0-8e1c-4e58-8eb5-20d609d597c6",
+    "service_type": "ETHERNET",
+    "sid": "GA-01638",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CESNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.24/31",
+          "2001:798:111:1::95/126"
+        ],
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae23.111"
+      }
+    ],
+    "imsid": 733852,
+    "monitored": true,
+    "name": "CESNET-AP2-LHCONE",
+    "scid": "c90af496-4a28-4cd1-a177-b27967b34f06",
+    "service_type": "L3-VPN",
+    "sid": "GS-02455",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.AM.OFFICE",
+        "port": "XE-2/2/0"
+      }
+    ],
+    "imsid": 658501,
+    "monitored": true,
+    "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-10GBE-003(ETH)",
+    "scid": "c9403b16-b52b-4764-871f-85b502acf386",
+    "service_type": "ETHERNET",
+    "sid": "GA-01279",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CYNET"
+    ],
+    "endpoints": [],
+    "imsid": 736657,
+    "monitored": false,
+    "name": "CYNET-AP3-IAS",
+    "scid": "c942c0da-21af-40fa-93da-4e7f159915f1",
+    "service_type": "GWS - INDIRECT",
+    "sid": "GS-00526",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SURF"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.209/30",
+          "2001:0798:0028:10aa::11/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae11.1103"
+      }
+    ],
+    "imsid": 660540,
+    "monitored": true,
+    "name": "SURF-AP2",
+    "scid": "c94845ef-6002-45a8-98cb-a4f207e6b31b",
+    "service_type": "GEANT IP",
+    "sid": "GS-00513",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 743134,
+    "monitored": true,
+    "name": "DUB-DUB-IPTRUNK",
+    "scid": "c99ec2e5-547d-4da7-b9ae-6ba9d8f98571",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02621",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "217.29.66.183/21",
+          "2001:7f8:b:100:1d1:a5d2:965:183/64"
+        ],
+        "hostname": "rt1.mil2.it.geant.net",
+        "interface": "ae20.0"
+      }
+    ],
+    "imsid": 708323,
+    "monitored": false,
+    "name": "IX-PEERINGS-IN-MIX",
+    "scid": "c9a4f7b5-3126-4ec9-b5d0-178117a60880",
+    "service_type": "IP PEERING - NON R&E (PUBLIC)",
+    "sid": "GS-00952",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CARNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.149/30",
+          "2001:0798:001b:10aa::29/126"
+        ],
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae12.36"
+      }
+    ],
+    "imsid": 730104,
+    "monitored": true,
+    "name": "CARNET-AP2",
+    "scid": "c9aef082-e342-4e48-8c9a-57805a1d9d48",
+    "service_type": "GEANT IP",
+    "sid": "GS-00441",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-1/0/6"
+      }
+    ],
+    "imsid": 658621,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-039(ETH)",
+    "scid": "c9beda45-f721-47b9-8b22-1f6f991212e3",
+    "service_type": "ETHERNET",
+    "sid": "GA-01234",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.29"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-240588"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20:4080"
+      }
+    ],
+    "imsid": 744146,
+    "monitored": true,
+    "name": "MSEUCLOUVAIN-02152",
+    "scid": "c9c70e8d-8f14-44e4-ada6-d1ba6c3e1414",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02152",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.33"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28.4084"
+      }
+    ],
+    "imsid": 739669,
+    "monitored": true,
+    "name": "BELNET-KULEUVEN-EXPRESSROUTE-4084",
+    "scid": "c9d3556a-bb2d-4b13-89ae-eb626906a0f1",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01135",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "80.81.192.173/21",
+          "2001:7f8::51e5:0:1/64"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae20.100"
+      }
+    ],
+    "imsid": 730796,
+    "monitored": false,
+    "name": "IX-PEERINGS-IN-DE-CIX-FRA",
+    "scid": "c9de51c7-7e2d-4570-ac0a-a5a652237dbc",
+    "service_type": "IP PEERING - NON R&E (PUBLIC)",
+    "sid": "GS-00947",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 707278,
+    "monitored": true,
+    "name": "POZ-VIE-LAG",
+    "scid": "c9eb9934-f8da-4b0c-9eba-ce042a41e154",
+    "service_type": "ETHERNET",
+    "sid": "GA-01813",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "195.169.24.26/29",
+          "2001:610:9d8:1::2/64"
+        ],
+        "hostname": "srx2.am.office.geant.net",
+        "interface": "ge-0/0/0.50"
+      }
+    ],
+    "imsid": 663042,
+    "monitored": false,
+    "name": "SRX2-AMS-TO-FW-WAN",
+    "scid": "c9f58189-ad91-44df-b352-69d9ea80a002",
+    "service_type": "CORPORATE",
+    "sid": "GS-01746",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5.2021"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae19.2021"
+      }
+    ],
+    "imsid": 736882,
+    "monitored": true,
+    "name": "NORDU-TO-WIX-2021",
+    "scid": "c9fd12ba-3ffc-4336-9d0c-a2394dfe835d",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00743",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 679112,
+    "monitored": true,
+    "name": "TAL-TAL-LAG",
+    "scid": "ca13c091-d212-486b-a3cb-a7d4aa6b5c60",
+    "service_type": "ETHERNET",
+    "sid": "GA-02052",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [],
+    "imsid": 658833,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-054(ETH)",
+    "scid": "ca201ab3-f805-44fa-8edb-172febc2f348",
+    "service_type": "ETHERNET",
+    "sid": "GA-01320",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CIXP"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae18"
+      }
+    ],
+    "imsid": 662507,
+    "monitored": true,
+    "name": "CIXP-LAG",
+    "scid": "ca2cff36-bdaf-4158-95fc-bd1bcaf41df2",
+    "service_type": "ETHERNET",
+    "sid": "GA-01881",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.148/31",
+          "2001:798:cc:1::91/126"
+        ],
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae1.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.149/31",
+          "2001:798:cc:1::92/126"
+        ],
+        "hostname": "rt0.mil2.it.geant.net",
+        "interface": "lag-1.0"
+      }
+    ],
+    "imsid": 746147,
+    "monitored": true,
+    "name": "MAR-MIL2-IPTRUNK",
+    "scid": "ca39e8f6-2fbd-4d04-ba99-153276b2bc99",
+    "service_type": "IP TRUNK",
+    "sid": "GS-01185",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "xe-2/0/2.0"
+      }
+    ],
+    "imsid": 740087,
+    "monitored": false,
+    "name": "PS-GEN-CH-BWCTL",
+    "scid": "ca532cfd-bea1-40c7-9574-35699196d319",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00307",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "CARNET"
+    ],
+    "endpoints": [],
+    "imsid": 709736,
+    "monitored": true,
+    "name": "CARNET EUMETCAST AP1",
+    "scid": "ca8d32ee-cbf9-4304-ba4d-20ef4ca1e3c6",
+    "service_type": "EUMETSAT TERRESTRIAL",
+    "sid": "GS-01097",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GARR"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.mil2.it.geant.net",
+        "interface": "ae10"
+      }
+    ],
+    "imsid": 726093,
+    "monitored": true,
+    "name": "GARR-AP1-LAG",
+    "scid": "caa54ef7-b04a-4f74-882c-889a0a57c95e",
+    "service_type": "ETHERNET",
+    "sid": "GA-01773",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.77/30"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae13.104"
+      }
+    ],
+    "imsid": 730102,
+    "monitored": true,
+    "name": "CH-ESNET-IPV4",
+    "scid": "cac678e8-45d9-4472-a7b3-61d498b19b53",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00872",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 659095,
+    "monitored": true,
+    "name": "PAR01-DTNX10-1-XCM2-1GBE-008(ETH)",
+    "scid": "cad079b3-506f-4270-80b2-d8df493219c7",
+    "service_type": "ETHERNET",
+    "sid": "GA-01406",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.13"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-240591"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20:4087"
+      }
+    ],
+    "imsid": 744148,
+    "monitored": true,
+    "name": "MSEICT-01133",
+    "scid": "cb832ef3-f739-4bc3-b9ef-ffac677e5dd8",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01133",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [
+      {
+        "equipment": "DIGITAL REALTY A-END",
+        "port": "DE259558"
+      },
+      {
+        "equipment": "DIGITAL REALTY Z-END",
+        "port": "DE259558"
+      }
+    ],
+    "imsid": 739824,
+    "monitored": true,
+    "name": "FRA-POZ-PSNC-24052-2",
+    "scid": "cc0fc4ec-c521-4ae1-bfb7-8431a8f3e356",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-02550",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ACONET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.89.216/31",
+          "2001:798:1::1ad/126"
+        ],
+        "hostname": "rt1.mil2.it.geant.net",
+        "interface": "ae18.52"
+      }
+    ],
+    "imsid": 661759,
+    "monitored": true,
+    "name": "ACONET-AP2-IAS",
+    "scid": "cc5f3b04-63ee-4f93-89c2-ff9d7cec0f13",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00551",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 731211,
+    "monitored": false,
+    "name": "EX3400-MANAGEMENT-LJU-SI",
+    "scid": "cc75f98b-d911-4fbe-a119-2f4d1d8f7aee",
+    "service_type": "SERVER LINK",
+    "sid": "GS-XXXXX",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [],
+    "imsid": 730153,
+    "monitored": false,
+    "name": "BRU-LON-IX-BELNET-BELNET-20009",
+    "scid": "cc862dc4-45d2-43b9-ba9c-deea02151e52",
+    "service_type": "GEANT - GBS",
+    "sid": "GS-00789",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae5"
+      }
+    ],
+    "imsid": 735410,
+    "monitored": true,
+    "name": "AMS-AMS-800G-LAG",
+    "scid": "cccb78db-0584-4c94-ae86-8528f036ad77",
+    "service_type": "ETHERNET",
+    "sid": "GA-02456",
+    "speed": 858993459200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 721142,
+    "monitored": true,
+    "name": "AMS-PAR-LOFAR-RENATER-NETHERLIGHT-10001-LL1",
+    "scid": "ccd32cbc-dae0-4bde-b589-14c2f1ba5926",
+    "service_type": "ETHERNET",
+    "sid": "GA-01388",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661457,
+    "monitored": false,
+    "name": "LON-SINET-EDGE-DEVICE-IDRAC",
+    "scid": "ccff1277-f356-4359-9abc-f1e31e28d598",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00234",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GRNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.42/31",
+          "2001:798:99:1::69/126"
+        ],
+        "hostname": "rt0.the.gr.geant.net",
+        "interface": "lag-20.100"
+      }
+    ],
+    "imsid": 745279,
+    "monitored": true,
+    "name": "GRNET-AP2",
+    "scid": "cd200521-330b-4fa8-b689-70c18e69bb67",
+    "service_type": "GEANT IP",
+    "sid": "GS-00472",
+    "speed": 64424509440,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658896,
+    "monitored": true,
+    "name": "VIENNA-VERIZON-LL-2-2",
+    "scid": "cd28abe0-b9e7-427c-8b7f-334725c2c996",
+    "service_type": "ETHERNET",
+    "sid": "GA-01490",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "Now ASREN LAG",
+    "scid": "cd2aabc3-648a-4f39-b553-7127c7285bda",
+    "service_type": null,
+    "sid": "GS-01758",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658883,
+    "monitored": true,
+    "name": "BRATISLAVA-BRATISLAVA-1GBE-008(ETH)",
+    "scid": "cd5bbe1f-3f2a-46d8-b187-c5407f9aa9c8",
+    "service_type": "ETHERNET",
+    "sid": "GA-01303",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663064,
+    "monitored": false,
+    "name": "OLD",
+    "scid": "cd5e7f8e-2282-4655-bb0d-1da355601739",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00293",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663123,
+    "monitored": false,
+    "name": "NTP6.GEANT.NET",
+    "scid": "cd6579a0-e820-4bd5-9da4-4e6e5f46dfa8",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00262",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "LAT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae15.2009"
+      },
+      {
+        "hostname": "rt0.rig.lv.geant.net",
+        "interface": "pwe-119052"
+      },
+      {
+        "hostname": "rt0.rig.lv.geant.net",
+        "interface": "lag-20:cp-2009"
+      }
+    ],
+    "imsid": 745942,
+    "monitored": true,
+    "name": "LOFAR-00663",
+    "scid": "cd6722d5-af7f-4d81-a27b-1f111e56c5b2",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00663",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BREN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.245/30",
+          "2001:798:99:1::59/126"
+        ],
+        "hostname": "rt0.sof.bg.geant.net",
+        "interface": "lag-20.100"
+      }
+    ],
+    "imsid": 744953,
+    "monitored": true,
+    "name": "BREN-AP1",
+    "scid": "cdb20727-90f0-4c2c-8e6d-6fac841703fd",
+    "service_type": "GEANT IP",
+    "sid": "GS-00438",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SURF"
+    ],
+    "endpoints": [],
+    "imsid": 705896,
+    "monitored": true,
+    "name": "AMS-DUB-KNMI-ME-1-SURF-HEANET-20045",
+    "scid": "ce04f84a-3086-4324-aa27-754ce07a466d",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00631",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663169,
+    "monitored": false,
+    "name": "NTP4.GEANT.NET",
+    "scid": "ce0e8bb0-f6ae-49cd-9c83-ab4eb7e63b05",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00260",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 660455,
+    "monitored": false,
+    "name": "LON2-GROOVE-1",
+    "scid": "ce1e6140-2e95-45ed-84c8-661ca46a6f57",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00238",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.40"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-240571"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20:4070"
+      }
+    ],
+    "imsid": 744256,
+    "monitored": true,
+    "name": "MSEFEDPOL-02524",
+    "scid": "ce3c927c-fb1e-47ed-9755-4c2e5cfd0e26",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02524",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "UBUNTUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/2/5.1500"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae15.1500"
+      }
+    ],
+    "imsid": 734613,
+    "monitored": true,
+    "name": "AMS-LON-JIVE-NETHERLIGHT-UBUNTUNET-12008",
+    "scid": "ce8f3f15-dd6b-49f7-9815-d0f830e1704b",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00645",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mil2.it.geant.net",
+        "interface": "xe-1/1/3"
+      },
+      {
+        "hostname": "mx1.mil2.it.geant.net",
+        "interface": "xe-1/1/3.1032"
+      }
+    ],
+    "imsid": 661942,
+    "monitored": true,
+    "name": "SDN-BOD-BR53-OF-2-HOST-H-ETH1",
+    "scid": "ce90dc7d-4712-4e2c-a168-4451290886e8",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00756",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/1/7"
+      }
+    ],
+    "imsid": 733208,
+    "monitored": true,
+    "name": "LONDON 2-LONDON 2-10GBE-027(GEANT)",
+    "scid": "cecf64bf-c5b5-4ad0-8f42-e213434f1c8e",
+    "service_type": "ETHERNET",
+    "sid": "GA-01327",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 673548,
+    "monitored": true,
+    "name": "AMSTERDAM-AMSTERDAM-10GBE-035(GEANT)",
+    "scid": "ced96333-c17d-4062-822d-3590d753756d",
+    "service_type": "ETHERNET",
+    "sid": "GA-01752",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "xe-2/2/3"
+      }
+    ],
+    "imsid": 720005,
+    "monitored": true,
+    "name": "GENEVA-GENEVA-10GBE-012(GEANT)",
+    "scid": "cee65467-4691-475c-a62a-7271db8ff9a1",
+    "service_type": "ETHERNET",
+    "sid": "GA-02189",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CESNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.pra.cz.geant.net",
+        "interface": "ae11.500"
+      },
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae1.500"
+      }
+    ],
+    "imsid": 728645,
+    "monitored": true,
+    "name": "PRA-VIE-CESNET-AP1-CESNET-AP2",
+    "scid": "ceecb999-0473-4a5a-bbbb-d31d27c87e5d",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02344",
+    "speed": 225485783040,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "REDIRIS"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.42"
+      },
+      {
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae16.691"
+      }
+    ],
+    "imsid": 740766,
+    "monitored": true,
+    "name": "REDIRIS-ICN2-EXPRESSROUTE-VLAN691",
+    "scid": "cf450d34-80f9-4d5e-96c2-423f0a3bde05",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02559",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.42/31",
+          "2001:798:cc:1::11d/126"
+        ],
+        "hostname": "rt1.bra.sk.geant.net",
+        "interface": "ae1.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.43/31",
+          "2001:798:cc:1::11e/126"
+        ],
+        "hostname": "rt2.bra.sk.geant.net",
+        "interface": "ae1.0"
+      }
+    ],
+    "imsid": 731789,
+    "monitored": false,
+    "name": "BRA-BRA-IPTRUNK",
+    "scid": "cf62a005-e362-46b9-a3a6-325028dac384",
+    "service_type": "IP TRUNK",
+    "sid": "GS-01205",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "172.18.33.253/24"
+        ],
+        "hostname": "rt1.bra.sk.geant.net",
+        "interface": "ae3.103"
+      }
+    ],
+    "imsid": 731614,
+    "monitored": false,
+    "name": "DCN-MANAGEMENT-BRA1-SK",
+    "scid": "cf86b03f-5196-4733-a09d-0224957ba9f7",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00114",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.112.3/29",
+          "2001:799:cb2::3/64"
+        ],
+        "hostname": "srx2.ch.office.geant.net",
+        "interface": "ge-0/0/3.501"
+      }
+    ],
+    "imsid": 663110,
+    "monitored": false,
+    "name": "CAM-CH-WAN-GATEWAY-2",
+    "scid": "cf95c776-7c22-45e0-ad5c-004758163354",
+    "service_type": "CORPORATE",
+    "sid": "GS-01195",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.pra.cz.geant.net",
+        "interface": "xe-3/0/8"
+      }
+    ],
+    "imsid": 725639,
+    "monitored": true,
+    "name": "PRAGUE 2-PRAGUE 2-10GBE-007(GEANT)",
+    "scid": "cfab41d6-3fa5-4373-97b0-d0309b75787c",
+    "service_type": "ETHERNET",
+    "sid": "GA-02285",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "DUB-LON-IPTRUNK",
+    "scid": "cfe49030-8d18-4bf4-af83-fadf71ad76f1",
+    "service_type": null,
+    "sid": "DS-25851",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.205/30",
+          "2001:798:22:10aa::9/126"
+        ],
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-21.100"
+      }
+    ],
+    "imsid": 747589,
+    "monitored": true,
+    "name": "NORDUNET-AP2",
+    "scid": "cff07a10-55b1-487f-87a6-4d1078926e5d",
+    "service_type": "GEANT IP",
+    "sid": "GS-00493",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "ae31.0"
+      },
+      {
+        "addresses": [
+          "62.40.99.128/31",
+          "2001:798:4::1/64"
+        ],
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "ae16.100"
+      }
+    ],
+    "imsid": 661315,
+    "monitored": false,
+    "name": "GEANT-SLOUGH-ACCESS",
+    "scid": "cff4798f-d9e2-4fc4-9da3-70632c6311ab",
+    "service_type": "CORPORATE",
+    "sid": "GS-00469",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NISN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae12.519"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae26.519"
+      }
+    ],
+    "imsid": 709305,
+    "monitored": true,
+    "name": "LON-PAR-CNES-NISN-RENATER",
+    "scid": "d002e64a-83fc-4ec4-bc46-bda9f0797d80",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00736",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SWITCH"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae14"
+      }
+    ],
+    "imsid": 734179,
+    "monitored": true,
+    "name": "NL-SWITCH-AMS-IX-LAG",
+    "scid": "d0036e59-f4c0-4d43-b044-4b7b42493af9",
+    "service_type": "ETHERNET",
+    "sid": "GA-01912",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.lon.uk.geant.net",
+        "interface": "lag-4"
+      }
+    ],
+    "imsid": 738597,
+    "monitored": true,
+    "name": "AMS-LON-1.6T-LAG",
+    "scid": "d025b23f-9550-4555-958a-47a5dcef3c39",
+    "service_type": "ETHERNET",
+    "sid": "GA-02268",
+    "speed": 1717986918400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.fra.de.geant.net",
+        "interface": "ae0.0"
+      },
+      {
+        "addresses": [
+          "62.40.123.58/29",
+          "2001:798:bb:4::2/64"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "irb.3003"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae30.3003"
+      }
+    ],
+    "imsid": 733021,
+    "monitored": false,
+    "name": "PS-THROUGHPUT-NETWORK-FRA-DE",
+    "scid": "d0292373-2dd5-4039-be72-ff51169cb943",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00299",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.98/31",
+          "2001:798:cc:1::7d/126"
+        ],
+        "hostname": "rt2.chi.md.geant.net",
+        "interface": "ae3.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.99/31",
+          "2001:798:cc:1::7e/126"
+        ],
+        "hostname": "rt2.kie.ua.geant.net",
+        "interface": "ae3.0"
+      }
+    ],
+    "imsid": 713101,
+    "monitored": true,
+    "name": "CHI-KIE-IPTRUNK",
+    "scid": "d02a13a6-b710-46ef-9ee4-250e09f1a37f",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00029",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.zag.hr.geant.net",
+        "interface": "lag-1"
+      }
+    ],
+    "imsid": 747866,
+    "monitored": true,
+    "name": "SOF-ZAG-LAG",
+    "scid": "d04c73f8-db92-4732-ad93-c650e164f0f8",
+    "service_type": "ETHERNET",
+    "sid": "GA-02369",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GRENA"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "xe-4/2/3.0"
+      },
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae20.210"
+      }
+    ],
+    "imsid": 719668,
+    "monitored": true,
+    "name": "VIE-VIE-EAP-GRENA-COGENT-22035",
+    "scid": "d04dbc76-f3cd-48a7-83ca-314b9aa5a1f7",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00695",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662390,
+    "monitored": true,
+    "name": "FRANKFURT-FRANKFURT-10GBE-089(GEANT)",
+    "scid": "d059e580-6855-4757-9126-d823505a8535",
+    "service_type": "ETHERNET",
+    "sid": "GA-01604",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GARR"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.100.16/31",
+          "2001:798::1d/126"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae12.667"
+      }
+    ],
+    "imsid": 663166,
+    "monitored": false,
+    "name": "GARR-AP2-CLS",
+    "scid": "d05d7e38-418c-49e8-88bf-02b85c08d888",
+    "service_type": "GEANT CLOUD PEERING",
+    "sid": "GS-00607",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708105,
+    "monitored": false,
+    "name": "PS-PRA-CZ-BWCTL",
+    "scid": "d07ec0be-f2bc-466f-83cc-2dfa5eb2a8cd",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00347",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661541,
+    "monitored": false,
+    "name": "TAAS-CONTROL-LON-UK-VLAN260",
+    "scid": "d08130ed-c29b-4f91-97c0-4739feaae93d",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00373",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "VERIZON"
+    ],
+    "endpoints": [],
+    "imsid": 731606,
+    "monitored": true,
+    "name": "FRANKFURT-VERIZON-1-LAG",
+    "scid": "d094ee7a-bab5-4d19-8724-cfd69c1f5e6b",
+    "service_type": "ETHERNET",
+    "sid": "GA-01951",
+    "speed": 32212254720,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/2/3"
+      }
+    ],
+    "imsid": 721148,
+    "monitored": true,
+    "name": "PARIS 007B-PARIS 007B-10GBE-005(GEANT)",
+    "scid": "d0ad0d4f-2f3b-4733-934d-476639ed5cea",
+    "service_type": "ETHERNET",
+    "sid": "GA-02191",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ACONET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.100.40/31",
+          "2001:798::49/126"
+        ],
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae15.667"
+      }
+    ],
+    "imsid": 661215,
+    "monitored": true,
+    "name": "ACONET-AP-CLS",
+    "scid": "d0effc91-ba8a-49a8-b00e-70b632a9ff10",
+    "service_type": "GEANT CLOUD PEERING",
+    "sid": "GS-00595",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "TS1.BRA.SK.GEANT.NET(OPENGEAR)",
+        "port": "NET1"
+      }
+    ],
+    "imsid": 677546,
+    "monitored": false,
+    "name": "BRA OOB LINK",
+    "scid": "d0f3031c-b9ad-465c-8384-83ab06874698",
+    "service_type": "OOB IP LINK",
+    "sid": "GS-00392",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "AT-AWS-CLS|ASN16509",
+    "scid": "d0fa942e-d9f8-41a9-b869-aaa386887acf",
+    "service_type": null,
+    "sid": "GS-00597",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.BIL.ES",
+        "port": "AE1"
+      }
+    ],
+    "imsid": 709429,
+    "monitored": true,
+    "name": "LAG-SW1.BIL.ES_AE1",
+    "scid": "d103e966-f663-4387-ba51-5990632039b2",
+    "service_type": "ETHERNET",
+    "sid": "GA-02056",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 745923,
+    "monitored": true,
+    "name": "KAU-RIG-IP1",
+    "scid": "d12e1360-cd9f-4e7b-a43f-23c4ce689cf6",
+    "service_type": "ETHERNET",
+    "sid": "GA-D00011    ---TEMP",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "TIFR LHCONE GEN L3VPN",
+    "scid": "d135cc65-c9a5-419f-83ab-ea629dfcd609",
+    "service_type": null,
+    "sid": "DS-30073",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 734321,
+    "monitored": true,
+    "name": "THE-THE-LAG",
+    "scid": "d13c60d8-c415-4ea8-bddc-ab80a4abbc3a",
+    "service_type": "ETHERNET",
+    "sid": "GA-02428",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 715011,
+    "monitored": true,
+    "name": "LONDON 2-LONDON 2-10GBE-001(GEANT)",
+    "scid": "d1ee1aaa-333d-4410-84b0-4188cd7af48f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01312",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.69/30",
+          "2001:798:18:10aa::1/126"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae12.160"
+      }
+    ],
+    "imsid": 661272,
+    "monitored": true,
+    "name": "RENATER-AP1",
+    "scid": "d1ff1057-25d7-4793-bbe4-85df185237ce",
+    "service_type": "GEANT IP",
+    "sid": "GS-00505",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/2/2"
+      }
+    ],
+    "imsid": 678559,
+    "monitored": true,
+    "name": "LONDON-LONDON-10GBE-026(GEANT)",
+    "scid": "d2017c5e-19b5-4de9-85db-0eba31a02c3f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01658",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ae11.2708"
+      },
+      {
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-21:2103"
+      }
+    ],
+    "imsid": 747540,
+    "monitored": false,
+    "name": "HAM-POZ-02494",
+    "scid": "d22515e7-bd25-43b0-8b03-dc2b6460b8b3",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02494",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "HARNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.36/31",
+          "2001:798:99:1::a1/126"
+        ],
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae12.3242"
+      }
+    ],
+    "imsid": 742536,
+    "monitored": true,
+    "name": "FR-HARNET",
+    "scid": "d2546c58-d676-406d-9923-e3867bbe02d3",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-02538",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "DFN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-20"
+      }
+    ],
+    "imsid": 745566,
+    "monitored": true,
+    "name": "DFN-AP2-LAG",
+    "scid": "d263437d-e8a7-42e7-9a0b-e0f8edf38a5b",
+    "service_type": "ETHERNET",
+    "sid": "GA-01894",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 707587,
+    "monitored": false,
+    "name": "DCN-MANAGEMENT-MIL2-IT",
+    "scid": "d286bf62-74a3-4c1c-941d-4003bf2ac06d",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00123",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.par.fr.geant.net",
+        "interface": "ae0.0"
+      },
+      {
+        "addresses": [
+          "62.40.108.65/27",
+          "2001:798:ee:19::1/64"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae30.2001"
+      }
+    ],
+    "imsid": 712148,
+    "monitored": false,
+    "name": "ESXI-MANAGEMENT-PAR",
+    "scid": "d2990a5e-2fb9-4cf0-9bdc-eb01c39f025b",
+    "service_type": "POP LAN LINK",
+    "sid": "GS-00075",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ASREN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.169/30",
+          "2001:798:99:1::3d/126"
+        ],
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "ae17.500"
+      }
+    ],
+    "imsid": 661959,
+    "monitored": true,
+    "name": "UK-ASREN",
+    "scid": "d29fbc96-5569-4ae0-9629-6068d62944e3",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00911",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658872,
+    "monitored": true,
+    "name": "MADRID-MADRID-1GBE-005(ETH)",
+    "scid": "d2a5687f-3f32-4f77-9682-4cfa56c1b5cf",
+    "service_type": "ETHERNET",
+    "sid": "GA-01351",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT-IT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.par.fr.geant.net",
+        "interface": "xe-0/0/42"
+      },
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-0/0/42"
+      },
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/0/4.0"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/1/7.0"
+      }
+    ],
+    "imsid": 729412,
+    "monitored": true,
+    "name": "PAR-LON2-SUPERPOP-QFX-GEANT",
+    "scid": "d2ef0373-296d-4b75-95ba-412c0846a30a",
+    "service_type": "GEANT - GBS",
+    "sid": "GS-00080",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.109.1/30"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "gr-3/0/0.11"
+      }
+    ],
+    "imsid": 732668,
+    "monitored": false,
+    "name": "GRE-MULTICAST-TUNNEL-NMO",
+    "scid": "d2f10c06-1302-481f-9195-e005b76702d7",
+    "service_type": "EUMETSAT GRE",
+    "sid": "GS-01085",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.13/31",
+          "2001:798:cc:1::1e/126"
+        ],
+        "hostname": "rt0.dub.ie.geant.net",
+        "interface": "lag-3.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.12/31",
+          "2001:798:cc:1::1d/126"
+        ],
+        "hostname": "rt0.cor.ie.geant.net",
+        "interface": "lag-4.0"
+      }
+    ],
+    "imsid": 747279,
+    "monitored": true,
+    "name": "COR-DUB-IPTRUNK",
+    "scid": "d30fd7e7-9a03-4323-9fd0-14ea39d3b7e1",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02383",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "equipment": "AMS01-GRV7",
+        "port": "1/1/8"
+      },
+      {
+        "equipment": "DIGITAL REALTY A-END",
+        "port": "NL261658-2"
+      },
+      {
+        "equipment": "DIGITAL REALTY Z-END",
+        "port": "NL261658-2"
+      }
+    ],
+    "imsid": 739848,
+    "monitored": true,
+    "name": "AMS-GEN1-ESNET-24015-3-400G",
+    "scid": "d32ecb31-da44-4b00-b5ae-40eb62c9dae5",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-02454",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ASREN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.189/30",
+          "2001:798:1::e1/126"
+        ],
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "ae17.333"
+      }
+    ],
+    "imsid": 661220,
+    "monitored": true,
+    "name": "UK-ASREN-IAS",
+    "scid": "d333c55c-2e16-49a5-85a0-9f4f0502a0e4",
+    "service_type": "GWS - INDIRECT",
+    "sid": "GS-00547",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 679310,
+    "monitored": false,
+    "name": "FRA-TNMS",
+    "scid": "d336f7e1-8138-4d04-816d-c5ef8671e1aa",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00178",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708293,
+    "monitored": true,
+    "name": "BUDAPEST-BUDAPEST-ETHS-001(GEANT)",
+    "scid": "d34a5ae0-ed01-4d6a-a7b9-476e2c45ba0f",
+    "service_type": "ETHERNET",
+    "sid": "GS-00292",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 659277,
+    "monitored": true,
+    "name": "BRATISLAVA-BRATISLAVA-1GBE-014(ETH)",
+    "scid": "d353b1b0-cfe7-4c57-ac43-55423ac766f8",
+    "service_type": "ETHERNET",
+    "sid": "GA-01305",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [],
+    "imsid": 707029,
+    "monitored": true,
+    "name": "AMS-BRU-IMINDS-IMINDS-NETHERLIGHT-15012",
+    "scid": "d36f9d99-ac69-4f3a-9fe1-3b62818996ce",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00629",
+    "speed": 215822106624,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 739969,
+    "monitored": true,
+    "name": "HAM-HAM-LAG-300G",
+    "scid": "d3786ffb-02f3-4042-af36-4e64257ef23f",
+    "service_type": "ETHERNET",
+    "sid": "GA-02541",
+    "speed": 322122547200,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661678,
+    "monitored": false,
+    "name": "OWAMP-PRA-CZ",
+    "scid": "d385dc29-f0a5-45e4-bd4f-b5f183d1422c",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00269",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "172.18.5.1/24"
+        ],
+        "hostname": "mx2.lis.pt.geant.net",
+        "interface": "ae2.103"
+      }
+    ],
+    "imsid": 679548,
+    "monitored": false,
+    "name": "DCN-MANAGEMENT-LIS-PT",
+    "scid": "d39aa021-dfe1-4137-9fe1-4eb7787e0571",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00118",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "2001:798:111:1::41/126"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae33.4005"
+      }
+    ],
+    "imsid": 740765,
+    "monitored": true,
+    "name": "NL-NORDUNET-LHCONE-IPV6",
+    "scid": "d3bf78da-77c6-4aeb-a54c-cd2a1650186c",
+    "service_type": "L3-VPN",
+    "sid": "GS-00839",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "WACREN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5.2033"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae22.2033"
+      }
+    ],
+    "imsid": 705942,
+    "monitored": true,
+    "name": "LON-LON-GEANTOPEN-NORDUNET-WACREN-20041",
+    "scid": "d3c58db5-4d61-421c-913c-8780c52ebc9f",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00979",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.par.fr.geant.net",
+        "interface": "ae2"
+      }
+    ],
+    "imsid": 658668,
+    "monitored": true,
+    "name": "LAG-QFX.PAR.FR_AE2",
+    "scid": "d3d20f59-38e0-4d42-8d88-ed87e9e6dabd",
+    "service_type": "ETHERNET",
+    "sid": "GA-01720",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [],
+    "imsid": 719291,
+    "monitored": false,
+    "name": "BELNET-SMALSDC-EXPRESSROUTE-VLAN4083",
+    "scid": "d3d2b37b-30ca-4de6-a587-bc7dc1a8bef0",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02150",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662402,
+    "monitored": true,
+    "name": "FRANKFURT-FRANKFURT-10GBE-095(GEANT)",
+    "scid": "d3d32961-c817-418f-8070-02d2f3d28994",
+    "service_type": "ETHERNET",
+    "sid": "GA-01650",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CSTNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.186/31",
+          "2001:798:99:1::131/126"
+        ],
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae12.1006"
+      }
+    ],
+    "imsid": 729006,
+    "monitored": true,
+    "name": "FR-IC1-CSTNET-QUINARY",
+    "scid": "d3ee13ff-c8f8-4dc4-85ef-b40070067ba4",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-02362",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GOOGLE"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.mil2.it.geant.net",
+        "interface": "ae12"
+      }
+    ],
+    "imsid": 659344,
+    "monitored": true,
+    "name": "GOOGLE-15169-IT-LAG",
+    "scid": "d40499de-3611-4368-b3db-1a785aaf7bf9",
+    "service_type": "ETHERNET",
+    "sid": "GA-01771",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 679555,
+    "monitored": true,
+    "name": "BUD-LJU-LAG",
+    "scid": "d43c67ce-031b-411e-a9ae-aa5d74ee0248",
+    "service_type": "ETHERNET",
+    "sid": "GA-01908",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "REDIRIS"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PF1-RARE.AMS.NL.GEANT.NET",
+        "port": "XE-2"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "xe-9/0/3.936"
+      },
+      {
+        "hostname": "rt1.bil.es.geant.net",
+        "interface": "ae15.936"
+      }
+    ],
+    "imsid": 736075,
+    "monitored": false,
+    "name": "AMS-BIL-REDIRIS-RARE",
+    "scid": "d45885b2-27b2-4366-afcf-5527c66be7ec",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02287",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663025,
+    "monitored": false,
+    "name": "KVMOIP-BUD-HU",
+    "scid": "d46b021f-8941-4302-b86a-dfd3d6a7ff54",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00219",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 728632,
+    "monitored": true,
+    "name": "KAU-POZ-IP1",
+    "scid": "d4c50dc7-d0c4-4aa9-9f33-d80785078bcd",
+    "service_type": "ETHERNET",
+    "sid": "GA-D0009",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 732509,
+    "monitored": false,
+    "name": "A10-DDOS-SCRUBBING-FRA",
+    "scid": "d4e1b55b-e683-4dc5-887c-fd9c34a7e2c9",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00086",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708255,
+    "monitored": false,
+    "name": "PS-LIS-PT-MANAGEMENT",
+    "scid": "d4f52794-9c67-4f4b-ab20-fdbdd470751c",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00317",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CERN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.157/30",
+          "2001:798:99:1::39/126"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae17.200"
+      }
+    ],
+    "imsid": 662952,
+    "monitored": true,
+    "name": "CERN-AP1",
+    "scid": "d4fe7850-41a9-4f6a-a53b-7724bdcd82a2",
+    "service_type": "GEANT IP",
+    "sid": "GS-00442",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RARE"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PF1-RARE.FRA.DE.GEANT.NET",
+        "port": "XE-2"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-11/0/0.103"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-0/0/2.103"
+      }
+    ],
+    "imsid": 716207,
+    "monitored": false,
+    "name": "FRA-PAR-RARE-RARE-21101",
+    "scid": "d50ec833-4324-4b69-a3c8-96e68c5e6541",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00705",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "et-11/3/0"
+      }
+    ],
+    "imsid": 658732,
+    "monitored": true,
+    "name": "PARIS-DTN-100G-1",
+    "scid": "d541a43c-6cbf-4e35-b9d2-fcb69ef1fb2e",
+    "service_type": "ETHERNET",
+    "sid": "GA-01379",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CNGI-6IX"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.101/30",
+          "2001:0798:0028:10aa::25/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-1/0/0.200"
+      }
+    ],
+    "imsid": 661591,
+    "monitored": true,
+    "name": "UK-CNGI-6IX-CERNET",
+    "scid": "d5ad5c25-b1fb-4ccf-8ebd-c7960705334e",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00925",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GRNET"
+    ],
+    "endpoints": [],
+    "imsid": 712387,
+    "monitored": true,
+    "name": "MD-VPN-VRR-LJUBLJANA-GRNET-GR",
+    "scid": "d5b1f3d7-1921-44cc-8bf7-6cbaab0cd6da",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01023",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "ams-ams_DREAMER_GARR-GTS_15033",
+    "scid": "d5b63263-3072-4fb8-81e5-8bb117806ef0",
+    "service_type": null,
+    "sid": "DS-29543",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CANARIE"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae17.2128"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae15.2128"
+      }
+    ],
+    "imsid": 679228,
+    "monitored": true,
+    "name": "PAR-PAR-CANARIE-SURF-20058",
+    "scid": "d5c68aa6-3af9-4eb5-857f-40580d9ab83c",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00749",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SCION"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-0/1/6"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-0/1/6.2702"
+      },
+      {
+        "hostname": "rt0.tar.ee.geant.net",
+        "interface": "pwe-123051"
+      },
+      {
+        "hostname": "rt0.tar.ee.geant.net",
+        "interface": "lag-20:2702"
+      }
+    ],
+    "imsid": 746442,
+    "monitored": false,
+    "name": "FRA-TAR-SCION-EENET",
+    "scid": "d5cc49df-3ef8-47fa-a409-3470a5a8171d",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02357",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.dub.ie.geant.net",
+        "interface": "pwe-117003"
+      },
+      {
+        "hostname": "rt0.dub.ie.geant.net",
+        "interface": "lag-20:2281"
+      }
+    ],
+    "imsid": 747267,
+    "monitored": true,
+    "name": "GEANT_EPIPE_117003",
+    "scid": "d6652088-b6e7-4635-9648-58dc87109db7",
+    "service_type": "ETHERNET",
+    "sid": "GS-00632",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SINET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae20.3020"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae2.3020"
+      }
+    ],
+    "imsid": 740717,
+    "monitored": false,
+    "name": "AMS-LON-SINET-SD-WAN-SINET-SINET-17084",
+    "scid": "d66ba55e-f3d1-4878-83cf-f06173877e5d",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00648",
+    "speed": 236223201280,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662959,
+    "monitored": false,
+    "name": "RARE-P4-B1-FRA",
+    "scid": "d6728331-5037-4948-8808-f291ef030da8",
+    "service_type": "L2SERVICES",
+    "sid": "GS-00771",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 677344,
+    "monitored": true,
+    "name": "LISBON-LISBON-1GBE-005(ETH)",
+    "scid": "d69fd3fa-fca8-4345-b459-7dbf009c4ae0",
+    "service_type": "ETHERNET",
+    "sid": "GA-01655",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 743328,
+    "monitored": true,
+    "name": "TAR-TAR-MGMT-LAG",
+    "scid": "d6a2a430-5fe2-4651-b6b6-06093e5b6694",
+    "service_type": "ETHERNET",
+    "sid": "GA-50004",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.15"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-240593"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20:4088"
+      }
+    ],
+    "imsid": 744268,
+    "monitored": true,
+    "name": "MSENCCN-01136",
+    "scid": "d6bc6414-d7c0-4730-9bda-2ff5459b326d",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01136",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "REDIRIS_AP1_Confine",
+    "scid": "d6c28944-3098-4bdd-b772-005f1a63770f",
+    "service_type": null,
+    "sid": "DS-27555",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.127.178/31"
+        ],
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae16.87"
+      }
+    ],
+    "imsid": 715042,
+    "monitored": true,
+    "name": "EUMET-BUCC-MAD-17042",
+    "scid": "d6d4edc5-a3e1-4b98-a801-d11a739aeace",
+    "service_type": "GEANT IP",
+    "sid": "GS-00457",
+    "speed": 430570471424,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [],
+    "imsid": 709787,
+    "monitored": false,
+    "name": "AMS-LON1-EEX-ESNET-2106",
+    "scid": "d6d63a2c-fe3a-4018-8cfe-710e62d3d42e",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-00782",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "equipment": "LON01-GRV3",
+        "port": "1/3/8"
+      },
+      {
+        "equipment": "AMS01-GRV4",
+        "port": "1/3/8"
+      },
+      {
+        "equipment": "DIGITAL REALTY A-END",
+        "port": "NL172777-2"
+      },
+      {
+        "equipment": "DIGITAL REALTY Z-END",
+        "port": "NL172777-2"
+      }
+    ],
+    "imsid": 730066,
+    "monitored": true,
+    "name": "AMS-LON1-EEX-ESNET-2373-1-400G",
+    "scid": "d6ddce0a-e2fb-4f69-a7d4-c7d23f809bc0",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-02334",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ge-0/3/3"
+      }
+    ],
+    "imsid": 718799,
+    "monitored": true,
+    "name": "LONDON-LONDON-1GBE-002(GEANT)",
+    "scid": "d6e94ba1-7a30-491e-aa2d-c9ee153f585a",
+    "service_type": "ETHERNET",
+    "sid": "GA-01468",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "REDIRIS"
+    ],
+    "endpoints": [],
+    "imsid": 709773,
+    "monitored": false,
+    "name": "REDIRIS EUMETCAST AP2",
+    "scid": "d70ebbfd-350b-4bc7-b2ce-43c327ddc276",
+    "service_type": "EUMETSAT TERRESTRIAL",
+    "sid": "GS-01117",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.bra.sk.geant.net",
+        "interface": "ae1"
+      }
+    ],
+    "imsid": 729433,
+    "monitored": true,
+    "name": "BRA-BRA-LAG",
+    "scid": "d7102178-55d0-465b-b36a-2a2af6f9edd6",
+    "service_type": "ETHERNET",
+    "sid": "GA-02146",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "193.188.137.37/24",
+          "2001:7f8:35::2:1320:1/64"
+        ],
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae18.10"
+      }
+    ],
+    "imsid": 663235,
+    "monitored": false,
+    "name": "IX-PEERINGS-IN-BIX-BUD",
+    "scid": "d7135296-211f-47f8-a2a7-6674b35abf6d",
+    "service_type": "IP PEERING - NON R&E (PUBLIC)",
+    "sid": "GS-00956",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 712565,
+    "monitored": true,
+    "name": "PRA-SW1-LAG",
+    "scid": "d713c4d2-9939-4712-bac2-d48e36907826",
+    "service_type": "ETHERNET",
+    "sid": "GA-02068",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CESNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.pra.cz.geant.net",
+        "interface": "xe-3/0/1"
+      },
+      {
+        "hostname": "rt1.pra.cz.geant.net",
+        "interface": "xe-3/0/1.0"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "xe-0/1/1"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "xe-0/1/1.0"
+      }
+    ],
+    "imsid": 720236,
+    "monitored": true,
+    "name": "AMS-PRA-IX-CESNET-AMS-18088",
+    "scid": "d71d0993-39c7-44af-b8fc-a8765cf66da3",
+    "service_type": "GEANT - GBS",
+    "sid": "GS-00787",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "REDIRIS"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.bil.es.geant.net",
+        "interface": "ae15"
+      }
+    ],
+    "imsid": 718161,
+    "monitored": true,
+    "name": "REDIRIS-AP2-LAG",
+    "scid": "d72de364-befd-4233-b51a-a7d8259e8aa3",
+    "service_type": "ETHERNET",
+    "sid": "GA-01780",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "xe-3/0/2"
+      }
+    ],
+    "imsid": 662302,
+    "monitored": true,
+    "name": "BUDAPEST-BUDAPEST-10GBE-010(GEANT)",
+    "scid": "d745479b-8dd4-404d-9e83-6327bce78e26",
+    "service_type": "ETHERNET",
+    "sid": "GA-02128",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ARNES"
+    ],
+    "endpoints": [],
+    "imsid": 661227,
+    "monitored": false,
+    "name": "ARNES-AP3",
+    "scid": "d74cc08f-781f-4bc5-9019-f17b780af9e5",
+    "service_type": "GEANT IP",
+    "sid": "GS-00428",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708241,
+    "monitored": false,
+    "name": "NETRONOME-MANAGEMENT-LON2-UK",
+    "scid": "d77b7b62-14b0-40a9-9a17-576aa4abcdeb",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00191",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 734464,
+    "monitored": true,
+    "name": "AMSTERDAM-AMSTERDAM-1GBE-004(GEANT)",
+    "scid": "d7acffe0-1c6a-4b06-b178-ba1a19cf14f2",
+    "service_type": "ETHERNET",
+    "sid": "GA-01587",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 727145,
+    "monitored": true,
+    "name": "BRU-BRU-LAG-100G",
+    "scid": "d7ebebba-14b8-41ee-986e-5c8c3658deb8",
+    "service_type": "ETHERNET",
+    "sid": "GA-02276",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.rig.lv.geant.net",
+        "interface": "lag-3"
+      }
+    ],
+    "imsid": 746515,
+    "monitored": true,
+    "name": "KAU-RIG-LAG",
+    "scid": "d801120f-af92-4510-b98b-206795094433",
+    "service_type": "ETHERNET",
+    "sid": "GA-02031",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "mx2.lis.pt - Traffic - ae0 - LAG INFRASTRUCTURE BACKBONE | LIS-MAD | 40G",
+    "scid": "d81b6e95-d334-46b5-8fa1-c77545a10c0a",
+    "service_type": null,
+    "sid": "GA-01790",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BASNET"
+    ],
+    "endpoints": [],
+    "imsid": 661373,
+    "monitored": false,
+    "name": "BASNET-AP1-IAS",
+    "scid": "d82faf31-3fcf-4256-950a-b55b7a98ddee",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00556",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "srx2.am.office.geant.net",
+        "interface": "ge-0/0/2"
+      }
+    ],
+    "imsid": 662522,
+    "monitored": true,
+    "name": "PHY INFRASTRUCTURE | SURFNET SECONDARY",
+    "scid": "d8710f34-b964-4d97-8abd-67457602f202",
+    "service_type": "ETHERNET",
+    "sid": "GA-01245",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 739969,
+    "monitored": true,
+    "name": "HAM-HAM-LAG-300G",
+    "scid": "d8896d70-042a-4996-a9f6-21ad2ce9bcec",
+    "service_type": "ETHERNET",
+    "sid": "GA-02540",
+    "speed": 322122547200,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BREN"
+    ],
+    "endpoints": [],
+    "imsid": 731985,
+    "monitored": false,
+    "name": "BREN-BGP-LU-COC-AP2",
+    "scid": "d8d84d98-7f1e-46a8-b218-fca5a8daacb5",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-00999",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SURF"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.68/31",
+          "2001:798:111:1::81/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae11.666"
+      }
+    ],
+    "imsid": 732253,
+    "monitored": true,
+    "name": "SURF-AP2-LHCONE",
+    "scid": "d8d90097-d8c8-4d6c-9934-a949bc8b0a0b",
+    "service_type": "L3-VPN",
+    "sid": "GS-02413",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 707413,
+    "monitored": true,
+    "name": "RIG-RIG-LAG",
+    "scid": "d8dd77ee-f95c-4aec-b15b-a2ec8c1e2577",
+    "service_type": "ETHERNET",
+    "sid": "GA-02049",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.KIE.UA",
+        "port": "AE2"
+      }
+    ],
+    "imsid": 713306,
+    "monitored": true,
+    "name": "LAG-RT1.KIE.UA_AE2-SW1.KIE.UA_AE2",
+    "scid": "d8ede461-aece-4d7c-a7af-7a6d91197022",
+    "service_type": "ETHERNET",
+    "sid": "GA-02057",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ACONET"
+    ],
+    "endpoints": [],
+    "imsid": 709733,
+    "monitored": true,
+    "name": "ACONET-AP1-EUMETCAST",
+    "scid": "d8fa88ee-8718-465b-94ec-2becd5836a01",
+    "service_type": "EUMETSAT TERRESTRIAL",
+    "sid": "GS-01094",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "MX2.RIG.LV",
+        "port": "GE-0/2/1"
+      }
+    ],
+    "imsid": 679321,
+    "monitored": true,
+    "name": "RIGA-RIGA-1GBE-003(LAT)",
+    "scid": "d92851c4-ec00-4aa2-a2d8-7c3067ad4941",
+    "service_type": "ETHERNET",
+    "sid": "GA-01367",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "mx1.lis.pt - Traffic - ae0 - LAG INFRASTRUCTURE BACKBONE | LIS-LIS |",
+    "scid": "d94ec3ed-c521-41d9-ae76-3d1d6bcd05ff",
+    "service_type": null,
+    "sid": "GA-01766",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mil2.it.geant.net",
+        "interface": "xe-1/0/6"
+      },
+      {
+        "hostname": "mx1.mil2.it.geant.net",
+        "interface": "xe-1/0/6.1"
+      }
+    ],
+    "imsid": 678451,
+    "monitored": true,
+    "name": "SDX-L2-HOSTC-TO-BR51",
+    "scid": "d96c5890-9114-4a8d-9d5c-85fd8c16706a",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00762",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708316,
+    "monitored": false,
+    "name": "PS-PSMP-OWAMP-FRA-DE",
+    "scid": "d98306b9-3c51-495d-9cd5-9031cc4c1fa8",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00351",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [],
+    "imsid": 658976,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-1GBE-016(ETH)",
+    "scid": "d98e2541-ed43-4972-8803-5bd8de0a1fc1",
+    "service_type": "ETHERNET",
+    "sid": "GA-01514",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SWITCH"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-0/1/6.1306"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae12.1306"
+      }
+    ],
+    "imsid": 727332,
+    "monitored": false,
+    "name": "FRA-LON-SCION-SWITCH-KREONET",
+    "scid": "d9958028-de14-44ba-a5b9-845cd311d2bc",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02294",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658692,
+    "monitored": false,
+    "name": "730XD-1-VM-TRAFFIC-LAG-PAR",
+    "scid": "d9969e33-f1b8-4f22-b4b7-487894c76903",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01723",
+    "speed": 32212254720,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "Nordunet_ExpressRoute_Vlan4076",
+    "scid": "d9a2957e-9fcd-4457-aa6c-e7448f3552b6",
+    "service_type": null,
+    "sid": "DS-51562",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 660448,
+    "monitored": false,
+    "name": "JRA1-SDX-L2-PILOT-VLAN1001",
+    "scid": "d9a58172-8807-49c0-962d-d127d27a9190",
+    "service_type": "L3-VPN",
+    "sid": "GS-00937",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "VERIZON"
+    ],
+    "endpoints": [],
+    "imsid": 731612,
+    "monitored": false,
+    "name": "FRANKFURT-VERIZON-1-15133-DE-1",
+    "scid": "d9bf235d-af58-4989-afae-1c5731b2882e",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-00932",
+    "speed": 32212254720,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "mx1.fra.de - Traffic - |query_ifDescr| - |query_ifAlias|",
+    "scid": "da088685-36a1-476c-a5c0-d7e53173a129",
+    "service_type": null,
+    "sid": "GA-01971",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ARNES"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.113/30",
+          "2001:798:1b:10aa::d/126"
+        ],
+        "hostname": "rt0.lju.si.geant.net",
+        "interface": "lag-20.100"
+      }
+    ],
+    "imsid": 745714,
+    "monitored": true,
+    "name": "ARNES-AP1",
+    "scid": "da21a8e8-0b33-41f4-8986-5d480d46fc57",
+    "service_type": "GEANT IP",
+    "sid": "GS-00426",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ROEDUNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.89.241/30",
+          "2001:798:1::1ed/126"
+        ],
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae21.333"
+      }
+    ],
+    "imsid": 679570,
+    "monitored": true,
+    "name": "ROEDUNET-AP2-IAS",
+    "scid": "da55cc4d-fa1b-4fe7-a72d-70b0c0127074",
+    "service_type": "GWS - INDIRECT",
+    "sid": "GS-00545",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "EDUZONE"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.120/31",
+          "2001:798:99:1::1d/126"
+        ],
+        "hostname": "rt0.zag.hr.geant.net",
+        "interface": "lag-101.31"
+      }
+    ],
+    "imsid": 747941,
+    "monitored": true,
+    "name": "HR-EDUZONE",
+    "scid": "da6670a5-2f66-43a6-9145-44c41ce96423",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-00936",
+    "speed": 22548578304,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.108.161/28"
+        ],
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-1/2/2.14"
+      }
+    ],
+    "imsid": 661540,
+    "monitored": false,
+    "name": "DRACS-LON2-UK",
+    "scid": "da69aace-b82a-42c0-bc68-826a089a9497",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00141",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ORACLE"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "132.145.7.81/31",
+          "2603:c000:380::9/127"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae24.0"
+      }
+    ],
+    "imsid": 719260,
+    "monitored": true,
+    "name": "UK-ORACLE-31898",
+    "scid": "da89213d-6bcc-4ebe-874f-c3a15ebb761c",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-00624",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663010,
+    "monitored": false,
+    "name": "FRA-GROOVE-2-MANAGEMENT",
+    "scid": "dab2b6cf-c667-4f3f-ab93-e09f9a533ea5",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00175",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "17.1.72.125/31",
+          "2a01:b740:1:9718::91/127"
+        ],
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae45.0"
+      }
+    ],
+    "imsid": 730369,
+    "monitored": true,
+    "name": "FR-APPLE-IAS",
+    "scid": "dab9fa01-1bfd-4d5f-82e7-ed2111687afb",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-02397",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae4"
+      }
+    ],
+    "imsid": 739735,
+    "monitored": true,
+    "name": "GEN-MAR-LAG",
+    "scid": "dade9050-d57b-448f-8de0-3eca131d7581",
+    "service_type": "ETHERNET",
+    "sid": "GA-02207",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae7"
+      }
+    ],
+    "imsid": 730316,
+    "monitored": true,
+    "name": "BUC-BUD-LAG-(200G)",
+    "scid": "db0a61cb-1cca-43d3-93a8-2826192e701f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01906",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ARNES"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.lju.si.geant.net",
+        "interface": "lag-21"
+      }
+    ],
+    "imsid": 747472,
+    "monitored": true,
+    "name": "ARNES-LHCONE-LAG",
+    "scid": "db0bdb55-6fde-4935-866f-e139472eeeba",
+    "service_type": "ETHERNET",
+    "sid": "GA-02632",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5.240"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae28.240"
+      }
+    ],
+    "imsid": 718107,
+    "monitored": true,
+    "name": "LON-LON-GEANTOPEN-NORDUNET-TENET-18075",
+    "scid": "db2fb636-4805-497c-8345-9aee1533aa70",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00978",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "AMS-FRA OPENFLOW",
+    "scid": "db64fd14-4595-4fbc-a982-ed00f52511a6",
+    "service_type": null,
+    "sid": "DS-15987",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae12"
+      }
+    ],
+    "imsid": 659378,
+    "monitored": true,
+    "name": "RENATER-AP1-LAG",
+    "scid": "db6bdecb-2a64-400b-9624-1bf6e0d7a25d",
+    "service_type": "ETHERNET",
+    "sid": "GA-01816",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662227,
+    "monitored": true,
+    "name": "FRANKFURT-FRANKFURT-1GBE-015(ETH)",
+    "scid": "db73cb52-2ffa-4a4b-9a84-6c68302df3e4",
+    "service_type": "ETHERNET",
+    "sid": "GA-01623",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 733924,
+    "monitored": false,
+    "name": "NL-ORANGE-2281",
+    "scid": "db871b2e-9407-4ae8-9adf-d889d9bcbf7e",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-01180",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-21"
+      }
+    ],
+    "imsid": 744016,
+    "monitored": true,
+    "name": "IMINDS-IC-GEANT-LAG",
+    "scid": "db889949-d2e1-4c36-a2d6-a7f3c99237ba",
+    "service_type": "ETHERNET",
+    "sid": "GA-02314",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "REDIRIS"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae16"
+      }
+    ],
+    "imsid": 719102,
+    "monitored": true,
+    "name": "REDIRIS-AP1-LAG",
+    "scid": "db95aa46-1fb6-4b71-8ef6-5eb7f4e8b84b",
+    "service_type": "ETHERNET",
+    "sid": "GA-01800",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-0/0/4"
+      }
+    ],
+    "imsid": 658491,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-019(ETH)",
+    "scid": "dbb7d237-aa90-42c2-9ef5-274bafad1937",
+    "service_type": "ETHERNET",
+    "sid": "GA-01241",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.chi.md.geant.net",
+        "interface": "ae1"
+      }
+    ],
+    "imsid": 713272,
+    "monitored": true,
+    "name": "CHI-CHI-LAG",
+    "scid": "dbe21175-3203-4536-aec4-e5dc458ae83e",
+    "service_type": "ETHERNET",
+    "sid": "GA-02037",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "185.1.192.126/23",
+          "2001:7f8:a0::51e5:0:1/64"
+        ],
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae14.100"
+      }
+    ],
+    "imsid": 661295,
+    "monitored": false,
+    "name": "IX-PEERINGS-IN-DE-CIX-MAD",
+    "scid": "dc1670ff-80af-4519-9ba8-8cc53063af19",
+    "service_type": "IP PEERING - NON R&E (PUBLIC)",
+    "sid": "GS-00949",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-22"
+      }
+    ],
+    "imsid": 747581,
+    "monitored": true,
+    "name": "PIONIER-AP2-LAG",
+    "scid": "dc243c32-8a94-4b02-9713-5898ed9c9781",
+    "service_type": "ETHERNET",
+    "sid": "GA-01892",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658743,
+    "monitored": true,
+    "name": "MILAN 2 CALDERA-MILAN 2 CALDERA-1GBE-003(GEANT)",
+    "scid": "dc24b1d8-cdc8-4420-aef1-3ca5e896120a",
+    "service_type": "ETHERNET",
+    "sid": "GA-01525",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ams.nl.geant.net",
+        "interface": "lag-9"
+      }
+    ],
+    "imsid": 739968,
+    "monitored": true,
+    "name": "AMS-HAM-LAG-300G",
+    "scid": "dc297262-1c02-464c-b38e-d0f5de232e08",
+    "service_type": "ETHERNET",
+    "sid": "GA-01923",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae4"
+      }
+    ],
+    "imsid": 712768,
+    "monitored": true,
+    "name": "LIS-MAD-LAG-200G",
+    "scid": "dc37c9e0-3026-4861-9628-201ee271413a",
+    "service_type": "ETHERNET",
+    "sid": "GA-02001",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GRNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.the.gr.geant.net",
+        "interface": "lag-20"
+      }
+    ],
+    "imsid": 745267,
+    "monitored": true,
+    "name": "GRNET-AP2-LAG",
+    "scid": "dc3d5bf7-b93f-48e7-9a09-07bc5142c232",
+    "service_type": "ETHERNET",
+    "sid": "GA-01929",
+    "speed": 64424509440,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RARE"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PF1-RARE.FRA.DE.GEANT.NET",
+        "port": "XE-2"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-0/0/2.201"
+      },
+      {
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae16.201"
+      }
+    ],
+    "imsid": 732759,
+    "monitored": false,
+    "name": "FRA-MAD-RARE-REDIRIS-23017-VL201",
+    "scid": "dc68e1e6-fd38-4c69-afca-e169a057e1c7",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02274",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708203,
+    "monitored": false,
+    "name": "PS-MIL2-IT-BWCTL",
+    "scid": "dc6bbb90-debe-4a1b-9664-76ec2cc9eef7",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00334",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "RENAM"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.chi.md.geant.net",
+        "interface": "ae10"
+      }
+    ],
+    "imsid": 714059,
+    "monitored": true,
+    "name": "RENAM-AP1-LAG",
+    "scid": "dc767ba4-1cfd-4a5a-b757-e72897aec5c3",
+    "service_type": "ETHERNET",
+    "sid": "GA-02016",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.chi.md.geant.net",
+        "interface": "ae3"
+      }
+    ],
+    "imsid": 747919,
+    "monitored": true,
+    "name": "CHISINAU-CHISINAU-LAG-001(GEANT)",
+    "scid": "dcae8940-de26-4555-a36b-c1914f74de52",
+    "service_type": "ETHERNET",
+    "sid": "GA-92018",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "CESNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.31"
+      },
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae23.401"
+      }
+    ],
+    "imsid": 724682,
+    "monitored": true,
+    "name": "CESNET-NACIT-EXPRESSROUTE-VLAN401",
+    "scid": "dcb38399-ffaa-4391-a6ac-4256a81317db",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02175",
+    "speed": 225485783040,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.191/31",
+          "2001:798:cc:1::ee/126"
+        ],
+        "hostname": "rt0.par.fr.geant.net",
+        "interface": "lag-2.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.190/31",
+          "2001:798:cc:1::ed/126"
+        ],
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-2.0"
+      }
+    ],
+    "imsid": 744055,
+    "monitored": true,
+    "name": "BRU-PAR-IPTRUNK",
+    "scid": "dcb7c9c2-2147-458d-9f45-6b6342d8295a",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02280",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658667,
+    "monitored": false,
+    "name": "730XD-1-ESXI-TRAFFIC-LAG-PAR",
+    "scid": "dce57f5f-a783-47fe-9533-a276131d7874",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01715",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.123.249/29",
+          "2001:798:bb:16::1/64"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-1/0/2.10"
+      }
+    ],
+    "imsid": 661522,
+    "monitored": false,
+    "name": "DTN-LON-10G-DATA",
+    "scid": "dcee4bb7-0bef-4055-9608-0a22f018fc29",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00146",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-1/0/14"
+      }
+    ],
+    "imsid": 658556,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-030(ETH)",
+    "scid": "dd0225f2-726c-4c49-b4ed-87d39596f571",
+    "service_type": "ETHERNET",
+    "sid": "GA-01243",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662245,
+    "monitored": true,
+    "name": "FRANKFURT-FRANKFURT-1GBE-020(ETH)",
+    "scid": "dd02d519-5303-4260-b7d4-3671d780ec17",
+    "service_type": "ETHERNET",
+    "sid": "GA-01607",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 733944,
+    "monitored": true,
+    "name": "PARIS-PARIS 007B-10GBE-004(GEANT)",
+    "scid": "dd3edba8-ba00-41b0-8f73-ab4c1fc0d192",
+    "service_type": "ETHERNET",
+    "sid": "GA-01395",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GOOGLE"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae11"
+      }
+    ],
+    "imsid": 734925,
+    "monitored": true,
+    "name": "GOOGLE-AMS-PNI-2-LAG",
+    "scid": "dd5f21c3-82df-42df-9df9-4d09a6bf7186",
+    "service_type": "ETHERNET",
+    "sid": "GA-01921",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.202/31",
+          "2001:798:1::109/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae17.0"
+      }
+    ],
+    "imsid": 708275,
+    "monitored": true,
+    "name": "FACEBOOK-32934-LON-FA-1026202",
+    "scid": "dd614802-09a4-46f8-9ebd-e63ae3403bd0",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-00928",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.kie.ua.geant.net",
+        "interface": "ae2"
+      }
+    ],
+    "imsid": 713307,
+    "monitored": true,
+    "name": "LAG-RT2.KIE.UA_AE2-SW1.KIE.UA_AE3",
+    "scid": "dd9cdfaa-465e-4acf-ba91-c2d4b4d211a0",
+    "service_type": "ETHERNET",
+    "sid": "GA-02047",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 679555,
+    "monitored": true,
+    "name": "LJUBLJANA 2-LJUBLJANA 2-LAG-001(GEANT)",
+    "scid": "ddb630a7-d791-4d2f-935c-e0c42d30ae3b",
+    "service_type": "ETHERNET",
+    "sid": "GA-01743",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662388,
+    "monitored": true,
+    "name": "AMSTERDAM-AMSTERDAM-10GBE-029(GEANT)",
+    "scid": "ddd25c51-6b1c-4f9b-8f6e-34ffb667fe0d",
+    "service_type": "ETHERNET",
+    "sid": "GA-01573",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "T-SYSTEMS"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae25"
+      }
+    ],
+    "imsid": 732118,
+    "monitored": true,
+    "name": "T-SYSTEM FRA 10G LAG",
+    "scid": "dde4f7df-9477-438a-a506-58faf19b19f8",
+    "service_type": "ETHERNET",
+    "sid": "GA-01947",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.21"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-240584"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20:4091"
+      }
+    ],
+    "imsid": 744147,
+    "monitored": true,
+    "name": "MSEZWEV-01139",
+    "scid": "ddf11fab-28ec-470f-a367-323aa6229b37",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01139",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "TS1.GEN.CH.GEANT.NET(OPENGEAR)",
+        "port": "NET1"
+      }
+    ],
+    "imsid": 677587,
+    "monitored": false,
+    "name": "GENEVA OOB LINK",
+    "scid": "de13cd4d-8a18-4f54-9b38-3c8b5d58a5e9",
+    "service_type": "OOB IP LINK",
+    "sid": "GS-00400",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.pra.cz.geant.net",
+        "interface": "lag-5"
+      }
+    ],
+    "imsid": 740749,
+    "monitored": true,
+    "name": "PRA-VIE-LAG",
+    "scid": "de693f48-6715-4372-b3b1-b4dd9bbc87ab",
+    "service_type": "ETHERNET",
+    "sid": "GA-01830",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.115.92/31"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae2.998"
+      }
+    ],
+    "imsid": 736107,
+    "monitored": false,
+    "name": "EX3400-MANAGEMENT-AMS-NL",
+    "scid": "de7ef2ec-4db9-4ac8-8c31-5164a2d7a686",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00147",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.2023"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae15.2023"
+      }
+    ],
+    "imsid": 705899,
+    "monitored": true,
+    "name": "AMS-PAR-GEANTOPEN-NORDUNET-INTERNET2-17008",
+    "scid": "dee5ebab-3027-4954-9f56-ab3bb6fe8e3c",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00959",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "AMT1.LON2.UK",
+        "port": "AE1"
+      }
+    ],
+    "imsid": 744435,
+    "monitored": true,
+    "name": "LON2-AMT-LAG",
+    "scid": "deff51a2-96de-427f-b5d7-8e3e3099bd4d",
+    "service_type": "ETHERNET",
+    "sid": "GA-02298",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 713232,
+    "monitored": true,
+    "name": "BUC-CHI-LAG",
+    "scid": "df010b75-5cad-425f-a476-8c8178e1cb90",
+    "service_type": "ETHERNET",
+    "sid": "TA-02018",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ORACLE"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae23"
+      }
+    ],
+    "imsid": 734843,
+    "monitored": true,
+    "name": "NL-ORACLEFC-LAG-1",
+    "scid": "df06578f-e3c9-4e60-8cc7-65cfb6106f46",
+    "service_type": "ETHERNET",
+    "sid": "GA-02009",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "JISC"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/2/7"
+      }
+    ],
+    "imsid": 658814,
+    "monitored": true,
+    "name": "JISC GN+ 10GE LL 1",
+    "scid": "df171bca-dae0-4d4d-9266-89c75a64f326",
+    "service_type": "ETHERNET",
+    "sid": "GA-01457",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae15"
+      }
+    ],
+    "imsid": 659341,
+    "monitored": true,
+    "name": "NYC-PAR LAG",
+    "scid": "df802000-65cc-4229-bcad-03e61d9bd3e8",
+    "service_type": "ETHERNET",
+    "sid": "GA-01821",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662232,
+    "monitored": true,
+    "name": "SOFIA-SOFIA-1GBE-005(ETH)",
+    "scid": "dfbcbcd8-fe63-4df6-9121-19cd9c255291",
+    "service_type": "ETHERNET",
+    "sid": "GA-01250",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [],
+    "imsid": 712375,
+    "monitored": true,
+    "name": "MD-VPN-VRR-PARIS-NORDUNET-2-SE",
+    "scid": "dfc4fc68-6881-4263-a306-011504053f26",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01048",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "UOM"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.mil2.it.geant.net",
+        "interface": "ae11"
+      }
+    ],
+    "imsid": 721888,
+    "monitored": true,
+    "name": "UOM-AP1-LAG",
+    "scid": "dfcabdfe-a047-4027-bddb-5c0000a0a341",
+    "service_type": "ETHERNET",
+    "sid": "GA-01344",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661979,
+    "monitored": false,
+    "name": "OWAMP-ATH-GR",
+    "scid": "dfe24866-b91d-4596-9ca0-78253ed44210",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00264",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708714,
+    "monitored": false,
+    "name": "FRA-HAM-IPTRUNK",
+    "scid": "dfeadd24-fe49-484f-b6d8-ee48370deacf",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00035",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "EUMETSAT-SVALBARD"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.127.146/31"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5.120"
+      }
+    ],
+    "imsid": 729170,
+    "monitored": true,
+    "name": "EUMET-SVALBARD-LON-MONITORINGVLAN",
+    "scid": "e0033954-ca83-4760-b909-67c4f71d4cea",
+    "service_type": "GEANT IP",
+    "sid": "GS-02156",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 679042,
+    "monitored": true,
+    "name": "FRA-HAM-LAG",
+    "scid": "e004a0a0-2ed2-4a48-9e6b-bb6a74702982",
+    "service_type": "ETHERNET",
+    "sid": "GA-01897",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "REDIRIS"
+    ],
+    "endpoints": [],
+    "imsid": 719556,
+    "monitored": false,
+    "name": "FRA-MAR-REDIRIS-RARE-20092",
+    "scid": "e0077a11-932d-44e4-9e2c-1a307a157e85",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00693",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [],
+    "imsid": 662203,
+    "monitored": true,
+    "name": "HAMBURG-HAMBURG-1GBE-010(ETH)",
+    "scid": "e0150c66-e5c7-4d5a-9dd1-e3aa391a31f5",
+    "service_type": "ETHERNET",
+    "sid": "GA-01645",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae7"
+      }
+    ],
+    "imsid": 744378,
+    "monitored": true,
+    "name": "FRA-AMT-LAG",
+    "scid": "e022f42d-3e1d-4a5c-89cb-3fbf0a719564",
+    "service_type": "ETHERNET",
+    "sid": "GA-02303",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-0/0/7"
+      }
+    ],
+    "imsid": 658424,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-006(ETH)",
+    "scid": "e02385ac-5381-4727-bbc3-1d395cb97268",
+    "service_type": "ETHERNET",
+    "sid": "GA-01214",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658680,
+    "monitored": false,
+    "name": "LON2-PRD-ESX03-VSAN-LAG",
+    "scid": "e065894a-c9f1-4592-88de-6a3d9acaae2f",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01708",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "JISC"
+    ],
+    "endpoints": [
+      {
+        "equipment": "GEN01-GRV6",
+        "port": "1/2/5"
+      },
+      {
+        "equipment": "LON01-GRV4",
+        "port": "1/2/5"
+      }
+    ],
+    "imsid": 726382,
+    "monitored": true,
+    "name": "GEN1-LON1-LHC-CERN-JISC-22109",
+    "scid": "e0a85d56-33ae-4088-b4bb-305cae3074ef",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-02238",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ORACLE"
+    ],
+    "endpoints": [],
+    "imsid": 719256,
+    "monitored": true,
+    "name": "DE-ORACLE-31898",
+    "scid": "e0b1255e-ed93-42aa-b44c-707ad21357c8",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-00605",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 734735,
+    "monitored": true,
+    "name": "ATH2-MIL2-LAG",
+    "scid": "e0b1bce4-ec45-4d7c-9f2d-d8ce32a19ee3",
+    "service_type": "ETHERNET",
+    "sid": "DA-000198",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CANARIE"
+    ],
+    "endpoints": [],
+    "imsid": 661996,
+    "monitored": true,
+    "name": "LON-LON-GEANTOPEN-CANARIE-QNREN-15024",
+    "scid": "e0b7f5ac-9708-4315-9517-028eb1a4ebf5",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00961",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-1/0/0"
+      }
+    ],
+    "imsid": 658426,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-008(ETH)",
+    "scid": "e0eb1af3-5183-442b-a660-16d26d09ae6b",
+    "service_type": "ETHERNET",
+    "sid": "GA-01235",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SWITCH"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.21/30",
+          "2001:0798:0012:10aa::1/126"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae23.100"
+      }
+    ],
+    "imsid": 663078,
+    "monitored": true,
+    "name": "SWITCH-AP1",
+    "scid": "e0f36f7f-1d4e-43d6-a21d-cf9ab001f377",
+    "service_type": "GEANT IP",
+    "sid": "GS-00514",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "VERIZON"
+    ],
+    "endpoints": [],
+    "imsid": 731607,
+    "monitored": true,
+    "name": "FRANKFURT-VERIZON-2-LAG",
+    "scid": "e0fe73a4-0126-480f-ba0b-048a79d88ff6",
+    "service_type": "ETHERNET",
+    "sid": "GA-01967",
+    "speed": 32212254720,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.pra.cz.geant.net",
+        "interface": "lag-2"
+      }
+    ],
+    "imsid": 739238,
+    "monitored": true,
+    "name": "PRA-PRA-LAG",
+    "scid": "e12a14a3-2dd3-4b0e-8db3-01a914a33bc7",
+    "service_type": "ETHERNET",
+    "sid": "GA-02544",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NIKS"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae25"
+      }
+    ],
+    "imsid": 734927,
+    "monitored": true,
+    "name": "NL-NIKS-LAG",
+    "scid": "e12c60cb-7a3b-4a8a-8637-a27124227ed0",
+    "service_type": "ETHERNET",
+    "sid": "GA-02143",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663222,
+    "monitored": false,
+    "name": "TAAS-CONTROL-AMSTERDAM",
+    "scid": "e12ed422-0e34-4adc-89a3-9b3658cd2a7b",
+    "service_type": "GTS",
+    "sid": "GS-01186",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/2/7"
+      }
+    ],
+    "imsid": 729227,
+    "monitored": true,
+    "name": "LON2-PAR-SUPERPOP-GBS-LL2",
+    "scid": "e141a58f-f0c0-4323-8e6a-e6e42ba22163",
+    "service_type": "ETHERNET",
+    "sid": "GA-01321",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-0/0/44"
+      }
+    ],
+    "imsid": 739584,
+    "monitored": true,
+    "name": "LONDON 2-LONDON 2-10GBE-041(GEANT)",
+    "scid": "e17a4c25-03fc-42e7-931a-9b6e22e5290a",
+    "service_type": "ETHERNET",
+    "sid": "GS-00076",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663002,
+    "monitored": false,
+    "name": "PS-LHCONE-BUD-HU-DATA",
+    "scid": "e17bf9f0-2e66-4b59-a73f-a83b58ecf94f",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00314",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GRNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/3/3.1640"
+      },
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "pwe-223079"
+      },
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "lag-22:1640"
+      }
+    ],
+    "imsid": 745432,
+    "monitored": true,
+    "name": "PARIS-PARIS-ETHS-001(GRNET)",
+    "scid": "e18ee5c4-dc5b-4b94-b293-42a3de4700db",
+    "service_type": "ETHERNET",
+    "sid": "GS-02382",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 746052,
+    "monitored": true,
+    "name": "KAU-KAU-MGMT-LAG",
+    "scid": "e1b30dbd-e217-4a72-b634-71ada9f7a983",
+    "service_type": "ETHERNET",
+    "sid": "GA-50064",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.25/31",
+          "2001:798:cc:1::126/126"
+        ],
+        "hostname": "rt0.mil2.it.geant.net",
+        "interface": "lag-3.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.24/31",
+          "2001:798:cc:1::125/126"
+        ],
+        "hostname": "rt0.lju.si.geant.net",
+        "interface": "lag-1.0"
+      }
+    ],
+    "imsid": 746146,
+    "monitored": true,
+    "name": "LJU-MIL2-IPTRUNK",
+    "scid": "e1b6fb34-222a-4198-ad8a-3e0b191c8252",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00051",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [],
+    "imsid": 738297,
+    "monitored": true,
+    "name": "PSNC-REDIRIS-SLICES-UPV/EHU",
+    "scid": "e1efa10c-7321-4d78-9991-aca4f23c6185",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-024913",
+    "speed": 429496729600,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [],
+    "imsid": 662206,
+    "monitored": true,
+    "name": "HAMBURG-HAMBURG-1GBE-011(ETH)",
+    "scid": "e221794d-5bea-4d69-b92a-1b364cef9a4f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01647",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.7"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-240585"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20:4092"
+      }
+    ],
+    "imsid": 744142,
+    "monitored": true,
+    "name": "MSEIMEC-02092",
+    "scid": "e2239a60-dd3e-457c-8fb8-d0373c1575fb",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02092",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ASREN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-1/2/5.46"
+      }
+    ],
+    "imsid": 707023,
+    "monitored": true,
+    "name": "LON-LON2-GEANTOPEN-ASREN-ASREN-190491",
+    "scid": "e23295a1-1ca7-40e6-a7c1-0a52c19b7495",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00984",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ROEDUNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.137/30",
+          "2001:798:2b:10aa::1/126"
+        ],
+        "hostname": "rt0.buc.ro.geant.net",
+        "interface": "lag-20.100"
+      }
+    ],
+    "imsid": 747908,
+    "monitored": true,
+    "name": "ROEDUNET-AP1",
+    "scid": "e234c7ba-60bf-4682-8ee1-92d138913f38",
+    "service_type": "GEANT IP",
+    "sid": "GS-00509",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "AMS-PAR-SCION-GTS-20053",
+    "scid": "e234d5ad-2d5e-4e8e-9997-8fc94ca8ee07",
+    "service_type": null,
+    "sid": "DS-51652",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW3.AMS.NL",
+        "port": "AE2"
+      }
+    ],
+    "imsid": 736042,
+    "monitored": true,
+    "name": "RT1.AMS-SW3.AMS-LAG",
+    "scid": "e23cc629-58f2-4bef-818f-1fdb1ca3bca2",
+    "service_type": "ETHERNET",
+    "sid": "GA-02081",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "COLT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "xe-4/3/0"
+      }
+    ],
+    "imsid": 720362,
+    "monitored": true,
+    "name": "GWS COLT LL1",
+    "scid": "e23e021c-6aa6-4266-8829-b210401838e4",
+    "service_type": "ETHERNET",
+    "sid": "GA-01488",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "FRA01-GRV4",
+        "port": "1/1/6"
+      },
+      {
+        "equipment": "GEN01-GRV8",
+        "port": "1/2/6"
+      },
+      {
+        "equipment": "DIGITAL REALTY A-END",
+        "port": "DE259800"
+      },
+      {
+        "equipment": "DIGITAL REALTY Z-END",
+        "port": "DE259800"
+      }
+    ],
+    "imsid": 739641,
+    "monitored": true,
+    "name": "FRA-GEN-NORDUNET-24055-2",
+    "scid": "e2525041-14bb-485c-9783-d9553167c895",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-02532",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.136/31",
+          "2001:798:cc::d1/126"
+        ],
+        "hostname": "mx2.lis.pt.geant.net",
+        "interface": "ae6.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.137/31",
+          "2001:798:cc::d2/126"
+        ],
+        "hostname": "rt0.par.fr.geant.net",
+        "interface": "lag-6.0"
+      }
+    ],
+    "imsid": 745054,
+    "monitored": true,
+    "name": "LIS-PAR-IPTRUNK",
+    "scid": "e266a1a4-5beb-4a9b-b3c0-4be736eeecab",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02633",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 679315,
+    "monitored": false,
+    "name": "PAR-TNMS",
+    "scid": "e2806c84-dbb2-4c63-a052-3149aedd8b19",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00276",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661261,
+    "monitored": false,
+    "name": "PS-PRA-CZ-MANAGEMENT",
+    "scid": "e2940a92-299c-464d-9e8a-18e2d52b7cca",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00349",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CERN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.157/30",
+          "2001:798:99:1::dd/126"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae22.201"
+      }
+    ],
+    "imsid": 701593,
+    "monitored": true,
+    "name": "CERN-AP1-EXT2",
+    "scid": "e2d7cc89-a2f4-459f-9bc8-e2333ecca4b4",
+    "service_type": "GEANT IP",
+    "sid": "GS-00443",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.fra.de.geant.net",
+        "interface": "ae0.0"
+      },
+      {
+        "addresses": [
+          "10.0.1.130/26"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "irb.3001"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae30.3001"
+      }
+    ],
+    "imsid": 733003,
+    "monitored": false,
+    "name": "TAAS-CONTROL-FRANKFURT-VRF-VLAN3001",
+    "scid": "e2d8e1be-e04c-4379-8ee7-be733bb2e9f8",
+    "service_type": "L3-VPN",
+    "sid": "GS-00861",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "LAT"
+    ],
+    "endpoints": [],
+    "imsid": 709261,
+    "monitored": true,
+    "name": "LAT-AP1-IPV4",
+    "scid": "e2e169d5-2acb-4352-a7d3-b1bbebf6a5ac",
+    "service_type": "GEANT IP",
+    "sid": "GS-00483",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708325,
+    "monitored": false,
+    "name": "PS-LIS-PT-OWAMP",
+    "scid": "e2f95001-b5c0-4bab-a454-abedbfa38727",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00318",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "EENET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.rig.lv.geant.net",
+        "interface": "lag-21"
+      }
+    ],
+    "imsid": 745927,
+    "monitored": true,
+    "name": "EENET-AP2-LAG",
+    "scid": "e3017c47-c0ad-47ab-857c-516e4d7c4f3c",
+    "service_type": "ETHERNET",
+    "sid": "GA-01737",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.89.206/31",
+          "2001:798:1::198/127"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae48.720"
+      }
+    ],
+    "imsid": 741338,
+    "monitored": false,
+    "name": "A10-DDOS-SCRUBBING-FRA-DIRTY-TRAFFIC",
+    "scid": "e3183991-3bde-465f-ab0e-035c0b6f60fa",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00088",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "REDCLARA"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.166/31",
+          "2001:798:99:1::99/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae26.611"
+      }
+    ],
+    "imsid": 709307,
+    "monitored": true,
+    "name": "UK-CLARA-NEA3R",
+    "scid": "e3203527-2489-4618-90ce-e8f0634beb4f",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00914",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "ae6"
+      }
+    ],
+    "imsid": 658665,
+    "monitored": false,
+    "name": "LON2-PRD-ESX10-ESXI-TRAFFIC",
+    "scid": "e32d2136-3aad-432a-bab3-891e2dba54e4",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01693",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661517,
+    "monitored": false,
+    "name": "JUNOSSPACE-R720-NEBACKUP-PAR-FR",
+    "scid": "e3314fbd-8090-42a8-83c9-87a2cbc724d9",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00215",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "DFN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae15.3152"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae11.353"
+      }
+    ],
+    "imsid": 706059,
+    "monitored": true,
+    "name": "FRA-PAR-JAXA-DFN-SINET-14005",
+    "scid": "e3641428-7c89-4e2d-b05c-0c816e5fd21e",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00703",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662205,
+    "monitored": true,
+    "name": "BUDAPEST-BUDAPEST-1GBE-006(ETH)",
+    "scid": "e36d28bf-a4a1-45e0-83db-41fd73616562",
+    "service_type": "ETHERNET",
+    "sid": "GA-01566",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "UBUNTUNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.21/30",
+          "2001:798:22:10aa::15/126"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae17.100"
+      }
+    ],
+    "imsid": 735726,
+    "monitored": true,
+    "name": "NL-UBUNTUNET",
+    "scid": "e3afa18d-5021-4b9c-bb64-e5a892e7c749",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00902",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 659175,
+    "monitored": true,
+    "name": "MILAN 2 CALDERA-MILAN 2 CALDERA-1GBE-010(ETH)",
+    "scid": "e3b1b406-0e59-4d28-bf2a-ab33615af235",
+    "service_type": "ETHERNET",
+    "sid": "GA-01518",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "srx1.ch.office.geant.net",
+        "interface": "ge-0/0/3"
+      }
+    ],
+    "imsid": 662521,
+    "monitored": true,
+    "name": "PHY TO SWITCH CLUSTER (GE-0/0/4)",
+    "scid": "e3c78429-10e8-4683-a22f-f01039d75e9a",
+    "service_type": "ETHERNET",
+    "sid": "GA-01282",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "AARNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-1/3/0"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-1/3/0.1"
+      }
+    ],
+    "imsid": 678243,
+    "monitored": true,
+    "name": "AARNET_GEO_UK_1",
+    "scid": "e3c97737-950f-4637-8800-f0a224eff712",
+    "service_type": "ETHERNET",
+    "sid": "GA-01480",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "equipment": "AMS01-GRV4",
+        "port": "1/3/9"
+      },
+      {
+        "equipment": "LON01-GRV3",
+        "port": "1/3/9"
+      },
+      {
+        "equipment": "DIGITAL REALTY A-END",
+        "port": "NL261658-1"
+      },
+      {
+        "equipment": "DIGITAL REALTY Z-END",
+        "port": "NL261658-1"
+      }
+    ],
+    "imsid": 739847,
+    "monitored": true,
+    "name": "AMS-LON1-ESNET-24015-1-400G",
+    "scid": "e3d305c6-49e3-4135-b4b9-8776b236fff1",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-02452",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658741,
+    "monitored": true,
+    "name": "MILAN 2 CALDERA-MILAN 2 CALDERA-10GBE-001(ETH)",
+    "scid": "e45e8728-4354-4471-9bdc-114edced1fa0",
+    "service_type": "ETHERNET",
+    "sid": "GA-01341",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-4/1/4.1488"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae12.488"
+      }
+    ],
+    "imsid": 738739,
+    "monitored": true,
+    "name": "LON-PAR-NCSA-LAAS-ESNET-RENATER-15057",
+    "scid": "e47134f7-e166-4aeb-9a49-023c40c46969",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00738",
+    "speed": 751619276800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.112.18/28",
+          "2001:799:cb2:2::2/64"
+        ],
+        "hostname": "srx1.ch.office.geant.net",
+        "interface": "ge-0/0/3.500"
+      }
+    ],
+    "imsid": 662973,
+    "monitored": false,
+    "name": "SRX1-CITY-HOUSE-NETWORK-INFRASTRUCTURE",
+    "scid": "e4774582-95b2-4806-af6b-21d7616ac13f",
+    "service_type": "CORPORATE",
+    "sid": "GS-01663",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.AM.OFFICE",
+        "port": "GE-2/0/6"
+      }
+    ],
+    "imsid": 658625,
+    "monitored": true,
+    "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-030(ETH)",
+    "scid": "e4800358-20b7-4ba8-80ef-0519fe4bfd7b",
+    "service_type": "ETHERNET",
+    "sid": "GA-01265",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.239/31",
+          "2001:798:cc:1::be/126"
+        ],
+        "hostname": "rt0.par.fr.geant.net",
+        "interface": "lag-7.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.238/31",
+          "2001:798:cc:1::bd/126"
+        ],
+        "hostname": "rt0.gen.ch.geant.net",
+        "interface": "lag-7.0"
+      }
+    ],
+    "imsid": 739696,
+    "monitored": true,
+    "name": "GEN-PAR-IPTRUNK",
+    "scid": "e4926619-f72f-45da-9c67-4d43f15e9b1f",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00040",
+    "speed": 1717986918400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663037,
+    "monitored": false,
+    "name": "OWAMP-GENEVA-VLAN22",
+    "scid": "e4bbd6eb-4cee-4e1c-b71d-a42bb93d2d3d",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00265",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.246/31",
+          "2001:798:111:1::91/126"
+        ],
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-22.111"
+      }
+    ],
+    "imsid": 747600,
+    "monitored": true,
+    "name": "PIONIER-AP2-LHCONE",
+    "scid": "e4c66a81-ed98-49fa-b9b8-8f9de868171b",
+    "service_type": "L3-VPN",
+    "sid": "GS-00843",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [],
+    "imsid": 719293,
+    "monitored": false,
+    "name": "BELNET-SMALSDC-EXPRESSROUTE-VLAN4086",
+    "scid": "e4cf18a8-7386-4838-8737-d8cf5521ddbb",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02159",
+    "speed": 118111600640,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "FCCN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.209/30",
+          "2001:798:1::f1/126"
+        ],
+        "hostname": "mx2.lis.pt.geant.net",
+        "interface": "ae10.333"
+      }
+    ],
+    "imsid": 661641,
+    "monitored": true,
+    "name": "FCCN-AP1-IAS",
+    "scid": "e4edd0c1-7b0b-4868-9517-13cde2e351e1",
+    "service_type": "GWS - INDIRECT",
+    "sid": "GS-00527",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae12"
+      }
+    ],
+    "imsid": 659342,
+    "monitored": true,
+    "name": "CAE1-LAG",
+    "scid": "e5026e53-b04b-4668-b66b-0f07e6914968",
+    "service_type": "ETHERNET",
+    "sid": "GA-01843",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "TELIA"
+    ],
+    "endpoints": [],
+    "imsid": 659304,
+    "monitored": true,
+    "name": "LAG-MX1.VIE.AT_AE24",
+    "scid": "e5183c45-c0c3-43e3-8b58-bb3a678b9646",
+    "service_type": "ETHERNET",
+    "sid": "GA-01857",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "REDIRIS"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.197/30",
+          "2001:798:111:1::39/126"
+        ],
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae16.111"
+      }
+    ],
+    "imsid": 719492,
+    "monitored": true,
+    "name": "REDIRIS-AP1-LHCONE",
+    "scid": "e52d0a4b-ba6d-45d9-a4ea-d33fd940563b",
+    "service_type": "L3-VPN",
+    "sid": "GS-00852",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662365,
+    "monitored": true,
+    "name": "NETHERLIGHT AUTOMATED GOLE",
+    "scid": "e5543071-40e3-40b2-89ea-2421845bbb3c",
+    "service_type": "ETHERNET",
+    "sid": "GA-01631",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.mar.fr.geant.net",
+        "interface": "lag-5"
+      }
+    ],
+    "imsid": 742605,
+    "monitored": true,
+    "name": "MAR-MAR-MGMT-LAG",
+    "scid": "e55b7515-c8b3-4530-88e4-4aac5f6f4f4e",
+    "service_type": "ETHERNET",
+    "sid": "GA-02589",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "AMRES"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.62/31",
+          "2001:798:99:1::11d/126"
+        ],
+        "hostname": "rt0.zag.hr.geant.net",
+        "interface": "lag-21.1"
+      }
+    ],
+    "imsid": 747837,
+    "monitored": true,
+    "name": "AMRES-AP1",
+    "scid": "e55d42c0-d940-4f25-875d-c7f4b48d768e",
+    "service_type": "GEANT IP",
+    "sid": "GS-00425",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "CERN_CERN_ExpressRoute_VLAN497",
+    "scid": "e56745fc-10d7-4d60-b031-a9be71578c3c",
+    "service_type": null,
+    "sid": "DS-53205",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 660437,
+    "monitored": false,
+    "name": "MIL2-GROOVE-1-MANAGEMENT",
+    "scid": "e58af948-f32f-41c7-8fd9-b8a2e3a0abe8",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00249",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658435,
+    "monitored": false,
+    "name": "730XD-5-VMNIC7-PAR",
+    "scid": "e5a4382c-e5c1-467d-9844-c095372da8a9",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01287",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ARN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae18"
+      }
+    ],
+    "imsid": 724748,
+    "monitored": true,
+    "name": "ES-ARN-AP1-LAG",
+    "scid": "e5de065e-9e3d-40a8-b12e-4deb0b214419",
+    "service_type": "ETHERNET",
+    "sid": "GA-02206",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae1"
+      }
+    ],
+    "imsid": 729089,
+    "monitored": true,
+    "name": "FRANKFURT 15-FRANKFURT 15-LAG-005(GEANT)",
+    "scid": "e5e1b2dc-18a6-4e39-bca3-2c9837bed95d",
+    "service_type": "ETHERNET",
+    "sid": "GA-02067",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GARR"
+    ],
+    "endpoints": [],
+    "imsid": 712385,
+    "monitored": true,
+    "name": "MD-VPN-VRR-LJUBLJANA-GARR-2-IT",
+    "scid": "e5fcc660-8be6-4dc2-af15-634b76e8c80f",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01022",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "AMRES"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.zag.hr.geant.net",
+        "interface": "lag-21"
+      }
+    ],
+    "imsid": 747784,
+    "monitored": true,
+    "name": "AMRES-AP1-LAG",
+    "scid": "e61e7c7a-f832-44de-a175-db1516f16953",
+    "service_type": "ETHERNET",
+    "sid": "GA-01902",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658945,
+    "monitored": true,
+    "name": "MADRID-MADRID-1GBE-008(ETH)",
+    "scid": "e638fb8c-3105-43dd-a9a4-25e4f053d74a",
+    "service_type": "ETHERNET",
+    "sid": "GA-01353",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 715108,
+    "monitored": true,
+    "name": "AMSTERDAM-AMSTERDAM-10GBE-023(GEANT)",
+    "scid": "e654f5c9-847e-473e-a1d1-efe56066b129",
+    "service_type": "ETHERNET",
+    "sid": "GA-01634",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "RARE"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PF1-RARE.POZ.PL.GEANT.NET",
+        "port": "XE-1"
+      },
+      {
+        "equipment": "PF1-RARE.AMS.NL.GEANT.NET",
+        "port": "XE-1"
+      },
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "xe-3/0/1.0"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "xe-9/0/2.0"
+      }
+    ],
+    "imsid": 736091,
+    "monitored": false,
+    "name": "AMS-POZ-RARE-P4-9951379",
+    "scid": "e68ad047-af95-4472-b32c-75f491ddb09d",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00661",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "KREONET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.45/30",
+          "2001:798:99:1::79/126"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae15.673"
+      }
+    ],
+    "imsid": 734548,
+    "monitored": true,
+    "name": "NL-KREONET",
+    "scid": "e6a69eba-1173-4eb8-9d81-bfbae639cf25",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00897",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.por.pt.geant.net",
+        "interface": "ae2"
+      }
+    ],
+    "imsid": 708924,
+    "monitored": true,
+    "name": "BIL-POR-LAG",
+    "scid": "e6ad9809-93c7-4030-8aad-34607c14d3bc",
+    "service_type": "ETHERNET",
+    "sid": "GA-02028",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "EUMETSAT-SVALBARD"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.127.148/31"
+        ],
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-21.110"
+      }
+    ],
+    "imsid": 747590,
+    "monitored": true,
+    "name": "EUMET-SVALBARD-HAM-MONITORINGVLAN",
+    "scid": "e6aec653-17f1-4ce2-ad23-4149f73e1a88",
+    "service_type": "GEANT IP",
+    "sid": "GS-02155",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [],
+    "imsid": 727288,
+    "monitored": false,
+    "name": "BELNET-BGP-LU-COC-AP1",
+    "scid": "e6baf936-f5e3-4a55-9435-fbc9816335e1",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-00998",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "JISC"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.89.1/30",
+          "2001:798:1::75/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae10.333"
+      }
+    ],
+    "imsid": 661497,
+    "monitored": true,
+    "name": "JISC-AP1-IAS",
+    "scid": "e6e7d903-96b7-48e1-ba72-4905d99db1d8",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00574",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "INTERNET2"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.3222"
+      }
+    ],
+    "imsid": 734552,
+    "monitored": true,
+    "name": "NL-INTERNET2-MONTREAL",
+    "scid": "e70f64a3-c3a5-4ffb-8381-540934d4214a",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00893",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.4/31",
+          "2001:798:cc::31/126"
+        ],
+        "hostname": "rt1.kie.ua.geant.net",
+        "interface": "ae1.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.5/31",
+          "2001:798:cc::32/126"
+        ],
+        "hostname": "rt2.kie.ua.geant.net",
+        "interface": "ae1.0"
+      }
+    ],
+    "imsid": 713325,
+    "monitored": true,
+    "name": "KIE-KIE-IPTRUNK",
+    "scid": "e716f601-8562-46e4-a043-4b4bbb2bbd10",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00045",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [],
+    "imsid": 727425,
+    "monitored": true,
+    "name": "V-LAN_1002_RT2.BRU.BE_XE-0/1/0_",
+    "scid": "e733196d-aed9-49ea-8f1a-4834fc98d0d0",
+    "service_type": "ETHERNET",
+    "sid": "GS-00675",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SCION"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-0/0/6.1626"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae19.1626"
+      }
+    ],
+    "imsid": 736666,
+    "monitored": false,
+    "name": "FRA-PAR-SCION-SCION-INTERNET2-2",
+    "scid": "e739296c-d5fa-4b32-9867-03beab096b5f",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02310",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 717107,
+    "monitored": false,
+    "name": "BUD-PRA-RARE-BMS9",
+    "scid": "e7640680-555a-4812-b2b2-7157db2572b7",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00687",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "UBUNTUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/2/5.2369"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae15.3400"
+      }
+    ],
+    "imsid": 706028,
+    "monitored": true,
+    "name": "LON-PAR-ESNET-UBUNTUNET-14020",
+    "scid": "e794124d-d77d-4bcb-b408-53c1c841b89a",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00737",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CANARIE"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.221/30",
+          "2001:0798:0029:10aa::1/126"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae15.204"
+      }
+    ],
+    "imsid": 660638,
+    "monitored": true,
+    "name": "FR-CANARIE-VLAN204",
+    "scid": "e7b236f7-8057-4b13-aac8-f3df7a94c5f9",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00881",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ASNET-AM"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-11/1/1.0"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae17.220"
+      }
+    ],
+    "imsid": 732138,
+    "monitored": true,
+    "name": "FRA-FRA-EAP-ASNET-AM-CL-190891",
+    "scid": "e7b8ad81-4627-43bf-9d8d-2d54d03d86bf",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00696",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.CHI.MD",
+        "port": "AE2"
+      }
+    ],
+    "imsid": 713246,
+    "monitored": true,
+    "name": "LAG-RT1.CHI.MD_AE2-SW1.CHI.MD_AE2",
+    "scid": "e7c4a8fb-21e0-4adc-81a5-53a2b406e53b",
+    "service_type": "ETHERNET",
+    "sid": "GA-02079",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.72/31",
+          "2001:798:cc::71/126"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae2.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.73/31",
+          "2001:798:cc::72/126"
+        ],
+        "hostname": "rt0.fra.de.geant.net",
+        "interface": "lag-1.0"
+      }
+    ],
+    "imsid": 739046,
+    "monitored": true,
+    "name": "FRA-FRA-IPTRUNK",
+    "scid": "e7de6e36-4cae-449a-aa3a-965132b699b2",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02461",
+    "speed": 858993459200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RENAM"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.116/31",
+          "2001:798:1::21d/126"
+        ],
+        "hostname": "rt2.chi.md.geant.net",
+        "interface": "ae10.333"
+      }
+    ],
+    "imsid": 714067,
+    "monitored": true,
+    "name": "RENAM-AP2-IAS",
+    "scid": "e7fe8c5f-58ca-4678-9e55-ab142560642f",
+    "service_type": "GWS - INDIRECT",
+    "sid": "GS-00542",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae3"
+      }
+    ],
+    "imsid": 739712,
+    "monitored": true,
+    "name": "GEN-GEN-800G-LAG",
+    "scid": "e80d7eaf-e342-4dd1-bda4-6dd08c5a2721",
+    "service_type": "ETHERNET",
+    "sid": "GA-02462",
+    "speed": 858993459200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "FACEBOOK"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae46"
+      }
+    ],
+    "imsid": 737789,
+    "monitored": true,
+    "name": "FACEBOOK-FRA-LAG-1",
+    "scid": "e82da13d-472b-4c27-af77-1ad6ce36106c",
+    "service_type": "ETHERNET",
+    "sid": "GA-02481",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GARR"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.180/31",
+          "2001:798:1e:10aa::9/126"
+        ],
+        "hostname": "rt1.mil2.it.geant.net",
+        "interface": "ae10.1000"
+      }
+    ],
+    "imsid": 661320,
+    "monitored": true,
+    "name": "GARR-AP1",
+    "scid": "e84ab848-4ff2-422b-9941-3f3fe817c837",
+    "service_type": "GEANT IP",
+    "sid": "GS-00462",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.kie.ua.geant.net",
+        "interface": "ae2"
+      }
+    ],
+    "imsid": 713306,
+    "monitored": true,
+    "name": "LAG-RT1.KIE.UA_AE2-SW1.KIE.UA_AE2",
+    "scid": "e84ef210-3dc2-4599-87c7-8a4662dcb768",
+    "service_type": "ETHERNET",
+    "sid": "GA-02025",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.PRA.CZ.GEANT2.NET",
+        "port": "ETH-45"
+      },
+      {
+        "hostname": "mx1.pra.cz.geant.net",
+        "interface": "xe-2/0/2.1025"
+      },
+      {
+        "hostname": "mx1.pra.cz.geant.net",
+        "interface": "ge-0/3/9.1025"
+      }
+    ],
+    "imsid": 660722,
+    "monitored": false,
+    "name": "BOD-SDN-PILOT-HOST-ETH4-PRAGUE",
+    "scid": "e869a973-1573-43e5-b456-b47b1a382708",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00105",
+    "speed": 11811160064,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SCION"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "xe-2/1/4.200"
+      },
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae23.200"
+      }
+    ],
+    "imsid": 720418,
+    "monitored": false,
+    "name": "GEN-GEN-SCION-SWITCH",
+    "scid": "e8db8b11-433b-4855-b52b-b214e711d57d",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02199",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663165,
+    "monitored": false,
+    "name": "PS-FRA-DE-IDRAC",
+    "scid": "e8e4c67a-07ac-4dab-9b8d-47f094ce2384",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00298",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT-IT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-1/0/41"
+      },
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/2/6.0"
+      },
+      {
+        "hostname": "qfx.fra.de.geant.net",
+        "interface": "xe-1/0/43"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-7/0/1.0"
+      }
+    ],
+    "imsid": 729418,
+    "monitored": true,
+    "name": "FRA-LON2-SUPERPOP-QFX-2-GEANT",
+    "scid": "e90afa3a-cab8-48fb-9991-5dd1ce9b0c5d",
+    "service_type": "GEANT - GBS",
+    "sid": "GS-00077|GS00077",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ge-0/3/2.302"
+      }
+    ],
+    "imsid": 661557,
+    "monitored": false,
+    "name": "VIE-GROOVE-1-MANAGEMENT",
+    "scid": "e9179e1a-884b-41ed-8193-d6fb1c3f07fd",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00381",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.127.133/31",
+          "2001:798:99:1::ce/126"
+        ],
+        "hostname": "srx1.ch.office.geant.net",
+        "interface": "ge-0/0/4.17"
+      }
+    ],
+    "imsid": 663138,
+    "monitored": false,
+    "name": "VIRGIN_MEDIA_EX1_LON2_TO_CAM_SRX_VLAN17-CH",
+    "scid": "e921bf8f-7400-41d3-ac31-9dbbd4008d5b",
+    "service_type": "CORPORATE",
+    "sid": "GS-01745",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.54/31",
+          "2001:798:111:1::ed/126"
+        ],
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-21.111"
+      }
+    ],
+    "imsid": 747591,
+    "monitored": true,
+    "name": "NORDUNET-AP2-LHCONE",
+    "scid": "e9515340-d66c-41ea-817d-a4ceb85cc66a",
+    "service_type": "L3-VPN",
+    "sid": "GS-02118",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae17"
+      }
+    ],
+    "imsid": 659301,
+    "monitored": true,
+    "name": "FACEBOOK-LON-LAG",
+    "scid": "e9da92b5-91f2-4f8f-81aa-d561e149ac0f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01841",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 724242,
+    "monitored": false,
+    "name": "UAT-TEST-INTERCONNECT",
+    "scid": "e9fcc627-cadb-4198-90ee-8afc3356b58b",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-11115",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ARN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.134/31",
+          "2001:798:1::191/126"
+        ],
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae18.333"
+      }
+    ],
+    "imsid": 724754,
+    "monitored": true,
+    "name": "ES-ARN-AP1-IAS",
+    "scid": "ea0e586f-a78e-4f07-a87f-bf3676e5c6a8",
+    "service_type": "GWS - INDIRECT",
+    "sid": "GS-00529",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ge-0/3/2"
+      },
+      {
+        "addresses": [
+          "62.40.121.136/31"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae1.31"
+      }
+    ],
+    "imsid": 662202,
+    "monitored": true,
+    "name": "GENEVA-GENEVA-1GBE-006(ETH)",
+    "scid": "ea1950b4-8772-42e0-8a28-7dc7a2b33dc4",
+    "service_type": "ETHERNET",
+    "sid": "GA-01543",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "mx1.fra.de - Traffic - ae29 - LAG PRIVATE AWS SRF9940987 |",
+    "scid": "ea2da137-4fc7-4ce1-9a3c-25244706f53d",
+    "service_type": null,
+    "sid": "GA-01937",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "UBUNTUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae17"
+      }
+    ],
+    "imsid": 735535,
+    "monitored": true,
+    "name": "NL-UBUNTUNET-LAG",
+    "scid": "ea454b4f-8a70-48f4-a281-4bdac5539225",
+    "service_type": "ETHERNET",
+    "sid": "GA-01917",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "REDIRIS"
+    ],
+    "endpoints": [],
+    "imsid": 712406,
+    "monitored": true,
+    "name": "MD-VPN-VRR-LJUBLJANA-REDIRIS-1-ES",
+    "scid": "ea55246e-3330-4423-bea6-3c595ebb3275",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01029",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.106.201/30",
+          "2001:798:bb:1::11/126"
+        ],
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-23.0"
+      }
+    ],
+    "imsid": 747638,
+    "monitored": false,
+    "name": "HAM-DTN-10G-DATA",
+    "scid": "ea71e8ac-3ad3-4ef4-bcd2-bce97b8ffe27",
+    "service_type": "SERVER LINK",
+    "sid": "GS-02433",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 677538,
+    "monitored": false,
+    "name": "ATH OOB LINK",
+    "scid": "ea785ce8-c0ff-45b9-8553-735cf0f1e8f9",
+    "service_type": "OOB IP LINK",
+    "sid": "GS-00390",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.rig.lv.geant.net",
+        "interface": "pwe-210341"
+      },
+      {
+        "hostname": "rt0.rig.lv.geant.net",
+        "interface": "lag-20:2112"
+      },
+      {
+        "hostname": "rt0.tar.ee.geant.net",
+        "interface": "pwe-210341"
+      },
+      {
+        "hostname": "rt0.tar.ee.geant.net",
+        "interface": "lag-20:2112"
+      }
+    ],
+    "imsid": 745926,
+    "monitored": true,
+    "name": "GEANT_EPIPE_210341",
+    "scid": "eaa71543-1004-479e-85fd-d2c076e5da61",
+    "service_type": "ETHERNET",
+    "sid": "GS-00752",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "LITNET"
+    ],
+    "endpoints": [],
+    "imsid": 745359,
+    "monitored": false,
+    "name": "RARE-02642",
+    "scid": "eab93543-e6ba-4fc3-a456-455787c79ebb",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02642",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.334"
+      }
+    ],
+    "imsid": 734557,
+    "monitored": true,
+    "name": "NL-NORDUNET-IX-2603",
+    "scid": "eada3559-0c96-47f8-955d-84844952fe32",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-00939",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae19"
+      }
+    ],
+    "imsid": 738698,
+    "monitored": true,
+    "name": "ES-MICROSOFT-EXPRESSROUTE-LAG#1",
+    "scid": "eb15061d-27ef-4419-b393-fcdd9ca9c739",
+    "service_type": "ETHERNET",
+    "sid": "GA-02522",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ARNES"
+    ],
+    "endpoints": [],
+    "imsid": 669604,
+    "monitored": false,
+    "name": "VIE-LJU-GWS-ARNES-TELIA-17055",
+    "scid": "eb24a0cc-4b6d-4b89-8b31-7fb035a357f9",
+    "service_type": "GEANT LAMBDA",
+    "sid": "GS-00802",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 737214,
+    "monitored": true,
+    "name": "GEN-GEN-10G-LINK1",
+    "scid": "eb54bfd8-60b6-4078-a101-c3326d9c8c00",
+    "service_type": "ETHERNET",
+    "sid": "GA-01540",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5.3914"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.25"
+      }
+    ],
+    "imsid": 713462,
+    "monitored": true,
+    "name": "NORDUNET-SUNET-EXPRESSROUTE-VLAN3914",
+    "scid": "eb5500be-7638-4e64-b18d-42de1b0ba1b3",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01160",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 679116,
+    "monitored": true,
+    "name": "ATH2-VIE-LAG",
+    "scid": "eb5a4e93-916f-4e98-8f02-bed347ab44d5",
+    "service_type": "ETHERNET",
+    "sid": "GA-01871",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "rt1.tal.ee - Traffic - ae3 - LAG INFRASTRUCTURE BACKBONE SRF0000001 | tal-tal ( rt1 to mx2.tal)",
+    "scid": "eb736df6-0e59-4bf6-9eb1-44661dc85b5f",
+    "service_type": null,
+    "sid": "GA-01736",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "REDCLARA"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/3/3.141"
+      },
+      {
+        "hostname": "mx2.lis.pt.geant.net",
+        "interface": "ae11.141"
+      }
+    ],
+    "imsid": 732906,
+    "monitored": false,
+    "name": "LIS-PAR-SCION-REDCLARA",
+    "scid": "eb975263-1b2c-4d72-b757-632c347b3a6f",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02435",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 707238,
+    "monitored": false,
+    "name": "LON-GROOVE",
+    "scid": "ebb17817-ce5d-4f7c-9849-27097f4ec5da",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00227",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 660561,
+    "monitored": false,
+    "name": "IPCAMERA-PRA-CZ",
+    "scid": "ebb180e5-4be8-4e93-a9d1-c5edc92b53ad",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00211",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [],
+    "imsid": 712411,
+    "monitored": true,
+    "name": "MD-VPN-VRR-LJUBLJANA-NORDUNET-2-SE",
+    "scid": "ebcbffc0-914c-4ed0-b4cd-04a0c8626938",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01027",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.mil2.it.geant.net",
+        "interface": "ae20"
+      }
+    ],
+    "imsid": 659305,
+    "monitored": true,
+    "name": "MIL-MIX-LAG",
+    "scid": "ebda9ed0-18f9-4c95-be0e-c27dcaf9a8c3",
+    "service_type": "ETHERNET",
+    "sid": "GA-01772",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661991,
+    "monitored": false,
+    "name": "PS-PAR-FR-IDRAC",
+    "scid": "ec01f788-909f-4f63-9820-1771daf28547",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00340",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.111/31",
+          "2001:798:cc::a6/126"
+        ],
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae2.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.110/31",
+          "2001:798:cc::a5/126"
+        ],
+        "hostname": "rt0.bud.hu.geant.net",
+        "interface": "lag-2.0"
+      }
+    ],
+    "imsid": 742924,
+    "monitored": true,
+    "name": "BUD-BUD-IPTRUNK",
+    "scid": "ec0f4cf4-541e-4dbc-abcc-42bb71b2c9d6",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02596",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [],
+    "imsid": 678999,
+    "monitored": false,
+    "name": "GEANT-OPERATIONS-LABCONNECTIVITY",
+    "scid": "ec260f18-5fb9-471c-80e8-703444d03ed2",
+    "service_type": "CORPORATE",
+    "sid": "GS-00468",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "xe-1/0/3"
+      }
+    ],
+    "imsid": 658792,
+    "monitored": true,
+    "name": "POZNAN-POZNAN-10GBE-003(ETH)",
+    "scid": "ec4a8e1e-32ff-443c-8b28-7f9ad3c8f093",
+    "service_type": "ETHERNET",
+    "sid": "GA-01373",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661912,
+    "monitored": false,
+    "name": "PS-ATH-GR-MANAGEMENT",
+    "scid": "ec4b0c1e-336c-460a-959f-918eb1694ba4",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00291",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658711,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-050(ETH)",
+    "scid": "ecb128d0-af2b-442a-bcd1-b6e4934f5103",
+    "service_type": "ETHERNET",
+    "sid": "GA-02136",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "HEANET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "xe-9/0/3.1214"
+      },
+      {
+        "hostname": "rt0.cor.ie.geant.net",
+        "interface": "pwe-121061"
+      },
+      {
+        "hostname": "rt0.cor.ie.geant.net",
+        "interface": "lag-20:1214"
+      }
+    ],
+    "imsid": 747413,
+    "monitored": false,
+    "name": "AMS-COR-00633",
+    "scid": "ecb83bc5-1689-4323-8318-b2860279feb6",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00633",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 709556,
+    "monitored": true,
+    "name": "HAMBURG-HAMBURG-10GBE-016(GEANT)",
+    "scid": "ecb84052-2b15-49ed-ae10-1aae86b50621",
+    "service_type": "ETHERNET",
+    "sid": "GA-01664",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "EENET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.53/30",
+          "2001:798:16:10aa::5/126"
+        ],
+        "hostname": "rt0.rig.lv.geant.net",
+        "interface": "lag-21.100"
+      }
+    ],
+    "imsid": 745984,
+    "monitored": true,
+    "name": "EENET-AP2",
+    "scid": "ecbab82b-4027-4a3d-84ed-7863d04d1ac4",
+    "service_type": "GEANT IP",
+    "sid": "GS-00455",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "PIONIER"
+    ],
+    "endpoints": [],
+    "imsid": 669198,
+    "monitored": true,
+    "name": "PIONIER-GEO-UK-1-LL",
+    "scid": "ece1e83d-22d8-4076-89c4-ec5b8b6ba512",
+    "service_type": "CBL1",
+    "sid": "GA-01453",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658698,
+    "monitored": false,
+    "name": "730XD-5-ESXI-TRAFFIC-LAG-PAR",
+    "scid": "ecf777cc-e707-415c-bb84-376cfd9f0ea8",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01728",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 726688,
+    "monitored": true,
+    "name": "LON2-LON2-AMT-10GBE-1",
+    "scid": "ed084a6f-cb9e-42f9-977a-a3fc35166f7f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01331",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "mx1.vie.at - Telia  Multicast Traffic",
+    "scid": "ed25c91e-9f15-44d8-80e8-e889a134012d",
+    "service_type": null,
+    "sid": "DS-39951",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 727145,
+    "monitored": true,
+    "name": "BRU-BRU-LAG-100G",
+    "scid": "ed8bc845-9f12-441f-a744-3a776bfe0a4b",
+    "service_type": "ETHERNET",
+    "sid": "GA-02275",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "FCCN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.por.pt.geant.net",
+        "interface": "ae10.1944"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.2"
+      }
+    ],
+    "imsid": 706526,
+    "monitored": true,
+    "name": "FCCN-NOVESBE-EXPRESSROUTE-VLAN1944",
+    "scid": "ed902a30-88c5-426a-9633-fb9df364642c",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-01144",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GRNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.89.66/31",
+          "2001:798:1::17d/126"
+        ],
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "lag-20.333"
+      }
+    ],
+    "imsid": 745494,
+    "monitored": true,
+    "name": "GRNET-AP1-IAS",
+    "scid": "ed92b8d4-144b-41f7-ba07-518978f5aae1",
+    "service_type": "GWS - INDIRECT",
+    "sid": "GS-00530",
+    "speed": 64424509440,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-0/0/1"
+      }
+    ],
+    "imsid": 658423,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-005(ETH)",
+    "scid": "eda3f04a-627b-4c12-addf-e6f79a4874e8",
+    "service_type": "ETHERNET",
+    "sid": "GA-01236",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SCION"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/3/3.1620"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae19.1620"
+      }
+    ],
+    "imsid": 736658,
+    "monitored": false,
+    "name": "PAR-PAR-SCION-INTERNET2-SCION-1",
+    "scid": "edde8f29-8902-4910-bccf-52d81a89baa7",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02295",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "INTERNET2"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae28.220"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae19.220"
+      }
+    ],
+    "imsid": 736663,
+    "monitored": true,
+    "name": "LON-PAR-GEANTOPEN-INTERNET2-TENET-19004",
+    "scid": "ee2e0498-e64a-4289-9ca6-6e707f54b488",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00970",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "MREN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.zag.hr.geant.net",
+        "interface": "lag-24"
+      }
+    ],
+    "imsid": 747895,
+    "monitored": true,
+    "name": "MREN-AP1-LAG",
+    "scid": "ee59a434-203c-43af-ab5b-88a4d1c4bb50",
+    "service_type": "ETHERNET",
+    "sid": "GA-01903",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GARR"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.221/30",
+          "2001:798:1::51/126"
+        ],
+        "hostname": "rt1.mil2.it.geant.net",
+        "interface": "ae10.333"
+      }
+    ],
+    "imsid": 660627,
+    "monitored": true,
+    "name": "GARR-AP1-IAS",
+    "scid": "ee6136a1-4415-41bd-ae41-74c310d61fdb",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00570",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "10.0.0.29/30"
+        ],
+        "hostname": "mx1.mil2.it.geant.net",
+        "interface": "xe-1/1/1.1003"
+      }
+    ],
+    "imsid": 661507,
+    "monitored": true,
+    "name": "JRA1-SDN-BOD-PILOT-BR53-VLAN1003",
+    "scid": "ee6786c2-3c76-45b2-8ca2-a3f6efd99b48",
+    "service_type": "L3-VPN",
+    "sid": "GS-00981",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.lon2.uk.geant.net",
+        "interface": "lag-2"
+      }
+    ],
+    "imsid": 738840,
+    "monitored": true,
+    "name": "LON-LON2-1.6T-LAG",
+    "scid": "ee8e9d0e-867a-46a1-8d49-901875729caa",
+    "service_type": "ETHERNET",
+    "sid": "GA-01761",
+    "speed": 1717986918400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [],
+    "imsid": 719305,
+    "monitored": false,
+    "name": "BELNET-GCLOUD-EXPRESSROUTE-VLAN4085",
+    "scid": "eeb38b33-2643-4eb4-a2a6-8b473ea3248b",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02151",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663065,
+    "monitored": false,
+    "name": "AMS-GROOVE-3-MANAGEMENT",
+    "scid": "eee69d9c-81e8-47ac-8792-524aa7bdfcef",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00096",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/2/4"
+      }
+    ],
+    "imsid": 721149,
+    "monitored": true,
+    "name": "PARIS 007B-PARIS 007B-10GBE-006(GEANT)",
+    "scid": "eefb6b1a-1428-4fe1-ab88-eb12ef559d40",
+    "service_type": "ETHERNET",
+    "sid": "GA-02193",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 728003,
+    "monitored": true,
+    "name": "AMS-PSMP-PS MGMT(GEANT)",
+    "scid": "ef097f6d-a480-4927-941a-bf49f401a659",
+    "service_type": "ETHERNET",
+    "sid": "GA-01636",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663059,
+    "monitored": false,
+    "name": "GEN-GROOVE-1-MANAGEMENT",
+    "scid": "ef17bd63-c7fc-4275-aef7-e642df962319",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00182",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "MAEEN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-4/1/4.102"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae27.102"
+      }
+    ],
+    "imsid": 738639,
+    "monitored": true,
+    "name": "LON-LON-GEANTOPEN-MAEEN-ESNET-22004",
+    "scid": "ef3258fd-4a9c-4db3-beab-48034d35a97f",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00464",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 712094,
+    "monitored": false,
+    "name": "HA-CB4088D78D",
+    "scid": "ef39e537-5d73-4817-80c5-ba1f9c73f204",
+    "service_type": "GTS",
+    "sid": "GS-01177",
+    "speed": 21474836480,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662225,
+    "monitored": true,
+    "name": "HAMBURG-HAMBURG-1GBE-016(ETH)",
+    "scid": "ef5c8515-a906-4326-8da2-5eb23d437008",
+    "service_type": "ETHERNET",
+    "sid": "GA-01643",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "DE-AWS-CLS",
+    "scid": "ef620fee-3e6f-4062-b8ba-738acdbf7392",
+    "service_type": null,
+    "sid": "GS-00602",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-1/0/26"
+      }
+    ],
+    "imsid": 658456,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-011(ETH)",
+    "scid": "ef6d0b4e-63ab-4246-8bce-77c3e112a557",
+    "service_type": "ETHERNET",
+    "sid": "GA-01222",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708735,
+    "monitored": false,
+    "name": "ATH2-VIE-IPTRUNK",
+    "scid": "ef7365c0-3e14-46bb-8e0a-fed30dfb6426",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00015",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "SANET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.237/30",
+          "2001:798:1::ad/126"
+        ],
+        "hostname": "rt1.bra.sk.geant.net",
+        "interface": "ae13.421"
+      }
+    ],
+    "imsid": 718909,
+    "monitored": true,
+    "name": "SANET-AP1-IAS",
+    "scid": "ef9fffda-6c0e-4b59-9086-62bc5c023df8",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00546",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 707589,
+    "monitored": false,
+    "name": "EUMETSAT-GRE-CMA2",
+    "scid": "efa22c49-0fa4-4394-8a54-7471c22149a8",
+    "service_type": "EUMETSAT GRE",
+    "sid": "GS-01074",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "JISC"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae10.0 - eumet"
+      }
+    ],
+    "imsid": 709757,
+    "monitored": true,
+    "name": "JISC EUMETCAST AP1",
+    "scid": "efb5cee1-d7e4-489d-9f8e-870d522d7954",
+    "service_type": "EUMETSAT TERRESTRIAL",
+    "sid": "GS-01109",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "IUCC"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.100.12/31",
+          "2001:798::15/126"
+        ],
+        "hostname": "mx1.fra.de.geant.net",
+        "interface": "ae21.667"
+      }
+    ],
+    "imsid": 662953,
+    "monitored": false,
+    "name": "IUCC-AP2-CLS",
+    "scid": "efbadb93-1bd2-44b1-901c-42276f988f1c",
+    "service_type": "GEANT CLOUD PEERING",
+    "sid": "GS-00611",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "VERIZON"
+    ],
+    "endpoints": [],
+    "imsid": 673552,
+    "monitored": true,
+    "name": "VIENNA-VERIZON-1-LAG",
+    "scid": "efcd918e-a187-4b16-aeaa-895deddf9904",
+    "service_type": "ETHERNET",
+    "sid": "GA-01851",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "AARNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "138.44.226.17/31",
+          "2001:0388:cf7f:0004::1/127"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-2/0/5.2103"
+      }
+    ],
+    "imsid": 709697,
+    "monitored": false,
+    "name": "UK-AARNET-AER",
+    "scid": "efd624af-131e-4757-9c38-7690a2df7219",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00905",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "ham-pra-WP6-GTS-21010",
+    "scid": "eff72a03-7f7c-4c46-a733-942098524fe0",
+    "service_type": null,
+    "sid": "DS-53421",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "URAN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.46/31",
+          "2001:798:1::211/126"
+        ],
+        "hostname": "rt2.kie.ua.geant.net",
+        "interface": "ae10.333"
+      }
+    ],
+    "imsid": 714004,
+    "monitored": true,
+    "name": "URAN-AP2-IAS",
+    "scid": "f0119914-5aac-454f-9958-22213fb635c5",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00594",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SINET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "150.99.188.202/30",
+          "2001:2f8:1:ff::12/126"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae15.207"
+      }
+    ],
+    "imsid": 661583,
+    "monitored": true,
+    "name": "FR-SINET",
+    "scid": "f02ffb81-3020-4fa1-a96f-390ea23feb5c",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00885",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-2"
+      }
+    ],
+    "imsid": 744013,
+    "monitored": true,
+    "name": "BRU-PAR-LAG",
+    "scid": "f038ad2a-c095-4cc7-b98d-c6e86822fc87",
+    "service_type": "ETHERNET",
+    "sid": "GA-02278",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662984,
+    "monitored": false,
+    "name": "PS-FRA-DE-PSMP2-OWAMP",
+    "scid": "f03d2944-b17f-4dec-abdc-b2f000252b73",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00303",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.19"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28.4060"
+      }
+    ],
+    "imsid": 739667,
+    "monitored": true,
+    "name": "BELNET-STAD-EXPRESSROUTE-VLAN4060",
+    "scid": "f0642514-1e8d-4243-927f-115a3f08482b",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02246",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708250,
+    "monitored": false,
+    "name": "NETMON-FRA-DE",
+    "scid": "f06ad980-cb53-4847-a657-3571a887d8f4",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00258",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "HEANET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.125/30",
+          "2001:798:28:20aa::1/126"
+        ],
+        "hostname": "rt0.dub.ie.geant.net",
+        "interface": "lag-20.12"
+      }
+    ],
+    "imsid": 747282,
+    "monitored": true,
+    "name": "HEANET-AP1",
+    "scid": "f07ec522-739d-4ddd-a06d-a8f1e205273f",
+    "service_type": "GEANT IP",
+    "sid": "GS-00473",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 673550,
+    "monitored": true,
+    "name": "FRANKFURT-FRANKFURT-10GBE-097(GEANT)",
+    "scid": "f08db4ba-17a0-490f-aa9d-949cbf4b5f46",
+    "service_type": "ETHERNET",
+    "sid": "GA-02131",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.254/31",
+          "2001:798:cc:1::111/126"
+        ],
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-1.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.255/31",
+          "2001:798:cc:1::112/126"
+        ],
+        "hostname": "rt0.tar.ee.geant.net",
+        "interface": "lag-2.0"
+      }
+    ],
+    "imsid": 746460,
+    "monitored": true,
+    "name": "HAM-TAR-IPTRUNK",
+    "scid": "f0af1eae-65d1-4d6e-b8da-c758c0ee84e2",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02348",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.89.9/30",
+          "2001:798:1::10d/126"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae12.333"
+      }
+    ],
+    "imsid": 661239,
+    "monitored": true,
+    "name": "RENATER-AP1-IAS",
+    "scid": "f0b9d099-3730-4a91-a0be-26173d5300b1",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00583",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.48/31",
+          "2001:798:cc:1::15/126"
+        ],
+        "hostname": "rt0.lju.si.geant.net",
+        "interface": "lag-3.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.49/31",
+          "2001:798:cc:1::16/126"
+        ],
+        "hostname": "rt0.zag.hr.geant.net",
+        "interface": "lag-4.0"
+      }
+    ],
+    "imsid": 747865,
+    "monitored": true,
+    "name": "LJU-ZAG-IPTRUNK",
+    "scid": "f0c12044-1853-4385-bfb4-d19c274bb1ff",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02372",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [],
+    "imsid": 659041,
+    "monitored": true,
+    "name": "PRAGUE-PRAGUE-1GBE-011(ETH)",
+    "scid": "f0c9b8fc-05d2-4224-b54f-359153521257",
+    "service_type": "ETHERNET",
+    "sid": "GA-01438",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT-IT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-0/3/0"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "xe-0/2/0"
+      }
+    ],
+    "imsid": 739656,
+    "monitored": false,
+    "name": "AMSTERDAM-FRANKFURT 15-ETHS-003(GEANT-IT)",
+    "scid": "f0ea36c3-7971-4d61-a6fe-052f7604f4eb",
+    "service_type": "GEANT - GBS",
+    "sid": "GS-02555",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [
+      "CERN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.89.249/30",
+          "2001:798:1::1f5/126"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae22.334"
+      }
+    ],
+    "imsid": 701592,
+    "monitored": true,
+    "name": "CERN-AP1-EXT2-IAS",
+    "scid": "f12ed2bd-deb6-4ecc-8f23-7ecb437daaff",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00561",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CANARIE"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.3928"
+      }
+    ],
+    "imsid": 746471,
+    "monitored": true,
+    "name": "NL-CANARIE-VLAN3928",
+    "scid": "f130a216-d6ae-4681-bea4-accdd8a9c625",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-02646",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "EENET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.28/31",
+          "2001:798:111:1::bd/126"
+        ],
+        "hostname": "rt0.tar.ee.geant.net",
+        "interface": "lag-20.111"
+      }
+    ],
+    "imsid": 746449,
+    "monitored": true,
+    "name": "EENET-AP1-LHCONE",
+    "scid": "f15da16d-ef35-44a9-897d-0cad24d1001a",
+    "service_type": "L3-VPN",
+    "sid": "GS-00818",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae11"
+      }
+    ],
+    "imsid": 717033,
+    "monitored": true,
+    "name": "NL-ORACLEFC-LAG-2",
+    "scid": "f16a928a-98d9-48e4-81e3-9187fd4f77ff",
+    "service_type": "ETHERNET",
+    "sid": "GA-02035",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "INTERNET2"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PSMP-GN-DRAC-PAR-FR.GEANT.ORG",
+        "port": "10GE-2"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/2/7.903"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae15.903"
+      }
+    ],
+    "imsid": 705916,
+    "monitored": true,
+    "name": "PAR-PAR-MISC-GEANT-INTERNET2-9940539",
+    "scid": "f1aefbbb-364d-432f-99c8-3f4283f02a2d",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00747",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28.4074"
+      },
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.46"
+      },
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.45"
+      }
+    ],
+    "imsid": 747921,
+    "monitored": false,
+    "name": "MSECREDENDO-02655",
+    "scid": "f1afd29a-e811-40a2-a7aa-fcf5b9b42d22",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02655",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "DFN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.168/31",
+          "2001:798:111:1::35/126"
+        ],
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-20.111"
+      }
+    ],
+    "imsid": 745581,
+    "monitored": true,
+    "name": "DFN-AP2-LHCONE",
+    "scid": "f1c4b902-9034-4227-80a7-e84efefb5ed4",
+    "service_type": "L3-VPN",
+    "sid": "GS-00817",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5.1002"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae12.1002"
+      }
+    ],
+    "imsid": 705906,
+    "monitored": false,
+    "name": "LON-LON-GEANTOPEN-NORDUNET-TEIN-17026",
+    "scid": "f209045e-927f-41f9-a227-dca0c6a70dfc",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00977",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662983,
+    "monitored": false,
+    "name": "HADES-FRA-DE-DRAC",
+    "scid": "f20950ca-3c46-4a55-93fd-c73cc99457fa",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00193",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "REDCLARA"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.24/31",
+          "2001:798:99:1::45/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae28.2061"
+      }
+    ],
+    "imsid": 720021,
+    "monitored": true,
+    "name": "UK-REDCLARA",
+    "scid": "f2251c9b-6c06-4730-a366-580194782d92",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-02166",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.chi.md.geant.net",
+        "interface": "ae2"
+      }
+    ],
+    "imsid": 713246,
+    "monitored": true,
+    "name": "LAG-RT1.CHI.MD_AE2-SW1.CHI.MD_AE2",
+    "scid": "f228fab6-5e86-498b-bb6f-423a99012c00",
+    "service_type": "ETHERNET",
+    "sid": "GA-02017",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.bra.sk.geant.net",
+        "interface": "lag-2"
+      }
+    ],
+    "imsid": 742923,
+    "monitored": true,
+    "name": "BRA-BRA-MGMT-LAG",
+    "scid": "f22c031d-b72d-4a1b-8efc-b8a8c5447d32",
+    "service_type": "ETHERNET",
+    "sid": "GA-02601",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-0/0/47"
+      }
+    ],
+    "imsid": 658779,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-052(ETH)",
+    "scid": "f2351756-f873-418b-87dc-b00617db56c4",
+    "service_type": "ETHERNET",
+    "sid": "GA-01242",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "ae1"
+      }
+    ],
+    "imsid": 658656,
+    "monitored": false,
+    "name": "LON2-PRD-ESX01-ESXI-TRAFFIC",
+    "scid": "f24ed56e-40d7-4e52-950c-e87997f38af7",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01690",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CANARIE"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.124.241/30",
+          "2001:798:99:1::55/126"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae19.4050"
+      }
+    ],
+    "imsid": 736733,
+    "monitored": true,
+    "name": "FR-CANARIE-2",
+    "scid": "f262053e-6b35-4a7d-a601-4f74b453f8f7",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00913",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.AM.OFFICE",
+        "port": "GE-0/0/6"
+      }
+    ],
+    "imsid": 658389,
+    "monitored": true,
+    "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-006(ETH)",
+    "scid": "f2a8d7c7-de1d-4eca-876d-4869313b85d4",
+    "service_type": "ETHERNET",
+    "sid": "GA-01255",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.LIS.PT",
+        "port": "AE2"
+      }
+    ],
+    "imsid": 711783,
+    "monitored": true,
+    "name": "LAG-SW1.LIS.PT_AE2",
+    "scid": "f2ad9c81-56b1-4c7e-b3f6-fbd9554e2b83",
+    "service_type": "ETHERNET",
+    "sid": "GA-02059",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RASH"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.142/31",
+          "2001:798:99:1::129/126"
+        ],
+        "hostname": "rt1.mil2.it.geant.net",
+        "interface": "ae16.100"
+      }
+    ],
+    "imsid": 727800,
+    "monitored": true,
+    "name": "RASH-AP1-100G",
+    "scid": "f2c69e20-8d1a-4f06-a8a7-fb5c532f91d2",
+    "service_type": "GEANT IP",
+    "sid": "GS-02325",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SINET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.182/31",
+          "2001:798:99:1::b9/126"
+        ],
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae20.100"
+      }
+    ],
+    "imsid": 734867,
+    "monitored": true,
+    "name": "NL-SINET",
+    "scid": "f30044b6-7d96-45e1-a3c8-ed91badcf8a6",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00901",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [],
+    "imsid": 662274,
+    "monitored": true,
+    "name": "HAMBURG-HAMBURG-10GBE-005(GEANT)",
+    "scid": "f3044a88-f150-4a1f-817e-e03a3652c462",
+    "service_type": "ETHERNET",
+    "sid": "GA-01552",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "ae31"
+      }
+    ],
+    "imsid": 659382,
+    "monitored": true,
+    "name": "LAG-MX1.LON2.UK_AE16",
+    "scid": "f34249c0-f1d0-44dc-9a1c-39ff73a9de14",
+    "service_type": "ETHERNET",
+    "sid": "GA-01710",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.91/31",
+          "2001:798:cc::96/126"
+        ],
+        "hostname": "rt0.mad.es.geant.net",
+        "interface": "lag-1.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.90/31",
+          "2001:798:cc::95/126"
+        ],
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae1.0"
+      }
+    ],
+    "imsid": 742615,
+    "monitored": true,
+    "name": "MAD-MAD-IPTRUNK",
+    "scid": "f35011c1-e830-4a04-9146-734c49f1167b",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02593",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.sof.bg.geant.net",
+        "interface": "lag-4"
+      }
+    ],
+    "imsid": 745264,
+    "monitored": true,
+    "name": "SOF-THE-LAG",
+    "scid": "f3adaf16-f049-40aa-9bd0-26c54b3c7334",
+    "service_type": "ETHERNET",
+    "sid": "GA-02425",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "srx2.ch.office.geant.net",
+        "interface": "ge-0/0/3"
+      }
+    ],
+    "imsid": 662524,
+    "monitored": true,
+    "name": "SRX-2 TO SWITCH CLUSTER GE-2/0/0",
+    "scid": "f3cb4467-e5e6-4dc8-aa4d-04f6535900c6",
+    "service_type": "ETHERNET",
+    "sid": "GA-00707",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 659079,
+    "monitored": true,
+    "name": "TALLINN-TALLINN-10GBE-019(ETH)",
+    "scid": "f3e49f30-f834-4c48-aee3-769bb2ce488d",
+    "service_type": "ETHERNET",
+    "sid": "GA-01497",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 745424,
+    "monitored": true,
+    "name": "ATHENS 2-ATHENS 2-LAG-005(GEANT)",
+    "scid": "f4187418-393d-4d31-9a1c-c0b40b67f679",
+    "service_type": "ETHERNET",
+    "sid": "GA-01931",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae45"
+      }
+    ],
+    "imsid": 730219,
+    "monitored": true,
+    "name": "FR-APPLE-LAG",
+    "scid": "f425bf68-5c6f-453c-9566-767b640d8b95",
+    "service_type": "ETHERNET",
+    "sid": "GA-02396",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "AMRES"
+    ],
+    "endpoints": [],
+    "imsid": 712405,
+    "monitored": false,
+    "name": "MD-VPN-VRR-PARIS-AMRES-RS",
+    "scid": "f4373516-73ad-48a0-a0ca-c545d7d9d796",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01032",
+    "speed": 32212254720,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 744407,
+    "monitored": true,
+    "name": "ZAG-ZAG-MGMT-LAG",
+    "scid": "f464a3d1-e7d6-4fc5-bb73-182c7103d37c",
+    "service_type": "ETHERNET",
+    "sid": "GA-50046",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.par.fr.geant.net",
+        "interface": "lag-8"
+      }
+    ],
+    "imsid": 739434,
+    "monitored": true,
+    "name": "LON2-PAR-1.6T-LAG",
+    "scid": "f46b8482-e0b5-4471-a75f-6e673d0358a8",
+    "service_type": "ETHERNET",
+    "sid": "GA-01824",
+    "speed": 1717986918400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "FCCN"
+    ],
+    "endpoints": [],
+    "imsid": 661908,
+    "monitored": true,
+    "name": "FCCN-BGP-LU-COC-AP1",
+    "scid": "f46ca543-c625-4ca2-826b-d087b44504d2",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01003",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "AMRES"
+    ],
+    "endpoints": [],
+    "imsid": 732622,
+    "monitored": true,
+    "name": "AMRES-AP2-BGP-LU-COC",
+    "scid": "f4e0ef73-b842-45c6-8b05-1e2f01ebe9e6",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-02242",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.77/30",
+          "2001:798:14:10aa::19/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae26.203"
+      }
+    ],
+    "imsid": 661433,
+    "monitored": true,
+    "name": "UK-ESNET-NEA3R-203",
+    "scid": "f4f539f7-2b9d-4c15-acb0-b7d24a39b815",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00918",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SWITCH"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PF1-RARE.FRA.DE.GEANT.NET",
+        "port": "XE-2"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-0/0/2.559"
+      },
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae23.559"
+      }
+    ],
+    "imsid": 709921,
+    "monitored": false,
+    "name": "FRA-GEN-SWITCH-RARE-21035",
+    "scid": "f51f1151-fc6e-40e9-8929-fd889b36dde7",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00700",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.89.221/30",
+          "2001:798:1::1c1/126"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28.333"
+      }
+    ],
+    "imsid": 739626,
+    "monitored": true,
+    "name": "BELNET-AP2-IAS",
+    "scid": "f54aa0dc-def2-48a6-b0cc-8a9c4d9cebac",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00523",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "IUCC"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae21"
+      }
+    ],
+    "imsid": 730575,
+    "monitored": true,
+    "name": "IUCC-AP1-LAG",
+    "scid": "f56b5af4-866d-478e-a73f-178314524ae6",
+    "service_type": "ETHERNET",
+    "sid": "GA-01831",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "T-SYSTEMS"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "80.158.74.247/31"
+        ],
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae21.4001"
+      }
+    ],
+    "imsid": 727982,
+    "monitored": true,
+    "name": "DE-T-SYSTEMS-IAS",
+    "scid": "f573c67a-ee66-43cc-b7f5-60c3ae4a4658",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-02273",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SINET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae15.3901"
+      },
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae17.3901"
+      }
+    ],
+    "imsid": 706599,
+    "monitored": true,
+    "name": "PAR-PAR-GEANTOPEN-SINET-SINET-19033",
+    "scid": "f5ab9f38-4e28-4211-b171-8273576fd4e7",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00987",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661506,
+    "monitored": false,
+    "name": "PAR-GROOVE-1-MANAGEMENT",
+    "scid": "f5b6db7d-9e5b-4e31-99fd-de95766d5898",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00273",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.14/31",
+          "2001:798:cc::9/126"
+        ],
+        "hostname": "rt1.buc.ro.geant.net",
+        "interface": "ae3.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.15/31",
+          "2001:798:cc::a/126"
+        ],
+        "hostname": "rt0.sof.bg.geant.net",
+        "interface": "lag-5.0"
+      }
+    ],
+    "imsid": 744991,
+    "monitored": true,
+    "name": "BUC-SOF-IPTRUNK",
+    "scid": "f5bba7dc-072b-46df-ace7-1b04840dd749",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00024",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SURF"
+    ],
+    "endpoints": [],
+    "imsid": 715093,
+    "monitored": true,
+    "name": "SURF-AMS-LON1-SPECTRUM SERVICE 2",
+    "scid": "f5d5d74e-33a4-4dcd-bfa5-0b4172fec9b5",
+    "service_type": "GEANT SPECTRUM SERVICE",
+    "sid": "GS-00072",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 718618,
+    "monitored": true,
+    "name": "GEN1-MIL2-IPTRUNK-GN43N",
+    "scid": "f5e2d713-3ba0-4f04-bd6f-bc5b4d77f9b3",
+    "service_type": "IP TRUNK",
+    "sid": "GS-01184",
+    "speed": 322122547200,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "xe-3/0/1"
+      }
+    ],
+    "imsid": 662343,
+    "monitored": true,
+    "name": "RARE EDGECORE WEDGE100BF-32X XE-1",
+    "scid": "f5ef2dd1-3afb-47a4-bd3a-44d84298df21",
+    "service_type": "ETHERNET",
+    "sid": "GA-02127",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "LITNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.97/30",
+          "2001:798:1::79/126"
+        ],
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "ae10.333"
+      }
+    ],
+    "imsid": 745338,
+    "monitored": true,
+    "name": "LITNET-AP2-IAS",
+    "scid": "f5fdfd1e-565f-459a-a594-1984940278d0",
+    "service_type": "GWS - INDIRECT",
+    "sid": "GS-00535",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "MICROSOFT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.ham.de.geant.net",
+        "interface": "lag-21:3907"
+      }
+    ],
+    "imsid": 747630,
+    "monitored": true,
+    "name": "AMS-HAM-MSE-01149",
+    "scid": "f6173209-5041-4a7a-9a7e-2b40155b5aa5",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-01149",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663111,
+    "monitored": false,
+    "name": "DNA-FRA-DE-ESXI",
+    "scid": "f6218c06-75b0-404f-bdec-4325f4b27bfa",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00135",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 743601,
+    "monitored": true,
+    "name": "SOF-SOF-MGMT-LAG",
+    "scid": "f6316502-c558-479a-acbc-6d9ca6e004bd",
+    "service_type": "ETHERNET",
+    "sid": "GA-50011",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae2"
+      }
+    ],
+    "imsid": 736042,
+    "monitored": true,
+    "name": "RT1.AMS-SW3.AMS-LAG",
+    "scid": "f658994d-83be-4666-90c2-3e3eb2b75bc5",
+    "service_type": "ETHERNET",
+    "sid": "GA-02076",
+    "speed": 42949672960,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "AMRES"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.sof.bg.geant.net",
+        "interface": "lag-21"
+      }
+    ],
+    "imsid": 744885,
+    "monitored": true,
+    "name": "AMRES-AP2-LAG",
+    "scid": "f66c70fe-969b-4c98-b9b7-6f065b169c05",
+    "service_type": "ETHERNET",
+    "sid": "GA-02239",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ESNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-3/0/4"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae30"
+      }
+    ],
+    "imsid": 733831,
+    "monitored": true,
+    "name": "NL-ESNET-400G-LL-1",
+    "scid": "f672dea8-743e-47c9-a43c-92be651d92d4",
+    "service_type": "ETHERNET",
+    "sid": "GA-01594",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NIKS"
+    ],
+    "endpoints": [],
+    "imsid": 662398,
+    "monitored": true,
+    "name": "NL-NIKS-LL1",
+    "scid": "f67a47c2-15bb-42f3-b960-9f0f513e0d34",
+    "service_type": "ETHERNET",
+    "sid": "GA-01595",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661966,
+    "monitored": false,
+    "name": "EXFO-MANAGEMENT-VLAN11",
+    "scid": "f67ded67-eeec-4523-b72d-5675b90a21a8",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00160",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [],
+    "imsid": 712390,
+    "monitored": false,
+    "name": "MD-VPN-VRR-PARIS-FUNET-1-FI",
+    "scid": "f6a29eac-c560-4152-9875-763df6dfd1ce",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01040",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/2/6"
+      }
+    ],
+    "imsid": 658758,
+    "monitored": true,
+    "name": "LONDON-LONDON-10GBE-001(ETH)",
+    "scid": "f6a996f9-d35a-460e-8903-a27a8378f015",
+    "service_type": "ETHERNET",
+    "sid": "GA-01456",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "KIFU"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.48/31",
+          "2001:798:111:1::49/126"
+        ],
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae18.111"
+      }
+    ],
+    "imsid": 734866,
+    "monitored": true,
+    "name": "KIFU-AP2-LHCONE",
+    "scid": "f6bcb143-6e53-4a71-bd87-e3e73ad062cd",
+    "service_type": "L3-VPN",
+    "sid": "GS-02283",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.bud.hu.geant.net",
+        "interface": "lag-2"
+      }
+    ],
+    "imsid": 742922,
+    "monitored": true,
+    "name": "BUD-BUD-LAG",
+    "scid": "f6cf441f-e381-4b14-a29e-fedc8bb4c241",
+    "service_type": "ETHERNET",
+    "sid": "GA-02595",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.par.fr.geant.net",
+        "interface": "ae13"
+      }
+    ],
+    "imsid": 729696,
+    "monitored": true,
+    "name": "PARIS 007B-PARIS 007B-LAG-005(GEANT)",
+    "scid": "f6df960c-f512-48ca-a4e1-bf5834c3f821",
+    "service_type": "ETHERNET",
+    "sid": "GA-01727",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SURFNET"
+    ],
+    "endpoints": [],
+    "imsid": 709647,
+    "monitored": false,
+    "name": "SURFNET-GN-PRACE-VPN-PROXY-AMSTERDAM-L3VPN",
+    "scid": "f7113599-a010-4b4b-9580-17716f5def50",
+    "service_type": "MD-VPN (PROXY)",
+    "sid": "GS-01070",
+    "speed": 214748364800,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.fra.de.geant.net",
+        "interface": "ae0.0"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae30.3005"
+      }
+    ],
+    "imsid": 733914,
+    "monitored": false,
+    "name": "RARE-GATEWAY",
+    "scid": "f7157a4c-d22a-43a8-adda-2230523e86ed",
+    "service_type": "L2SERVICES",
+    "sid": "GS-00770",
+    "speed": 0,
+    "status": "planned"
+  },
+  {
+    "customers": [
+      "EENET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.30/31",
+          "2001:798:111:1::c5/126"
+        ],
+        "hostname": "rt0.rig.lv.geant.net",
+        "interface": "lag-21.111"
+      }
+    ],
+    "imsid": 745973,
+    "monitored": true,
+    "name": "EENET-AP2-LHCONE",
+    "scid": "f7548313-efaf-4a72-96f5-9c6db0e697be",
+    "service_type": "L3-VPN",
+    "sid": "GS-00819",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "INTERNET2"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.17/30",
+          "2001:798:14:10aa::11/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae26.202"
+      }
+    ],
+    "imsid": 709338,
+    "monitored": true,
+    "name": "UK-INTERNET2-NEA3R-202",
+    "scid": "f78c3575-5951-4190-bdf2-53d35c1542de",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00919",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "ams-par_DREAMER_GTS-Internet2_15027",
+    "scid": "f793fb9a-800d-4c94-a3fb-69dd947595c9",
+    "service_type": null,
+    "sid": "DS-28754",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "ae7"
+      }
+    ],
+    "imsid": 658524,
+    "monitored": false,
+    "name": "LON2-PRD-ESX11-ESXI-TRAFFIC",
+    "scid": "f7adf2fc-4f30-4f4e-a4d2-9fcf609bdb4d",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01694",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CESNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.88.37/30",
+          "2001:798:1::29/126"
+        ],
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae23.333"
+      }
+    ],
+    "imsid": 731675,
+    "monitored": true,
+    "name": "CESNET-AP2-IAS",
+    "scid": "f8167375-b1b3-4abe-ac48-c53a833ad881",
+    "service_type": "GEANT PEERING",
+    "sid": "GS-00564",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NKN"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.214/31",
+          "2001:798:99:1::c1/126"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae20.100"
+      }
+    ],
+    "imsid": 678060,
+    "monitored": true,
+    "name": "CH-NKN",
+    "scid": "f8277d8d-67be-4ce4-bc17-66f4696beb57",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-00874",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 707210,
+    "monitored": false,
+    "name": "FRA-GROOVE",
+    "scid": "f82f76ea-bd89-4414-9745-7314d6ad5426",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00171",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.40"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28.4071"
+      }
+    ],
+    "imsid": 739671,
+    "monitored": true,
+    "name": "BELNET-FEDPOL-EXPRESSROUTE-VLAN4071",
+    "scid": "f83d6d92-aad8-4eb9-85e2-f9aaddf96225",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02525",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-1/0/1"
+      }
+    ],
+    "imsid": 658589,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-036(ETH)",
+    "scid": "f846cb8e-2491-481e-9ed9-c556e0cc97c6",
+    "service_type": "ETHERNET",
+    "sid": "GA-01237",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [],
+    "imsid": 712410,
+    "monitored": true,
+    "name": "MD-VPN-VRR-LJUBLJANA-NORDUNET-1-DK",
+    "scid": "f8472840-1e5a-47f2-9b1f-b823798f3167",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01026",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "172.18.16.254/24"
+        ],
+        "hostname": "rt2.chi.md.geant.net",
+        "interface": "ae2.103"
+      }
+    ],
+    "imsid": 715035,
+    "monitored": false,
+    "name": "DCN-MANAGEMENT-CHI2-MD",
+    "scid": "f8930a4b-cca7-48f7-8274-0370f769561c",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00128",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658845,
+    "monitored": true,
+    "name": "LISBON-LISBON-10GBE-010(ETH)",
+    "scid": "f8a0ed9c-4adf-40e0-8f5e-87a6e2b39c5f",
+    "service_type": "ETHERNET",
+    "sid": "GA-01357",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 721148,
+    "monitored": true,
+    "name": "PARIS 007B-PARIS 007B-10GBE-005(GEANT)",
+    "scid": "f8d853f3-e786-4ad7-adf5-573e83d3716c",
+    "service_type": "ETHERNET",
+    "sid": "GA-01387",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "Used for SINET LHCONE LON2 L3VPN (33123)",
+    "scid": "f8d8cd0d-edac-4bb0-9cde-7e94c8eb06a8",
+    "service_type": null,
+    "sid": "DS-33109",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "ham-par_SCION_GTS-DFN_20021",
+    "scid": "f8d8d111-3315-4695-a32e-391cf459867b",
+    "service_type": null,
+    "sid": "DS-51513",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae40"
+      }
+    ],
+    "imsid": 731897,
+    "monitored": true,
+    "name": "ORACLE FASTCONNECT NREN-LAG",
+    "scid": "f8fc738e-c033-4a4a-b9c1-7c186e444416",
+    "service_type": "ETHERNET",
+    "sid": "GA-02011",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "REDCLARA"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.56/31",
+          "2001:798:111:1::f1/126"
+        ],
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae28.2062"
+      }
+    ],
+    "imsid": 720027,
+    "monitored": true,
+    "name": "REDCLARA-TENET-LON-LHCONE",
+    "scid": "f955b83c-c563-406a-9688-f5f230fa05b4",
+    "service_type": "L3-VPN",
+    "sid": "GS-02167",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GARR"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/2/5.25"
+      },
+      {
+        "hostname": "rt1.mil2.it.geant.net",
+        "interface": "ae10.25"
+      }
+    ],
+    "imsid": 705891,
+    "monitored": true,
+    "name": "LON-MIL2-ASI-BSC-TO-FUCINO-UBUNTUNET-GARR-20007",
+    "scid": "f956be7a-8206-49f9-ae4b-12e7a56f41db",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00735",
+    "speed": 332859965440,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "MAEEN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae27"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "ae27.1"
+      }
+    ],
+    "imsid": 713955,
+    "monitored": true,
+    "name": "MAEEN-UK-LAG",
+    "scid": "f95b2228-2df8-42c4-927f-3d022cc5b428",
+    "service_type": "ETHERNET",
+    "sid": "GA-02005",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "CERN_CERN_ExpressRoute_VLAN497_Backup",
+    "scid": "f95b8df0-63bf-46a5-b66f-39bf4bda15af",
+    "service_type": null,
+    "sid": "DS-53203",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "DFN"
+    ],
+    "endpoints": [
+      {
+        "equipment": "FRA01-GRV4",
+        "port": "1/1/3"
+      },
+      {
+        "equipment": "GEN01-GRV4",
+        "port": "1/1/3"
+      }
+    ],
+    "imsid": 707337,
+    "monitored": true,
+    "name": "FRA-GEN-LHCOPN-CERN-DFN-20107",
+    "scid": "f95c4467-e504-4af8-ba82-ddb3fb3609b0",
+    "service_type": "GEANT MANAGED WAVELENGTH SERVICE",
+    "sid": "GS-00792",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "SINGAREN"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/1/4"
+      },
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/1/4.1"
+      }
+    ],
+    "imsid": 659143,
+    "monitored": true,
+    "name": "SINGAREN-GEO-UK-1-LL",
+    "scid": "f961e496-923b-41cf-9f65-a42f2164aab6",
+    "service_type": "CBL1",
+    "sid": "GA-02230",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RARE"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PF1-RARE.AMS.NL.GEANT.NET",
+        "port": "XE-2"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.3068"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "xe-9/0/3.3068"
+      }
+    ],
+    "imsid": 736077,
+    "monitored": false,
+    "name": "AMS-AMS-RARE-CANARIE-21013",
+    "scid": "f975758c-15c1-4b81-800f-59e978831ea9",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00627",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 715104,
+    "monitored": true,
+    "name": "AMSTERDAM-AMSTERDAM-1GBE-005(ETH)",
+    "scid": "f983020b-e1eb-4638-a825-ddd7a10a4a62",
+    "service_type": "ETHERNET",
+    "sid": "GA-01588",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661998,
+    "monitored": false,
+    "name": "JUNOSSPACE-R720-VCENTRE-PAR-FR",
+    "scid": "f9a1b28a-c999-402d-ada1-bbed117e1035",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00216",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 745424,
+    "monitored": true,
+    "name": "ATHENS 2-ATHENS 2-LAG-005(GEANT)",
+    "scid": "f9cab4d4-1052-4f27-8b59-a79456744fd3",
+    "service_type": "ETHERNET",
+    "sid": "GA-01796",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.AM.OFFICE",
+        "port": "GE-0/0/5"
+      }
+    ],
+    "imsid": 658464,
+    "monitored": true,
+    "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-013(ETH)",
+    "scid": "f9f115e8-92b6-47b9-bdd6-db26f0cd6f99",
+    "service_type": "ETHERNET",
+    "sid": "GA-01256",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "EXOSCALE"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "83.97.90.16/31",
+          "2001:798:1::235/126"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae23.668"
+      }
+    ],
+    "imsid": 717332,
+    "monitored": false,
+    "name": "CH-EXOSCALE-IAS",
+    "scid": "f9fd088a-f1ee-4336-a3bf-f5247eb05541",
+    "service_type": "IP PEERING - NON R&E (PRIVATE)",
+    "sid": "GS-00601",
+    "speed": 429496729600,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GARR"
+    ],
+    "endpoints": [],
+    "imsid": 661246,
+    "monitored": true,
+    "name": "GARR-BGP-LU-COC-AP1",
+    "scid": "fa00a50f-d5e5-408e-a03e-6b080a591d4f",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01005",
+    "speed": 322122547200,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "ROEDUNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.36/31",
+          "2001:798:111:1::b5/126"
+        ],
+        "hostname": "mx1.vie.at.geant.net",
+        "interface": "ae21.111"
+      }
+    ],
+    "imsid": 679572,
+    "monitored": true,
+    "name": "ROEDUNET-AP2-LHCONE",
+    "scid": "fa298bd7-e2ae-42b2-82ad-866166619478",
+    "service_type": "L3-VPN",
+    "sid": "GS-00858",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [],
+    "imsid": 662208,
+    "monitored": true,
+    "name": "AMSTERDAM-AMSTERDAM-1GBE-044(ETH)",
+    "scid": "fa704539-9ba7-4eb9-9ac4-89b3563daf35",
+    "service_type": "ETHERNET",
+    "sid": "GA-01629",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.50/31",
+          "2001:798:cc::1d/126"
+        ],
+        "hostname": "rt0.poz.pl.geant.net",
+        "interface": "lag-7.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.51/31",
+          "2001:798:cc::1e/126"
+        ],
+        "hostname": "rt0.pra.cz.geant.net",
+        "interface": "lag-7.0"
+      }
+    ],
+    "imsid": 740495,
+    "monitored": true,
+    "name": "POZ-PRA-IPTRUNK",
+    "scid": "fa73a1c1-2042-4185-8cc2-0388a1244603",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02407",
+    "speed": 322122547200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708262,
+    "monitored": false,
+    "name": "LONDON-LONDON-ETHS-001(GEANT)",
+    "scid": "fa89a1ee-83a4-48db-a21d-fb90ea6ef27c",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00244",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 658957,
+    "monitored": true,
+    "name": "LONDON-LONDON-10GBE-018(ETH)",
+    "scid": "fad7259f-b097-45f0-adb6-3402b846fb31",
+    "service_type": "ETHERNET",
+    "sid": "GA-01455",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.lon2.uk.geant.net",
+        "interface": "xe-1/0/44"
+      }
+    ],
+    "imsid": 739583,
+    "monitored": true,
+    "name": "LONDON 2-LONDON 2-10GBE-040(GEANT)",
+    "scid": "fae175fc-efdf-48cc-876f-c89628447334",
+    "service_type": "ETHERNET",
+    "sid": "GS-00077",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.41"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "pwe-124068"
+      },
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20:4067"
+      }
+    ],
+    "imsid": 744149,
+    "monitored": true,
+    "name": "MSEAZDELTA-02564",
+    "scid": "fb0adcdb-e6df-4798-a1f1-ab10afa6f4ee",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02564",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "qfx.fra.de.geant.net",
+        "interface": "ae12"
+      }
+    ],
+    "imsid": 658677,
+    "monitored": false,
+    "name": "FRANKFURT 15-FRANKFURT 15-LAG-061(GEANT)",
+    "scid": "fb1e4e6a-4d1e-4be3-b49c-91ab6dc05d9d",
+    "service_type": "POP LAN LINK",
+    "sid": "GA-01684",
+    "speed": 32212254720,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [],
+    "imsid": 663121,
+    "monitored": true,
+    "name": "RENATER-BGP-LU-COC-AP2",
+    "scid": "fb5e6f2f-9358-4936-bd55-e6ac62c2ab03",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01059",
+    "speed": 429496729600,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "xe-4/3/4"
+      }
+    ],
+    "imsid": 721147,
+    "monitored": true,
+    "name": "PARIS 007B-PARIS 007B-10GBE-004(GEANT)",
+    "scid": "fb84c1c2-2f52-4339-ae9e-6f59f303d44a",
+    "service_type": "ETHERNET",
+    "sid": "GA-02194",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/3/1"
+      }
+    ],
+    "imsid": 662848,
+    "monitored": true,
+    "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-078(GEANT)",
+    "scid": "fb90570a-c35c-40e7-bf39-d45377bd9a6d",
+    "service_type": "ETHERNET",
+    "sid": "GA-01653",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "MARNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.253/30",
+          "2001:798:2c:10aa::15/126"
+        ],
+        "hostname": "rt0.zag.hr.geant.net",
+        "interface": "lag-23.100"
+      }
+    ],
+    "imsid": 747954,
+    "monitored": true,
+    "name": "MARNET-AP2",
+    "scid": "fba33f59-fd72-4fad-8734-797026a568d0",
+    "service_type": "GEANT IP",
+    "sid": "GS-00490",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "RENATER"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae15.3151"
+      },
+      {
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae14.3151"
+      }
+    ],
+    "imsid": 705429,
+    "monitored": true,
+    "name": "AMS-GEN-GRID5000-RENATER-SINET-07201",
+    "scid": "fba9ffd7-382b-4ac3-9e3c-c44e59b18805",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00636",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "KIFU"
+    ],
+    "endpoints": [
+      {
+        "equipment": "PF1-RARE.BUD.HU.GEANT.NET",
+        "port": "XE-2"
+      },
+      {
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "xe-3/0/2.1955"
+      },
+      {
+        "hostname": "mx1.bud.hu.geant.net",
+        "interface": "ae10.1955"
+      }
+    ],
+    "imsid": 705914,
+    "monitored": false,
+    "name": "BUD-BUD-KIFU-RARE-200100",
+    "scid": "fbb8850e-c1b3-433a-b50f-85e92231a8cb",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00683",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5.2031"
+      },
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-4/1/4.2031"
+      }
+    ],
+    "imsid": 738641,
+    "monitored": true,
+    "name": "LON-LON-GEANTOPEN-ESNET-NORDUNET-15039-3",
+    "scid": "fbe0e8a2-4c98-4fd3-b812-b16d82d5edc1",
+    "service_type": "GEANT OPEN CROSS CONNECT",
+    "sid": "GS-00965",
+    "speed": 536870912000,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [],
+    "imsid": 661351,
+    "monitored": true,
+    "name": "NORDUNET-BGP-LU-COC-AP1",
+    "scid": "fbe17888-ba10-47ce-919c-61d0b6db35af",
+    "service_type": "MD-VPN (NATIVE)",
+    "sid": "GS-01053",
+    "speed": 107374182400,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.98.74/31",
+          "2001:798:cc::75/126"
+        ],
+        "hostname": "mx1.par.fr.geant.net",
+        "interface": "ae3.0"
+      },
+      {
+        "addresses": [
+          "62.40.98.75/31",
+          "2001:798:cc::76/126"
+        ],
+        "hostname": "rt0.par.fr.geant.net",
+        "interface": "lag-1.0"
+      }
+    ],
+    "imsid": 739437,
+    "monitored": true,
+    "name": "PAR-PAR-IPTRUNK",
+    "scid": "fbf3cb93-ffa0-4e71-8ac2-d5a16b1637a5",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02473",
+    "speed": 858993459200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "TS1.PAR.FR",
+        "port": "GI0/0"
+      }
+    ],
+    "imsid": 677775,
+    "monitored": false,
+    "name": "PAR OOB LINK",
+    "scid": "fc073c13-beda-4163-ae88-6ca6ce000679",
+    "service_type": "OOB IP LINK",
+    "sid": "GS-00411",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.mad.es.geant.net",
+        "interface": "ae20"
+      }
+    ],
+    "imsid": 738697,
+    "monitored": true,
+    "name": "ES-MICROSOFT-EXPRESSROUTE-LAG#2",
+    "scid": "fc0eb57c-f68e-4db2-9e65-1450e5ac6861",
+    "service_type": "ETHERNET",
+    "sid": "GA-02523",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GTS"
+    ],
+    "endpoints": [],
+    "imsid": 662270,
+    "monitored": true,
+    "name": "HAMBURG-HAMBURG-10GBE-004(GEANT)",
+    "scid": "fc1122bf-8295-4d75-9947-ebc9a441e334",
+    "service_type": "ETHERNET",
+    "sid": "GA-01562",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "CSTNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "et-1/1/5.1008"
+      }
+    ],
+    "imsid": 734555,
+    "monitored": true,
+    "name": "NL-NETHERLIGHT-CSTNET-KAUST-1",
+    "scid": "fc51252b-8ae5-4926-83a4-adbf8886b079",
+    "service_type": "IP PEERING - R&E",
+    "sid": "GS-02392",
+    "speed": 214748364800,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "mx1.fra.de - DE-DK Multicast Traffic",
+    "scid": "fc70cf3c-6f79-4178-87a3-f68672a7f3fd",
+    "service_type": null,
+    "sid": "DS-04996",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.34"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "ae28.4069"
+      }
+    ],
+    "imsid": 739661,
+    "monitored": true,
+    "name": "BELNET-RIZIV-INAMI-EXPRESSROUTE-VLAN4069",
+    "scid": "fc785c6a-395a-4474-800f-ee4436d29406",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02521",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 708746,
+    "monitored": false,
+    "name": "SOF-VIE-IPTRUNK",
+    "scid": "fc7acd40-7b25-4ad0-9eb7-ac33495f228f",
+    "service_type": "IP TRUNK",
+    "sid": "GS-00063",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT-IT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/0/1"
+      },
+      {
+        "hostname": "mx1.lon2.uk.geant.net",
+        "interface": "xe-2/0/1.0"
+      },
+      {
+        "hostname": "qfx.fra.de.geant.net",
+        "interface": "xe-0/0/43"
+      },
+      {
+        "hostname": "rt1.fra.de.geant.net",
+        "interface": "xe-7/0/0.0"
+      }
+    ],
+    "imsid": 729416,
+    "monitored": true,
+    "name": "FRA-LON2-SUPERPOP-QFX-GEANT",
+    "scid": "fcad7d0f-ff49-4edb-a851-e2073420df99",
+    "service_type": "GEANT - GBS",
+    "sid": "GS-00076|GS00076",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "REDCLARA"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx2.lis.pt.geant.net",
+        "interface": "ae11"
+      }
+    ],
+    "imsid": 713834,
+    "monitored": true,
+    "name": "PT-REDCLARA-LAG",
+    "scid": "fcb0f98c-efec-48e7-9239-a2197356b4a1",
+    "service_type": "ETHERNET",
+    "sid": "GA-02075",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/0/6"
+      }
+    ],
+    "imsid": 658958,
+    "monitored": true,
+    "name": "LONDON-LONDON-10GBE-019(ETH)",
+    "scid": "fccd843e-0eb5-4282-aebb-7db32f4392be",
+    "service_type": "ETHERNET",
+    "sid": "GA-01451",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "EUMETSAT"
+    ],
+    "endpoints": [],
+    "imsid": 732671,
+    "monitored": false,
+    "name": "GRE-MULTICAST-TUNNEL-IAMS",
+    "scid": "fcde32c1-4ba0-406f-b38c-8417c6ee2a4b",
+    "service_type": "EUMETSAT GRE",
+    "sid": "GS-01078",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "BELNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.bru.be.geant.net",
+        "interface": "lag-20"
+      }
+    ],
+    "imsid": 744127,
+    "monitored": true,
+    "name": "BELNET-AP1-LAG",
+    "scid": "fd008ee8-98b3-452e-867d-843e2bc7c987",
+    "service_type": "ETHERNET",
+    "sid": "GA-01913",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 707586,
+    "monitored": false,
+    "name": "EX3400-MANAGEMENT-MIL2-IT",
+    "scid": "fd100cc6-9201-4989-b856-d7c72802c473",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00156",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "192.65.185.119/24",
+          "2001:7f8:1c:24a::51e5:1/64"
+        ],
+        "hostname": "mx1.gen.ch.geant.net",
+        "interface": "ae18.2001"
+      }
+    ],
+    "imsid": 663212,
+    "monitored": true,
+    "name": "IX-PEERINGS-IN-CIXP",
+    "scid": "fd261bd8-bb9c-40b8-85e1-e8678821917e",
+    "service_type": "IP PEERING - NON R&E (PUBLIC)",
+    "sid": "GS-00946",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 662268,
+    "monitored": true,
+    "name": "HAMBURG-HAMBURG-10GBE-003(GEANT)",
+    "scid": "fd2ad335-8f33-4783-8ca1-416b79a6a76a",
+    "service_type": "ETHERNET",
+    "sid": "GA-01560",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "RENAM"
+    ],
+    "endpoints": [],
+    "imsid": 662955,
+    "monitored": false,
+    "name": "RENAM-AP3-IAS",
+    "scid": "fdd0c385-543b-4a26-b839-c9d9c8c82860",
+    "service_type": "GWS - INDIRECT",
+    "sid": "GS-00543",
+    "speed": 42949672960,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "TS1.ZAG.HR.GEANT.NET(OPENGEAR)",
+        "port": "NET1"
+      }
+    ],
+    "imsid": 677809,
+    "monitored": false,
+    "name": "ZAG OOB LINK",
+    "scid": "fdf5582f-ea82-4b48-9fb5-f819c0027a19",
+    "service_type": "OOB IP LINK",
+    "sid": "GS-00420",
+    "speed": 1073741824,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.mar.fr.geant.net",
+        "interface": "ae5"
+      }
+    ],
+    "imsid": 742605,
+    "monitored": true,
+    "name": "MAR-MAR-MGMT-LAG",
+    "scid": "fe064cbb-2076-46d2-a7fa-d0a333af6d99",
+    "service_type": "ETHERNET",
+    "sid": "GA-02588",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "HEANET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.cor.ie.geant.net",
+        "interface": "lag-20"
+      }
+    ],
+    "imsid": 747405,
+    "monitored": true,
+    "name": "HEANET-AP2-LAG",
+    "scid": "fe0abcb1-3bcf-4d4d-9ef5-ecff0d4a9c05",
+    "service_type": "ETHERNET",
+    "sid": "GA-01889",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GRNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.bil.es.geant.net",
+        "interface": "ae15.952"
+      },
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "pwe-324046"
+      },
+      {
+        "hostname": "rt0.ath2.gr.geant.net",
+        "interface": "lag-20:714"
+      }
+    ],
+    "imsid": 745434,
+    "monitored": false,
+    "name": "SLCUTH-02499",
+    "scid": "fe65d966-d66e-4072-b3d0-ca80df00255a",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-02499",
+    "speed": 0,
+    "status": "installed"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "mar-par_I2CAT_RedIRIS-RedCLARA_12201",
+    "scid": "fe6bb3d8-2ee4-4ff6-a7c6-1eb8f16dc34f",
+    "service_type": null,
+    "sid": "DS-28728",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 739971,
+    "monitored": true,
+    "name": "HAM-HAM-IPTRUNK",
+    "scid": "fe78633e-4e41-4901-9bd4-5d01ad1605ee",
+    "service_type": "IP TRUNK",
+    "sid": "GS-02542",
+    "speed": 322122547200,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.par.fr.geant.net",
+        "interface": "lag-1"
+      }
+    ],
+    "imsid": 739435,
+    "monitored": true,
+    "name": "PAR-PAR-800G-LAG",
+    "scid": "fe9c7dfc-1ca4-4331-a87c-b56bf15ba48a",
+    "service_type": "ETHERNET",
+    "sid": "GA-02472",
+    "speed": 858993459200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "BASNET"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.81/30",
+          "2001:0798:23:10aa::d/126"
+        ],
+        "hostname": "mx1.poz.pl.geant.net",
+        "interface": "xe-1/0/0.100"
+      }
+    ],
+    "imsid": 661600,
+    "monitored": true,
+    "name": "BASNET-AP1",
+    "scid": "fec1613c-bb68-47b5-8e44-740ebeeadc45",
+    "service_type": "GEANT IP",
+    "sid": "GS-00434",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 663137,
+    "monitored": false,
+    "name": "PS-AMS-NL-MANAGEMENT-VLAN24",
+    "scid": "fed811dd-54fe-4084-9332-a032a604bf1e",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00288",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.chi.md.geant.net",
+        "interface": "ae3"
+      }
+    ],
+    "imsid": 713094,
+    "monitored": true,
+    "name": "CHI-KIE-LAG",
+    "scid": "fede0008-fb31-44e9-9121-180924c67589",
+    "service_type": "ETHERNET",
+    "sid": "GA-02040",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "ULAKBIM"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.126.50/31",
+          "2001:798:111:1::e5/126"
+        ],
+        "hostname": "rt0.the.gr.geant.net",
+        "interface": "lag-21.111"
+      }
+    ],
+    "imsid": 745294,
+    "monitored": true,
+    "name": "ULAKBIM-AP1-LHCONE",
+    "scid": "fefa7cc7-f886-4721-a2aa-18500bffb51a",
+    "service_type": "L3-VPN",
+    "sid": "GS-00868",
+    "speed": 0,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT_INTERNAL"
+    ],
+    "endpoints": [],
+    "imsid": 679232,
+    "monitored": true,
+    "name": "GEANT CORPORATE TO MX1.LON - VIA VODAFONE",
+    "scid": "fefb1ae2-554f-4147-84dc-c07d73082b5e",
+    "service_type": "ETHERNET",
+    "sid": "GA-01469",
+    "speed": 1073741824,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "JISC"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "xe-3/2/7.3004"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae15.3004"
+      }
+    ],
+    "imsid": 734615,
+    "monitored": true,
+    "name": "AMS-LON-EXPRES-NETHERLIGHT-JISC-18009",
+    "scid": "fefcc04b-862e-4552-9024-2aa6a13d4925",
+    "service_type": "GEANT PLUS",
+    "sid": "GS-00644",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.lon.uk.geant.net",
+        "interface": "lag-1"
+      }
+    ],
+    "imsid": 738584,
+    "monitored": true,
+    "name": "LON-LON-800G-LAG",
+    "scid": "ff161312-c6a3-462d-a201-b242cdca6b18",
+    "service_type": "ETHERNET",
+    "sid": "GA-02466",
+    "speed": 858993459200,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "equipment": "SW1.KIE.UA",
+        "port": "AE3"
+      }
+    ],
+    "imsid": 713307,
+    "monitored": true,
+    "name": "LAG-RT2.KIE.UA_AE2-SW1.KIE.UA_AE3",
+    "scid": "ff46c8cd-a2f9-48f7-9c70-226dd68e0768",
+    "service_type": "ETHERNET",
+    "sid": "GA-02058",
+    "speed": 10737418240,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "REDIRIS"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt2.ams.nl.geant.net",
+        "interface": "ae10.42"
+      },
+      {
+        "hostname": "rt1.bil.es.geant.net",
+        "interface": "ae15.692"
+      }
+    ],
+    "imsid": 740768,
+    "monitored": true,
+    "name": "REDIRIS-ICN2-EXPRESSROUTE-VLAN692",
+    "scid": "ff4d0787-984f-4e1a-ae63-9a2cac28adb3",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02560",
+    "speed": 440234147840,
+    "status": "operational"
+  },
+  {
+    "customers": [],
+    "endpoints": [],
+    "imsid": -1,
+    "monitored": false,
+    "name": "ams-gen_HPDMnet_NetherLight-RedIRIS",
+    "scid": "ff74d5d8-3068-48fd-8f19-cf8aa7a2eb99",
+    "service_type": null,
+    "sid": "DS-28660",
+    "speed": 0,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [],
+    "imsid": 661751,
+    "monitored": false,
+    "name": "XANTARO-SERVICE-ENGINE-ETH0-INTERNAL-LON2-VLAN944",
+    "scid": "ff83dc26-9bfd-4ac7-a780-b8d7c13a982a",
+    "service_type": "SERVER LINK",
+    "sid": "GS-00386",
+    "speed": 10737418240,
+    "status": "OutofService"
+  },
+  {
+    "customers": [
+      "NORDUNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "mx1.lon.uk.geant.net",
+        "interface": "et-5/0/5.3917"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "ae21.35"
+      }
+    ],
+    "imsid": 727782,
+    "monitored": true,
+    "name": "NORDUNET-FUNET-EXPRESSROUTE-VLAN3917",
+    "scid": "ff9cd230-7657-4885-bf23-174e0e8bb4d7",
+    "service_type": "EXPRESS ROUTE",
+    "sid": "GS-02327",
+    "speed": 118111600640,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GEANT"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt0.por.pt.geant.net",
+        "interface": "lag-4"
+      }
+    ],
+    "imsid": 742838,
+    "monitored": true,
+    "name": "POR-POR-MGMT-LAG",
+    "scid": "ffc82d25-4f04-4434-86b8-6bd9f73adafa",
+    "service_type": "ETHERNET",
+    "sid": "GA-02586",
+    "speed": 107374182400,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "CESNET"
+    ],
+    "endpoints": [
+      {
+        "hostname": "rt1.pra.cz.geant.net",
+        "interface": "xe-3/0/0"
+      },
+      {
+        "hostname": "rt1.pra.cz.geant.net",
+        "interface": "xe-3/0/0.0"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "xe-0/1/0"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "xe-0/1/0"
+      },
+      {
+        "hostname": "rt1.ams.nl.geant.net",
+        "interface": "xe-0/1/0.0"
+      }
+    ],
+    "imsid": 720237,
+    "monitored": true,
+    "name": "AMS-PRA-IX-CESNET-AMS-12016",
+    "scid": "ffeaacca-e6dc-448c-8fdb-056a4a49085e",
+    "service_type": "GEANT - GBS",
+    "sid": "GS-00786",
+    "speed": 21474836480,
+    "status": "operational"
+  },
+  {
+    "customers": [
+      "GRENA"
+    ],
+    "endpoints": [
+      {
+        "addresses": [
+          "62.40.125.73/30"
+        ],
+        "hostname": "mx1.fra.de.geant.net",
+        "interface": "ae23.200"
+      }
+    ],
+    "imsid": 663227,
+    "monitored": false,
+    "name": "GRENA-AP2",
+    "scid": "fff813ff-0c28-420e-abc6-74e8a44d13c8",
+    "service_type": "GEANT IP",
+    "sid": "GS-00470",
+    "speed": 10737418240,
+    "status": "OutofService"
+  }
+]
diff --git a/test/test_correlator.py b/test/test_correlator.py
new file mode 100644
index 0000000000000000000000000000000000000000..6020af147b0ed665afdcfcdbc9f80302581b0e90
--- /dev/null
+++ b/test/test_correlator.py
@@ -0,0 +1,16 @@
+import tempfile
+
+from mapping_provider.backends import cache, correlator
+
+
+def test_handle_correlator_state_broadcast():
+    """
+    tmp bogus test - just to have something
+    """
+    with tempfile.TemporaryDirectory() as tmp_dir:
+        cache.init(tmp_dir)
+        correlator.handle_correlator_state_broadcast(
+            message={'alarms': [], 'endpoints': []})
+        
+        cached_data = cache.get(correlator.CACHED_CORRELATOR_STATE_FILENAME)
+        assert cached_data == {'alarms': [], 'endpoints': []}
diff --git a/test/test_inventory.py b/test/test_inventory.py
new file mode 100644
index 0000000000000000000000000000000000000000..c7e685713b8187be0535d3312ec30b11e87d7850
--- /dev/null
+++ b/test/test_inventory.py
@@ -0,0 +1,41 @@
+import tempfile
+
+import responses
+
+from mapping_provider.backends import cache, inventory
+
+from .common import load_test_data
+
+
+@responses.activate
+def test_inventory_service_download():
+    """
+    tmp bogus test - just to have something
+    """
+
+    inventory_base_uri = 'https://dummy-hostname.dummy.domain'
+    reporting_base_uri = 'https://another-dummy-hostname.dummy.domain'
+
+    responses.add(
+        method=responses.GET,
+        url=f'{reporting_base_uri}/scid/current',
+        json=load_test_data('scid-current.json')
+    )
+    responses.add(
+        method=responses.GET,
+        url=f'{inventory_base_uri}/map/equipment',
+        json=load_test_data('inprov-equipment.json')
+    )
+    
+    with tempfile.TemporaryDirectory() as tmp_dir:
+
+        cache.init(tmp_dir)
+        inventory._load_all_inventory(
+            inventory_base_uri=inventory_base_uri,
+            reporting_base_uri=reporting_base_uri)
+
+        cached_data = cache.get(inventory.INPROV_EQUIPMENT_CACHE_FILENAME)
+        assert cached_data == load_test_data('inprov-equipment.json')
+
+        cached_data = cache.get(inventory.REPORTING_SCID_CURRENT_CACHE_FILENAME)
+        assert cached_data == load_test_data('scid-current.json')
diff --git a/test/test_map_endpoints.py b/test/test_map_endpoints.py
new file mode 100644
index 0000000000000000000000000000000000000000..c3dbaba94c42eed1fdaf0c348f7aa657bda64b87
--- /dev/null
+++ b/test/test_map_endpoints.py
@@ -0,0 +1,97 @@
+import re
+
+import pytest
+import responses
+
+from mapping_provider.api.map import EquipmentList, PopList
+from mapping_provider.backends.services import ServiceList
+
+from .common import load_test_data
+
+
+@responses.activate
+def test_get_pops(client):
+
+    responses.add(
+        method=responses.GET,
+        url=re.compile(r'.*/map/pops$'),
+        json=load_test_data('inprov-pops.json')
+    )
+
+    rv = client.get("/map/pops")
+    assert rv.status_code == 200
+    pop_list = PopList.model_validate(rv.json())
+    assert pop_list.pops, 'test data should not be empty'
+
+
+@responses.activate
+def test_get_equipment(client):
+
+    responses.add(
+        method=responses.GET,
+        url=re.compile(r'.*/map/equipment$'),
+        json=load_test_data('inprov-equipment.json')
+    )
+
+    rv = client.get("/map/equipment")
+    assert rv.status_code == 200
+    equipment_list = EquipmentList.model_validate(rv.json())
+    assert equipment_list.equipment, 'test data should not be empty'
+
+
+
+
+@responses.activate
+@pytest.mark.parametrize('service_type', [
+    'IP PEERING - R&E',
+    'GEANT SPECTRUM SERVICE',
+    'L3-VPN',
+    'OOB IP LINK',
+    'GEANT OPEN CROSS CONNECT',
+    'GEANT - GBS',
+    'GWS - INDIRECT',
+    'GEANT IP',
+    'POP LAN LINK',
+    'IP PEERING - NON R&E (PUBLIC)',
+    'IP TRUNK',
+    'GEANT PLUS',
+    'L2SERVICES',
+    'ETHERNET',
+    'EUMETSAT TERRESTRIAL',
+    'IP PEERING - NON R&E (PRIVATE)',
+    'EXPRESS ROUTE',
+    'CBL1',
+    'GWS - UPSTREAM',
+    'GEANT PEERING',
+    'SERVER LINK',
+    'GEANT MANAGED WAVELENGTH SERVICE',
+    'CORPORATE',
+    'EUMETSAT GRE'])
+def test_get_services(client, service_type):
+    rv = client.get(f"/map/services/{service_type}")
+    assert rv.status_code == 200
+    service_list = ServiceList.model_validate(rv.json())
+    assert service_list.services, 'test data should not be empty'
+    assert all(s.type == service_type for s in service_list.services)
+
+
+def test_get_unknown_service_type(client):
+    rv = client.get("/map/services/BOGUS_SERVICE_TYPE")
+    assert rv.status_code == 404
+
+
+def test_get_all_services(client):
+    rv = client.get("/map/services")
+    assert rv.status_code == 200
+    service_list = ServiceList.model_validate(rv.json())
+    assert service_list.services, 'test data should not be empty'
+
+@responses.activate
+def test_get_trunks(client):
+    rv = client.get("/map/trunks")
+    assert rv.status_code == 200
+    service_list = ServiceList.model_validate(rv.json())
+    assert service_list.services, 'test data should not be empty'
+    assert all(s.type == 'IP TRUNK' for s in service_list.services)
+
+
diff --git a/test/test_utilization.py b/test/test_utilization.py
new file mode 100644
index 0000000000000000000000000000000000000000..5d985333ed074fb553163804138ba0c19a215371
--- /dev/null
+++ b/test/test_utilization.py
@@ -0,0 +1,37 @@
+import tempfile
+from unittest.mock import MagicMock, patch
+
+import jsonschema
+
+from mapping_provider.backends import brian, cache
+from mapping_provider.config import InfluxConnectionParams
+
+from .common import load_test_data
+
+
+def test_utilization():
+
+    with tempfile.TemporaryDirectory() as tmpdir:
+        cache.init(tmpdir)
+
+        with patch('mapping_provider.backends.brian.InfluxDBClient') as mocked_influx:
+        # with patch('influxdb.InfluxDBClient') as mocked_influx_client:
+
+            mocked_client_instance = MagicMock()
+            mocked_influx.return_value = mocked_client_instance
+
+            mocked_query = MagicMock()
+            mocked_query.return_value.raw = load_test_data('influx-scid-rates-query-result.json')
+
+            mocked_client_instance.query = mocked_query
+
+            brian.load_scid_rates(InfluxConnectionParams(
+                hostname='bogus hostname',
+                username='bogus username',
+                password='bogus password',
+                database='bogus database name',
+                measurement='bogus measurement'))
+
+            cached_scid_rates = cache.get(brian.CACHED_BRIAN_SCID_RATES_FILENAME)
+            assert cached_scid_rates, "test data is not empty"
+            jsonschema.validate(cached_scid_rates, brian.CACHED_SCID_RATES_SCHEMA)
diff --git a/test/test_version.py b/test/test_version.py
new file mode 100644
index 0000000000000000000000000000000000000000..863570b83cc17851e160c1df9ce446668096a40a
--- /dev/null
+++ b/test/test_version.py
@@ -0,0 +1,8 @@
+from mapping_provider.api.common import Version
+
+
+def test_version(client):
+    rv = client.get("/version")
+    assert rv.status_code == 200
+    assert rv.json()
+    Version.model_validate(rv.json())
diff --git a/tox.ini b/tox.ini
index c34930bd56b4c60894c3bcfb52180adfcf5447dc..86711672640062fb831fdf1263de29bcd45e3e9a 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,24 +1,69 @@
-[tox]
-envlist = lint, typecheck, docs
 
-[testenv:lint]
-description = Lint code with Ruff
-deps = ruff
-commands = ruff check mapping_provider
-
-[testenv:typecheck]
-description = Type-check code with mypy
-deps = mypy
-commands = mypy mapping_provider
-
-[testenv:docs]
-description = Build docs
+[testenv]
 deps =
-    sphinx
-    sphinx-rtd-theme
-    sphinxcontrib-plantuml
-    sphinxcontrib-drawio
-    sphinxcontrib-openapi
-commands = sphinx-build -b html docs/source docs/build
+  pytest
+  pytest-cov
+  httpx  # required for fastapi TestClient
+  responses
+  ruff
+  mypy
+  types-jsonschema
+  types-requests
+  types-pika
+  cyclonedx-py
+  sphinx
+  sphinx-rtd-theme
+  sphinxcontrib-plantuml
+  sphinxcontrib-drawio
+  sphinxcontrib-openapi
+commands =
+  coverage erase
+  pytest --cov mapping_provider --cov-fail-under=80 --cov-report html --cov-report xml --cov-report term -p no:checkdocs
+  ruff check mapping_provider test
+  mypy mapping_provider
+  cyclonedx-py environment --output-format json -o bom.json
+  sphinx-build -b html docs/source docs/build
 
+# [tox]
+# envlist = coverage, lint, typecheck, docs
+# 
+# [testenv:coverage]
+# description = Run unit tests and save coverage
+# deps =
+#   pytest
+#   pytest-cov
+#   httpx  # required for fastapi TestClient
+#   responses
+# commands =
+#   coverage erase
+#   pytest --cov mapping_provider --cov-fail-under=80 --cov-report html --cov-report xml --cov-report term -p no:checkdocs
+# 
+# [testenv:lint]
+# description = Lint code with Ruff
+# deps = ruff
+# commands = ruff check mapping_provider test
+# 
+# [testenv:typecheck]
+# description = Type-check code with mypy
+# deps =
+#     mypy
+#     types-jsonschema
+#     types-requests
+#     types-pika
+# commands = mypy mapping_provider
+# 
+# [testenv:sbom]
+# description = Create SBOM for dependency analysis
+# deps = cyclonedx-py
+# commands = cyclonedx-py environment --output-format json -o bom.json
+# 
+# [testenv:docs]
+# description = Build docs
+# deps =
+#     sphinx
+#     sphinx-rtd-theme
+#     sphinxcontrib-plantuml
+#     sphinxcontrib-drawio
+#     sphinxcontrib-openapi
+# commands = sphinx-build -b html docs/source docs/build