diff --git a/adsingestp/parsers/jats.py b/adsingestp/parsers/jats.py
index 706d924..593033a 100644
--- a/adsingestp/parsers/jats.py
+++ b/adsingestp/parsers/jats.py
@@ -3,6 +3,7 @@
from collections import OrderedDict
from copy import copy
+import bs4
import validators
from ordered_set import OrderedSet
@@ -291,28 +292,48 @@ def parse(self, article_metadata):
else:
collab = contrib.find("collab")
- collab_affil = ""
- collab_name = collab.get_text()
- if collab.find("address"):
- collab_affil = collab.find("address").get_text()
+ # This is checking if a collaboration is listed as an author
+ if collab:
+ if type(collab.contents[0].get_text()) == str:
+ collab_name = collab.contents[0].get_text().strip()
+ else:
+ collab_name = collab.get_text().strip()
+
+ if collab.find("address"):
+ collab_affil = collab.find("address").get_text()
+ else:
+ collab_affil = []
+
+ self.collab = {
+ "collab": collab_name,
+ "aff": collab_affil,
+ "affid": [],
+ "xaff": [],
+ "xemail": [],
+ "email": [],
+ "corresp": False,
+ "rid": None,
+ "surname": "",
+ "given": "",
+ "native_lang": "",
+ "orcid": "",
+ }
- self.collab = {
- "collab": collab_name,
- "aff": collab_affil,
- "affid": [],
- "xaff": [],
- "xemail": [],
- "email": [],
- "corresp": False,
- "rid": None,
- }
if self.collab:
# add collab in the correct author position
if self.collab not in authors_out:
authors_out.append(self.collab)
# find nested collab authors and unnest them
- nested_contribs = contrib.find_all("contrib")
+ collab_contribs = collab.find_all("contrib")
+ nested_contribs = []
+ for ncontrib in collab_contribs:
+ if ncontrib:
+ nested_contribs.append(copy(ncontrib))
+ ncontrib.decompose()
+
+ if not nested_contribs:
+ nested_contribs = contrib.find_all("contrib")
nested_idx = idx + 1
for nested_contrib in nested_contribs:
@@ -334,13 +355,26 @@ def parse(self, article_metadata):
authors_out[rid_match[0]] = author_tmp
else:
# add new collab tag to each unnested author
- collabtag = copy(contrib.find("collab").find("institution"))
- nested_contrib.append(collabtag)
- contribs_raw.insert(nested_idx, nested_contrib.extract())
- nested_idx += 1
-
- continue
-
+ if contrib.find("collab") and contrib.find("collab").find(
+ "institution"
+ ):
+ collabtag = copy(contrib.find("collab").find("institution"))
+ else:
+ collabtag = None
+
+ if not collabtag and collab_name:
+ collabtag_string = "" + collab_name + ""
+ collabtag = bs4.BeautifulSoup(collabtag_string, "xml").collab
+
+ if not collabtag:
+ collabtag = "ALLAUTH"
+
+ if collabtag:
+ nested_contrib.insert(0, collabtag)
+ contribs_raw.insert(nested_idx, nested_contrib.extract())
+ nested_idx += 1
+
+ # check if collabtag is present in the author author attributes
collab = contrib.find("collab")
# Springer collab info for nested authors is given as
@@ -348,21 +382,31 @@ def parse(self, article_metadata):
collab = contrib.find("institution")
if collab:
- collab_affil = ""
- collab_name = collab.get_text()
+ if type(collab.contents[0].get_text()) == str:
+ collab_name = collab.contents[0].get_text().strip()
+ else:
+ collab_name = collab.get_text().strip()
+
if collab.find("address"):
collab_affil = collab.find("address").get_text()
-
- self.collab = {
- "collab": collab_name,
- "aff": collab_affil,
- "affid": [],
- "xaff": [],
- "xemail": [],
- "email": [],
- "corresp": False,
- "rid": None,
- }
+ else:
+ collab_affil = ""
+
+ if not self.collab:
+ self.collab = {
+ "collab": collab_name,
+ "aff": collab_affil,
+ "affid": [],
+ "xaff": [],
+ "xemail": [],
+ "email": [],
+ "corresp": False,
+ "rid": None,
+ "surname": "",
+ "given": "",
+ "native_lang": "",
+ "orcid": "",
+ }
l_correspondent = False
if contrib.get("corresp", None) == "yes":
@@ -452,7 +496,7 @@ def parse(self, article_metadata):
contrib_id = contrib.find_all("contrib-id")
orcid = []
for c in contrib_id:
- if c.get("contrib-id-type", "") == "orcid":
+ if (c.get("contrib-id-type", "") == "orcid") or ("orcid" in c.get_text()):
orcid.append(c.get_text(separator=" ").strip())
c.decompose()
@@ -490,6 +534,16 @@ def parse(self, article_metadata):
if collab:
auth["collab"] = collab_name
+ # Check if author is a duplicate of a collaboration
+ if auth["surname"] == "" and auth["collab"]:
+ # delete email and correspondence info for collabs
+ auth["email"] = []
+ auth["xemail"] = []
+ auth["corresp"] = False
+ # if the collab is already in author list, skip
+ if auth in authors_out:
+ continue
+
if contrib.get("contrib-type", "author") == "author":
authors_out.append(auth)
default_key = "ALLAUTH"
diff --git a/tests/stubdata/input/jats_a+a_50368-24_collab.xml b/tests/stubdata/input/jats_a+a_nested_collab.xml
similarity index 100%
rename from tests/stubdata/input/jats_a+a_50368-24_collab.xml
rename to tests/stubdata/input/jats_a+a_nested_collab.xml
diff --git a/tests/stubdata/output/jats_a+a_50368-24_collab.json b/tests/stubdata/output/jats_a+a_nested_collab.json
similarity index 64%
rename from tests/stubdata/output/jats_a+a_50368-24_collab.json
rename to tests/stubdata/output/jats_a+a_nested_collab.json
index 59f89c4..1499a4c 100644
--- a/tests/stubdata/output/jats_a+a_50368-24_collab.json
+++ b/tests/stubdata/output/jats_a+a_nested_collab.json
@@ -8,7 +8,7 @@
"collab": true
},
"name": {
- "collab": "Euclid Collaboration\n\n\t\t\t\t\t\t\n\n\nDournac\nF.\n\n1\n\n\nhttp://orcid.org/0000-0001-8555-9003\n\nBlanchard\nA.\n\n1\n\u2605\n\n\nhttp://orcid.org/0000-0003-4285-9086\n\nIli\u0107\nS.\n\n2\n1\n\n\nhttp://orcid.org/0000-0002-9416-2320\n\nLamine\nB.\n\n1\n\n\nhttp://orcid.org/0000-0002-3199-0399\n\nTutusaus\nI.\n\n1\n\n\n\nAmara\nA.\n\n3\n\n\nhttp://orcid.org/0000-0002-2041-8784\n\nAndreon\nS.\n\n4\n\n\nhttp://orcid.org/0000-0003-4444-8651\n\nAuricchio\nN.\n\n5\n\n\nhttp://orcid.org/0000-0002-1371-5705\n\nAussel\nH.\n\n6\n\n\nhttp://orcid.org/0000-0003-4145-1943\n\nBaldi\nM.\n\n7\n5\n8\n\n\nhttp://orcid.org/0000-0002-8900-0298\n\nBardelli\nS.\n\n5\n\n\n\nBodendorf\nC.\n\n9\n\n\nhttp://orcid.org/0000-0002-3336-9977\n\nBonino\nD.\n\n10\n\n\nhttp://orcid.org/0000-0002-0808-6908\n\nBranchini\nE.\n\n11\n12\n4\n\n\n\nBrau-Nogue\nS.\n\n1\n\n\nhttp://orcid.org/0000-0001-9506-5680\n\nBrescia\nM.\n\n13\n14\n15\n\n\nhttp://orcid.org/0000-0003-4359-8797\n\nBrinchmann\nJ.\n\n16\n\n\nhttp://orcid.org/0000-0003-3399-3574\n\nCamera\nS.\n\n17\n18\n10\n\n\nhttp://orcid.org/0000-0002-3309-7692\n\nCapobianco\nV.\n\n10\n\n\nhttp://orcid.org/0000-0002-3130-0204\n\nCarretero\nJ.\n\n19\n20\n\n\nhttp://orcid.org/0000-0002-4751-5138\n\nCasas\nS.\n\n21\n\n\nhttp://orcid.org/0000-0001-9875-8263\n\nCastellano\nM.\n\n22\n\n\nhttp://orcid.org/0000-0002-3787-4196\n\nCavuoti\nS.\n\n14\n15\n\n\n\nCimatti\nA.\n\n23\n\n\nhttp://orcid.org/0000-0003-2508-0046\n\nCongedo\nG.\n\n24\n\n\n\nConselice\nC. J.\n\n25\n\n\nhttp://orcid.org/0000-0002-6710-8476\n\nConversi\nL.\n\n26\n27\n\n\nhttp://orcid.org/0000-0002-5317-7518\n\nCopin\nY.\n\n28\n\n\nhttp://orcid.org/0000-0003-0758-6510\n\nCourbin\nF.\n\n29\n\n\nhttp://orcid.org/0000-0003-0509-1776\n\nCourtois\nH. M.\n\n30\n\n\n\nDa Silva\nA.\n\n31\n32\n\n\nhttp://orcid.org/0000-0002-5887-6799\n\nDegaudenzi\nH.\n\n33\n\n\nhttp://orcid.org/0000-0002-4767-2360\n\nDi Giorgio\nA. M.\n\n34\n\n\nhttp://orcid.org/0000-0001-5075-1601\n\nDinis\nJ.\n\n31\n32\n\n\nhttp://orcid.org/0000-0003-4203-3954\n\nDouspis\nM.\n\n35\n\n\nhttp://orcid.org/0000-0002-6533-2810\n\nDubath\nF.\n\n33\n\n\n\nDupac\nX.\n\n27\n\n\nhttp://orcid.org/0000-0002-1128-0664\n\nDusini\nS.\n\n36\n\n\n\nEalet\nA.\n\n28\n\n\nhttp://orcid.org/0000-0002-3089-7846\n\nFarina\nM.\n\n34\n\n\nhttp://orcid.org/0000-0002-9594-9387\n\nFarrens\nS.\n\n6\n\n\n\nFerriol\nS.\n\n28\n\n\nhttp://orcid.org/0000-0002-7400-2135\n\nFrailis\nM.\n\n37\n\n\nhttp://orcid.org/0000-0002-0585-6591\n\nFranceschi\nE.\n\n5\n\n\nhttp://orcid.org/0000-0002-3748-5115\n\nGaleotta\nS.\n\n37\n\n\nhttp://orcid.org/0000-0003-4744-9748\n\nGillard\nW.\n\n38\n\n\nhttp://orcid.org/0000-0002-4478-1270\n\nGillis\nB.\n\n24\n\n\nhttp://orcid.org/0000-0002-9590-7961\n\nGiocoli\nC.\n\n5\n39\n\n\nhttp://orcid.org/0000-0003-2694-9284\n\nGranett\nB. R.\n\n4\n\n\nhttp://orcid.org/0000-0002-5688-0663\n\nGrazian\nA.\n\n40\n\n\n\nGrupp\nF.\n\n9\n41\n\n\nhttp://orcid.org/0000-0001-9648-7260\n\nHaugan\nS. V. H.\n\n42\n\n\n\nHolmes\nW.\n\n43\n\n\nhttp://orcid.org/0000-0002-2960-978X\n\nHook\nI.\n\n44\n\n\nhttp://orcid.org/0009-0000-2474-3130\n\nHormuth\nF.\n\n45\n\n\nhttp://orcid.org/0000-0002-3363-0936\n\nHornstrup\nA.\n\n46\n47\n\n\n\nHudelot\nP.\n\n48\n\n\nhttp://orcid.org/0000-0003-3804-2137\n\nJahnke\nK.\n\n49\n\n\nhttp://orcid.org/0000-0003-1804-7715\n\nKeih\u00e4nen\nE.\n\n50\n\n\nhttp://orcid.org/0000-0002-0302-5735\n\nKermiche\nS.\n\n38\n\n\nhttp://orcid.org/0000-0002-2590-1273\n\nKiessling\nA.\n\n43\n\n\nhttp://orcid.org/0000-0001-9513-7138\n\nKilbinger\nM.\n\n51\n\n\nhttp://orcid.org/0009-0006-5823-4880\n\nKubik\nB.\n\n28\n\n\nhttp://orcid.org/0000-0003-2791-2117\n\nK\u00fcmmel\nM.\n\n41\n\n\nhttp://orcid.org/0000-0002-3052-7394\n\nKunz\nM.\n\n52\n\n\nhttp://orcid.org/0000-0002-4618-3063\n\nKurki-Suonio\nH.\n\n53\n54\n\n\nhttp://orcid.org/0000-0003-4172-4606\n\nLigori\nS.\n\n10\n\n\nhttp://orcid.org/0000-0003-4324-7794\n\nLilje\nP. B.\n\n42\n\n\nhttp://orcid.org/0000-0003-2317-5471\n\nLindholm\nV.\n\n53\n54\n\n\nhttp://orcid.org/0000-0001-5966-1434\n\nLloro\nI.\n\n55\n\n\nhttp://orcid.org/0000-0002-4761-1242\n\nMaino\nD.\n\n56\n57\n58\n\n\nhttp://orcid.org/0000-0003-2593-4355\n\nMaiorano\nE.\n\n5\n\n\nhttp://orcid.org/0000-0001-5758-4658\n\nMansutti\nO.\n\n37\n\n\nhttp://orcid.org/0000-0001-7242-3852\n\nMarggraf\nO.\n\n59\n\n\nhttp://orcid.org/0000-0001-6764-073X\n\nMarkovic\nK.\n\n43\n\n\nhttp://orcid.org/0000-0003-2786-7790\n\nMartinet\nN.\n\n60\n\n\nhttp://orcid.org/0000-0002-8850-0303\n\nMarulli\nF.\n\n61\n5\n8\n\n\nhttp://orcid.org/0000-0002-6085-3780\n\nMassey\nR.\n\n62\n\n\n\nMaurogordato\nS.\n\n63\n\n\nhttp://orcid.org/0000-0002-4040-7783\n\nMedinaceli\nE.\n\n5\n\n\nhttp://orcid.org/0000-0002-2849-559X\n\nMei\nS.\n\n64\n\n\n\nMellier\nY.\n\n65\n48\n\n\nhttp://orcid.org/0000-0003-1225-7084\n\nMeneghetti\nM.\n\n5\n8\n\n\nhttp://orcid.org/0000-0001-6870-8900\n\nMerlin\nE.\n\n22\n\n\n\nMeylan\nG.\n\n29\n\n\nhttp://orcid.org/0000-0002-7616-7136\n\nMoresco\nM.\n\n61\n5\n\n\nhttp://orcid.org/0000-0002-3473-6716\n\nMoscardini\nL.\n\n61\n5\n8\n\n\nhttp://orcid.org/0000-0002-1751-5946\n\nMunari\nE.\n\n37\n\n\n\nNiemi\nS.-M.\n\n66\n\n\nhttp://orcid.org/0000-0002-8987-7401\n\nNightingale\nJ. W.\n\n67\n68\n\n\nhttp://orcid.org/0000-0001-7951-0166\n\nPadilla\nC.\n\n19\n\n\nhttp://orcid.org/0000-0002-8108-9179\n\nPaltani\nS.\n\n33\n\n\nhttp://orcid.org/0000-0002-4869-3227\n\nPasian\nF.\n\n37\n\n\n\nPedersen\nK.\n\n69\n\n\nhttp://orcid.org/0000-0002-0644-5727\n\nPercival\nW. J.\n\n70\n71\n72\n\n\nhttp://orcid.org/0000-0002-4203-9320\n\nPettorino\nV.\n\n66\n\n\nhttp://orcid.org/0000-0002-0249-2104\n\nPires\nS.\n\n6\n\n\nhttp://orcid.org/0000-0003-4067-9196\n\nPolenta\nG.\n\n73\n\n\n\nPoncet\nM.\n\n74\n\n\nhttp://orcid.org/0000-0001-9045-9154\n\nPopa\nL. A.\n\n75\n\n\nhttp://orcid.org/0000-0001-7085-0412\n\nPozzetti\nL.\n\n5\n\n\nhttp://orcid.org/0000-0002-7819-6918\n\nRaison\nF.\n\n9\n\n\n\nRebolo\nR.\n\n76\n77\n\n\nhttp://orcid.org/0000-0001-9856-1970\n\nRenzi\nA.\n\n78\n36\n\n\nhttp://orcid.org/0000-0002-4485-8549\n\nRhodes\nJ.\n\n43\n\n\nhttp://orcid.org/0000-0001-7020-1172\n\nRiccio\nG.\n\n14\n\n\nhttp://orcid.org/0000-0003-3069-9222\n\nRomelli\nE.\n\n37\n\n\nhttp://orcid.org/0000-0001-9587-7822\n\nRoncarelli\nM.\n\n5\n\n\n\nRossetti\nE.\n\n7\n\n\nhttp://orcid.org/0000-0003-0378-7032\n\nSaglia\nR.\n\n41\n9\n\n\nhttp://orcid.org/0000-0001-7089-4503\n\nSapone\nD.\n\n79\n\n\n\nSchneider\nP.\n\n59\n\n\nhttp://orcid.org/0000-0003-0505-3710\n\nSecroun\nA.\n\n38\n\n\nhttp://orcid.org/0000-0003-2907-353X\n\nSeidel\nG.\n\n49\n\n\nhttp://orcid.org/0000-0002-7536-9393\n\nSeiffert\nM.\n\n43\n\n\nhttp://orcid.org/0000-0002-0211-2861\n\nSerrano\nS.\n\n80\n81\n82\n\n\nhttp://orcid.org/0000-0002-0995-7146\n\nSirignano\nC.\n\n78\n36\n\n\nhttp://orcid.org/0000-0003-2626-2853\n\nSirri\nG.\n\n8\n\n\nhttp://orcid.org/0000-0002-9706-5104\n\nStanco\nL.\n\n36\n\n\nhttp://orcid.org/0000-0003-2592-0113\n\nSurace\nC.\n\n60\n\n\nhttp://orcid.org/0000-0002-1336-8328\n\nTallada-Cresp\u00ed\nP.\n\n83\n20\n\n\nhttp://orcid.org/0000-0001-7475-9894\n\nTavagnacco\nD.\n\n37\n\n\n\nTaylor\nA. N.\n\n24\n\n\n\nTereno\nI.\n\n31\n84\n\n\nhttp://orcid.org/0000-0002-2997-4859\n\nToledo-Moreo\nR.\n\n85\n\n\nhttp://orcid.org/0000-0003-1160-1517\n\nTorradeflot\nF.\n\n20\n83\n\n\n\nValentijn\nE. A.\n\n86\n\n\nhttp://orcid.org/0000-0002-1170-0104\n\nValenziano\nL.\n\n5\n87\n\n\nhttp://orcid.org/0000-0001-6512-6358\n\nVassallo\nT.\n\n41\n37\n\n\nhttp://orcid.org/0000-0003-2387-1194\n\nVeropalumbo\nA.\n\n4\n12\n\n\nhttp://orcid.org/0000-0002-4749-2984\n\nWang\nY.\n\n88\n\n\nhttp://orcid.org/0000-0003-0396-1192\n\nZacchei\nA.\n\n37\n89\n\n\nhttp://orcid.org/0000-0002-2318-301X\n\nZamorani\nG.\n\n5\n\n\nhttp://orcid.org/0000-0003-1962-9805\n\nZoubian\nJ.\n\n38\n\n\nhttp://orcid.org/0000-0002-5845-8132\n\nZucca\nE.\n\n5\n\n\nhttp://orcid.org/0000-0002-0857-0732\n\nBiviano\nA.\n\n37\n89\n\n\nhttp://orcid.org/0000-0003-3278-4607\n\nBolzonella\nM.\n\n5\n\n\nhttp://orcid.org/0000-0001-7387-2633\n\nBoucaud\nA.\n\n64\n\n\nhttp://orcid.org/0000-0002-8201-1525\n\nBozzo\nE.\n\n33\n\n\nhttp://orcid.org/0000-0002-3005-5796\n\nBurigana\nC.\n\n90\n87\n\n\n\nColodro-Conde\nC.\n\n76\n\n\nhttp://orcid.org/0000-0002-6220-9104\n\nDe Lucia\nG.\n\n37\n\n\n\nDi Ferdinando\nD.\n\n8\n\n\n\nEscartin Vigo\nJ. A.\n\n9\n\n\nhttp://orcid.org/0000-0003-2212-367X\n\nFarinelli\nR.\n\n5\n\n\nhttp://orcid.org/0000-0003-4689-3134\n\nGracia-Carpio\nJ.\n\n9\n\n\nhttp://orcid.org/0000-0003-2384-2377\n\nMainetti\nG.\n\n91\n\n\nhttp://orcid.org/0000-0002-6943-7732\n\nMartinelli\nM.\n\n22\n92\n\n\nhttp://orcid.org/0000-0001-8196-1548\n\nMauri\nN.\n\n23\n8\n\n\nhttp://orcid.org/0000-0001-8524-4968\n\nNeissner\nC.\n\n19\n20\n\n\nhttp://orcid.org/0000-0002-4823-3757\n\nSakr\nZ.\n\n93\n1\n94\n\n\nhttp://orcid.org/0009-0008-3864-940X\n\nScottez\nV.\n\n65\n95\n\n\nhttp://orcid.org/0000-0002-4254-5901\n\nTenti\nM.\n\n8\n\n\nhttp://orcid.org/0000-0002-2642-5707\n\nViel\nM.\n\n89\n37\n96\n97\n98\n\n\nhttp://orcid.org/0009-0000-8199-5860\n\nWiesmann\nM.\n\n42\n\n\nhttp://orcid.org/0000-0002-2407-7956\n\nAkrami\nY.\n\n99\n100\n\n\nhttp://orcid.org/0000-0001-7232-5152\n\nAllevato\nV.\n\n14\n\n\nhttp://orcid.org/0000-0002-3579-9583\n\nAnselmi\nS.\n\n36\n78\n101\n\n\nhttp://orcid.org/0000-0002-8211-1630\n\nBaccigalupi\nC.\n\n96\n37\n97\n89\n\n\nhttp://orcid.org/0000-0001-5028-3035\n\nBalaguera-Antolinez\nA.\n\n76\n77\n\n\nhttp://orcid.org/0000-0003-4481-3559\n\nBallardini\nM.\n\n102\n5\n103\n\n\nhttp://orcid.org/0000-0002-9622-7167\n\nBlot\nL.\n\n104\n101\n\n\nhttp://orcid.org/0000-0001-6151-6439\n\nBorgani\nS.\n\n105\n89\n37\n97\n\n\nhttp://orcid.org/0000-0002-6503-5218\n\nBruton\nS.\n\n106\n\n\nhttp://orcid.org/0000-0001-6679-2600\n\nCabanac\nR.\n\n1\n\n\n\nCalabro\nA.\n\n22\n\n\nhttp://orcid.org/0000-0003-2796-2149\n\nCanas-Herrera\nG.\n\n66\n107\n\n\nhttp://orcid.org/0000-0002-9200-7167\n\nCappi\nA.\n\n5\n63\n\n\n\nCarvalho\nC. S.\n\n84\n\n\nhttp://orcid.org/0000-0001-6831-0687\n\nCastignani\nG.\n\n5\n\n\nhttp://orcid.org/0000-0002-6292-3228\n\nCastro\nT.\n\n37\n97\n89\n98\n\n\nhttp://orcid.org/0000-0001-6965-7789\n\nChambers\nK. C.\n\n108\n\n\nhttp://orcid.org/0000-0002-9843-723X\n\nContarini\nS.\n\n9\n61\n\n\nhttp://orcid.org/0000-0002-3892-0190\n\nCooray\nA. R.\n\n109\n\n\n\nCoupon\nJ.\n\n33\n\n\nhttp://orcid.org/0000-0003-3269-1718\n\nDavini\nS.\n\n12\n\n\n\nDe Caro\nB.\n\n36\n78\n\n\n\nde la Torre\nS.\n\n60\n\n\n\nDesprez\nG.\n\n110\n\n\nhttp://orcid.org/0000-0003-0748-4768\n\nD\u00edaz-S\u00e1nchez\nA.\n\n111\n\n\nhttp://orcid.org/0000-0003-2863-5895\n\nDi Domizio\nS.\n\n11\n12\n\n\nhttp://orcid.org/0000-0002-9767-3839\n\nDole\nH.\n\n35\n\n\nhttp://orcid.org/0000-0002-2847-7498\n\nEscoffier\nS.\n\n38\n\n\nhttp://orcid.org/0009-0005-5266-4110\n\nFerrari\nA. G.\n\n23\n8\n\n\nhttp://orcid.org/0000-0002-3021-2851\n\nFerreira\nP. G.\n\n112\n\n\nhttp://orcid.org/0000-0002-1295-1132\n\nFerrero\nI.\n\n42\n\n\nhttp://orcid.org/0000-0002-6694-3269\n\nFinelli\nF.\n\n5\n87\n\n\nhttp://orcid.org/0000-0002-8486-8856\n\nGabarra\nL.\n\n112\n\n\nhttp://orcid.org/0000-0001-8159-8208\n\nGanga\nK.\n\n64\n\n\nhttp://orcid.org/0000-0002-9370-8360\n\nGarc\u00eda-Bellido\nJ.\n\n99\n\n\nhttp://orcid.org/0000-0001-9632-0815\n\nGaztanaga\nE.\n\n81\n80\n113\n\n\nhttp://orcid.org/0000-0002-3129-2814\n\nGiacomini\nF.\n\n8\n\n\nhttp://orcid.org/0000-0002-0236-919X\n\nGozaliasl\nG.\n\n114\n53\n\n\nhttp://orcid.org/0000-0002-9814-3338\n\nHildebrandt\nH.\n\n115\n\n\nhttp://orcid.org/0009-0004-5252-185X\n\nJimenez Munoz\nA.\n\n116\n\n\nhttp://orcid.org/0000-0002-3010-8333\n\nKajava\nJ. J. E.\n\n117\n118\n\n\nhttp://orcid.org/0000-0002-4008-6078\n\nKansal\nV.\n\n119\n120\n\n\nhttp://orcid.org/0000-0002-4927-0816\n\nKaragiannis\nD.\n\n121\n122\n\n\n\nKirkpatrick\nC. C.\n\n50\n\n\nhttp://orcid.org/0000-0003-0610-5252\n\nLegrand\nL.\n\n123\n\n\n\nLibet\nG.\n\n74\n\n\nhttp://orcid.org/0000-0002-4371-0876\n\nLoureiro\nA.\n\n124\n125\n\n\nhttp://orcid.org/0000-0002-5385-2763\n\nMacias-Perez\nJ.\n\n116\n\n\nhttp://orcid.org/0000-0003-4020-4836\n\nMaggio\nG.\n\n37\n\n\nhttp://orcid.org/0000-0001-9158-4838\n\nMagliocchetti\nM.\n\n34\n\n\nhttp://orcid.org/0000-0002-4803-2381\n\nMannucci\nF.\n\n126\n\n\nhttp://orcid.org/0000-0002-6065-3025\n\nMaoli\nR.\n\n127\n22\n\n\nhttp://orcid.org/0000-0002-4886-9261\n\nMartins\nC. J. A. P.\n\n128\n16\n\n\n\nMatthew\nS.\n\n24\n\n\nhttp://orcid.org/0000-0002-8406-0857\n\nMaurin\nL.\n\n35\n\n\nhttp://orcid.org/0000-0003-3167-2574\n\nMetcalf\nR. B.\n\n61\n5\n\n\n\nMigliaccio\nM.\n\n129\n130\n\n\nhttp://orcid.org/0000-0003-2083-7564\n\nMonaco\nP.\n\n105\n37\n97\n89\n\n\nhttp://orcid.org/0000-0003-3314-8936\n\nMoretti\nC.\n\n96\n98\n37\n89\n97\n\n\n\nMorgante\nG.\n\n5\n\n\nhttp://orcid.org/0000-0001-9070-3102\n\nNadathur\nS.\n\n113\n\n\nhttp://orcid.org/0000-0003-3983-8778\n\nWalton\nN. A.\n\n131\n\n\nhttp://orcid.org/0000-0002-9712-977X\n\nPatrizii\nL.\n\n8\n\n\nhttp://orcid.org/0000-0003-0726-2268\n\nPezzotta\nA.\n\n9\n\n\nhttp://orcid.org/0000-0001-5442-2530\n\nP\u00f6ntinen\nM.\n\n53\n\n\n\nPopa\nV.\n\n75\n\n\nhttp://orcid.org/0000-0002-7797-2508\n\nPorciani\nC.\n\n59\n\n\nhttp://orcid.org/0000-0002-0757-5195\n\nPotter\nD.\n\n132\n\n\nhttp://orcid.org/0000-0003-2525-7761\n\nRisso\nI.\n\n133\n\n\nhttp://orcid.org/0000-0001-8106-2702\n\nRocci\nP.-F.\n\n35\n\n\nhttp://orcid.org/0000-0003-0973-4804\n\nSahl\u00e9n\nM.\n\n134\n\n\nhttp://orcid.org/0000-0003-1198-831X\n\nS\u00e1nchez\nA. G.\n\n9\n\n\n\nSchewtschenko\nJ. A.\n\n24\n\n\nhttp://orcid.org/0000-0001-7055-8104\n\nSchneider\nA.\n\n132\n\n\nhttp://orcid.org/0000-0003-0473-1567\n\nSefusatti\nE.\n\n37\n89\n97\n\n\nhttp://orcid.org/0000-0003-0302-0325\n\nSereno\nM.\n\n5\n8\n\n\nhttp://orcid.org/0000-0001-7443-1047\n\nSteinwagner\nJ.\n\n9\n\n\nhttp://orcid.org/0000-0002-9696-7931\n\nTessore\nN.\n\n135\n\n\n\nTestera\nG.\n\n12\n\n\nhttp://orcid.org/0000-0001-7689-0933\n\nTeyssier\nR.\n\n136\n\n\nhttp://orcid.org/0000-0003-3631-7176\n\nToft\nS.\n\n47\n137\n\n\nhttp://orcid.org/0000-0002-7275-9193\n\nTosi\nS.\n\n11\n4\n12\n\n\nhttp://orcid.org/0000-0003-0239-4595\n\nTroja\nA.\n\n78\n36\n\n\n\nTucci\nM.\n\n33\n\n\nhttp://orcid.org/0000-0001-6225-3693\n\nValiviita\nJ.\n\n53\n54\n\n\nhttp://orcid.org/0000-0003-0898-2216\n\nVergani\nD.\n\n5\n\n\nhttp://orcid.org/0000-0002-1886-8348\n\nVerza\nG.\n\n138\n139\n\n\n"
+ "collab": "Euclid Collaboration"
}
},
{
@@ -17,7 +17,11 @@
"affPubRaw": "Institut de Recherche en Astrophysique et Plan\u00e9tologie (IRAP), Universit\u00e9 de Toulouse, CNRS, UPS, CNES, 14 Av. Edouard Belin, 31400, Toulouse, France"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "F.",
"surname": "Dournac"
}
@@ -28,7 +32,12 @@
"affPubRaw": "Institut de Recherche en Astrophysique et Plan\u00e9tologie (IRAP), Universit\u00e9 de Toulouse, CNRS, UPS, CNES, 14 Av. Edouard Belin, 31400, Toulouse, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-8555-9003"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "A.",
"surname": "Blanchard"
}
@@ -42,7 +51,12 @@
"affPubRaw": "Institut de Recherche en Astrophysique et Plan\u00e9tologie (IRAP), Universit\u00e9 de Toulouse, CNRS, UPS, CNES, 14 Av. Edouard Belin, 31400, Toulouse, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-4285-9086"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Ili\u0107"
}
@@ -53,7 +67,12 @@
"affPubRaw": "Institut de Recherche en Astrophysique et Plan\u00e9tologie (IRAP), Universit\u00e9 de Toulouse, CNRS, UPS, CNES, 14 Av. Edouard Belin, 31400, Toulouse, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-9416-2320"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "B.",
"surname": "Lamine"
}
@@ -64,7 +83,12 @@
"affPubRaw": "Institut de Recherche en Astrophysique et Plan\u00e9tologie (IRAP), Universit\u00e9 de Toulouse, CNRS, UPS, CNES, 14 Av. Edouard Belin, 31400, Toulouse, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-3199-0399"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "I.",
"surname": "Tutusaus"
}
@@ -75,7 +99,11 @@
"affPubRaw": "School of Mathematics and Physics, University of Surrey, Guildford, Surrey, GU2 7XH, UK"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "A.",
"surname": "Amara"
}
@@ -86,7 +114,12 @@
"affPubRaw": "INAF-Osservatorio Astronomico di Brera, Via Brera 28, 20122, Milano, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-2041-8784"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Andreon"
}
@@ -97,7 +130,12 @@
"affPubRaw": "INAF-Osservatorio di Astrofisica e Scienza dello Spazio di Bologna, Via Piero Gobetti 93/3, 40129, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-4444-8651"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "N.",
"surname": "Auricchio"
}
@@ -108,7 +146,12 @@
"affPubRaw": "Universit\u00e9 Paris-Saclay, Universit\u00e9 Paris Cit\u00e9, CEA, CNRS, AIM, 91191, Gif-sur-Yvette, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-1371-5705"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "H.",
"surname": "Aussel"
}
@@ -125,7 +168,12 @@
"affPubRaw": "INFN-Sezione di Bologna, Viale Berti Pichat 6/2, 40127, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-4145-1943"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "M.",
"surname": "Baldi"
}
@@ -136,7 +184,12 @@
"affPubRaw": "INAF-Osservatorio di Astrofisica e Scienza dello Spazio di Bologna, Via Piero Gobetti 93/3, 40129, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-8900-0298"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Bardelli"
}
@@ -147,7 +200,11 @@
"affPubRaw": "Max Planck Institute for Extraterrestrial Physics, Giessenbachstr. 1, 85748, Garching, Germany"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "C.",
"surname": "Bodendorf"
}
@@ -158,7 +215,12 @@
"affPubRaw": "INAF-Osservatorio Astrofisico di Torino, Via Osservatorio 20, 10025, Pino Torinese (TO), Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-3336-9977"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "D.",
"surname": "Bonino"
}
@@ -175,7 +237,12 @@
"affPubRaw": "INAF-Osservatorio Astronomico di Brera, Via Brera 28, 20122, Milano, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-0808-6908"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "E.",
"surname": "Branchini"
}
@@ -186,7 +253,11 @@
"affPubRaw": "Institut de Recherche en Astrophysique et Plan\u00e9tologie (IRAP), Universit\u00e9 de Toulouse, CNRS, UPS, CNES, 14 Av. Edouard Belin, 31400, Toulouse, France"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Brau-Nogue"
}
@@ -203,7 +274,12 @@
"affPubRaw": "INFN section of Naples, Via Cinthia 6, 80126, Napoli, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-9506-5680"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "M.",
"surname": "Brescia"
}
@@ -214,7 +290,12 @@
"affPubRaw": "Instituto de Astrof\u00edsica e Ci\u00eancias do Espa\u00e7o, Universidade do Porto, CAUP, Rua das Estrelas, PT4150-762, Porto, Portugal"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-4359-8797"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "J.",
"surname": "Brinchmann"
}
@@ -231,7 +312,12 @@
"affPubRaw": "INAF-Osservatorio Astrofisico di Torino, Via Osservatorio 20, 10025, Pino Torinese (TO), Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-3399-3574"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Camera"
}
@@ -242,7 +328,12 @@
"affPubRaw": "INAF-Osservatorio Astrofisico di Torino, Via Osservatorio 20, 10025, Pino Torinese (TO), Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-3309-7692"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "V.",
"surname": "Capobianco"
}
@@ -256,7 +347,12 @@
"affPubRaw": "Port d\u2019Informaci\u00f3 Cient\u00edfica, Campus UAB, C. Albareda s/n, 08193, Bellaterra (Barcelona), Spain"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-3130-0204"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "J.",
"surname": "Carretero"
}
@@ -267,7 +363,12 @@
"affPubRaw": "Institute for Theoretical Particle Physics and Cosmology (TTK), RWTH Aachen University, 52056, Aachen, Germany"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-4751-5138"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Casas"
}
@@ -278,7 +379,12 @@
"affPubRaw": "INAF-Osservatorio Astronomico di Roma, Via Frascati 33, 00078, Monteporzio Catone, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-9875-8263"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "M.",
"surname": "Castellano"
}
@@ -292,7 +398,12 @@
"affPubRaw": "INFN section of Naples, Via Cinthia 6, 80126, Napoli, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-3787-4196"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Cavuoti"
}
@@ -303,7 +414,11 @@
"affPubRaw": "Dipartimento di Fisica e Astronomia \u201cAugusto Righi\u201d - Alma Mater Studiorum Universit\u00e0 di Bologna, Viale Berti Pichat 6/2, 40127, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "A.",
"surname": "Cimatti"
}
@@ -314,7 +429,12 @@
"affPubRaw": "Institute for Astronomy, University of Edinburgh, Royal Observatory, Blackford Hill, Edinburgh, EH9 3HJ, UK"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-2508-0046"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "G.",
"surname": "Congedo"
}
@@ -325,7 +445,11 @@
"affPubRaw": "Jodrell Bank Centre for Astrophysics, Department of Physics and Astronomy, University of Manchester, Oxford Road, Manchester, M13 9PL, UK"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "C. J.",
"surname": "Conselice"
}
@@ -339,7 +463,12 @@
"affPubRaw": "ESAC/ESA, Camino Bajo del Castillo, s/n., Urb. Villafranca del Castillo, 28692, Villanueva de la Ca\u00f1ada, Madrid, Spain"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-6710-8476"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "L.",
"surname": "Conversi"
}
@@ -350,7 +479,12 @@
"affPubRaw": "Universit\u00e9 Claude Bernard Lyon 1, CNRS/IN2P3, IP2I Lyon, UMR 5822, 69100, Villeurbanne, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-5317-7518"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "Y.",
"surname": "Copin"
}
@@ -361,7 +495,12 @@
"affPubRaw": "Institute of Physics, Laboratory of Astrophysics, Ecole Polytechnique F\u00e9d\u00e9rale de Lausanne (EPFL), Observatoire de Sauverny, 1290, Versoix, Switzerland"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-0758-6510"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "F.",
"surname": "Courbin"
}
@@ -372,7 +511,12 @@
"affPubRaw": "UCB Lyon 1, CNRS/IN2P3, IUF, IP2I Lyon, 4 rue Enrico Fermi, 69622, Villeurbanne, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-0509-1776"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "H. M.",
"surname": "Courtois"
}
@@ -386,7 +530,11 @@
"affPubRaw": "Instituto de Astrof\u00edsica e Ci\u00eancias do Espa\u00e7o, Faculdade de Ci\u00ean- cias, Universidade de Lisboa, Campo Grande, 1749-016, Lisboa, Portugal"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "A.",
"surname": "Da Silva"
}
@@ -397,7 +545,12 @@
"affPubRaw": "Department of Astronomy, University of Geneva, ch. d\u2019Ecogia 16, 1290, Versoix, Switzerland"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-5887-6799"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "H.",
"surname": "Degaudenzi"
}
@@ -408,7 +561,12 @@
"affPubRaw": "INAF-Istituto di Astrofisica e Planetologia Spaziali, via del Fosso del Cavaliere, 100, 00100, Roma, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-4767-2360"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "A. M.",
"surname": "Di Giorgio"
}
@@ -422,7 +580,12 @@
"affPubRaw": "Instituto de Astrof\u00edsica e Ci\u00eancias do Espa\u00e7o, Faculdade de Ci\u00ean- cias, Universidade de Lisboa, Campo Grande, 1749-016, Lisboa, Portugal"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-5075-1601"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "J.",
"surname": "Dinis"
}
@@ -433,7 +596,12 @@
"affPubRaw": "Universit\u00e9 Paris-Saclay, CNRS, Institut d\u2019astrophysique spatiale, 91405, Orsay, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-4203-3954"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "M.",
"surname": "Douspis"
}
@@ -444,7 +612,12 @@
"affPubRaw": "Department of Astronomy, University of Geneva, ch. d\u2019Ecogia 16, 1290, Versoix, Switzerland"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-6533-2810"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "F.",
"surname": "Dubath"
}
@@ -455,7 +628,11 @@
"affPubRaw": "ESAC/ESA, Camino Bajo del Castillo, s/n., Urb. Villafranca del Castillo, 28692, Villanueva de la Ca\u00f1ada, Madrid, Spain"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "X.",
"surname": "Dupac"
}
@@ -466,7 +643,12 @@
"affPubRaw": "INFN-Padova, Via Marzolo 8, 35131, Padova, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-1128-0664"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Dusini"
}
@@ -477,7 +659,11 @@
"affPubRaw": "Universit\u00e9 Claude Bernard Lyon 1, CNRS/IN2P3, IP2I Lyon, UMR 5822, 69100, Villeurbanne, France"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "A.",
"surname": "Ealet"
}
@@ -488,7 +674,12 @@
"affPubRaw": "INAF-Istituto di Astrofisica e Planetologia Spaziali, via del Fosso del Cavaliere, 100, 00100, Roma, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-3089-7846"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "M.",
"surname": "Farina"
}
@@ -499,7 +690,12 @@
"affPubRaw": "Universit\u00e9 Paris-Saclay, Universit\u00e9 Paris Cit\u00e9, CEA, CNRS, AIM, 91191, Gif-sur-Yvette, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-9594-9387"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Farrens"
}
@@ -510,7 +706,11 @@
"affPubRaw": "Universit\u00e9 Claude Bernard Lyon 1, CNRS/IN2P3, IP2I Lyon, UMR 5822, 69100, Villeurbanne, France"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Ferriol"
}
@@ -521,7 +721,12 @@
"affPubRaw": "INAF-Osservatorio Astronomico di Trieste, Via G. B. Tiepolo 11, 34143, Trieste, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-7400-2135"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "M.",
"surname": "Frailis"
}
@@ -532,7 +737,12 @@
"affPubRaw": "INAF-Osservatorio di Astrofisica e Scienza dello Spazio di Bologna, Via Piero Gobetti 93/3, 40129, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-0585-6591"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "E.",
"surname": "Franceschi"
}
@@ -543,7 +753,12 @@
"affPubRaw": "INAF-Osservatorio Astronomico di Trieste, Via G. B. Tiepolo 11, 34143, Trieste, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-3748-5115"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Galeotta"
}
@@ -554,7 +769,12 @@
"affPubRaw": "Aix-Marseille Universit\u00e9, CNRS/IN2P3, CPPM, Marseille, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-4744-9748"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "W.",
"surname": "Gillard"
}
@@ -565,7 +785,12 @@
"affPubRaw": "Institute for Astronomy, University of Edinburgh, Royal Observatory, Blackford Hill, Edinburgh, EH9 3HJ, UK"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-4478-1270"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "B.",
"surname": "Gillis"
}
@@ -579,7 +804,12 @@
"affPubRaw": "Istituto Nazionale di Fisica Nucleare, Sezione di Bologna, Via Irnerio 46, 40126, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-9590-7961"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "C.",
"surname": "Giocoli"
}
@@ -590,7 +820,12 @@
"affPubRaw": "INAF-Osservatorio Astronomico di Brera, Via Brera 28, 20122, Milano, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-2694-9284"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "B. R.",
"surname": "Granett"
}
@@ -601,7 +836,12 @@
"affPubRaw": "INAF-Osservatorio Astronomico di Padova, Via dell\u2019Osservatorio 5, 35122, Padova, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-5688-0663"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "A.",
"surname": "Grazian"
}
@@ -615,7 +855,11 @@
"affPubRaw": "Universit\u00e4ts-Sternwarte M\u00fcnchen, Fakult\u00e4t f\u00fcr Physik, Ludwig-Maximilians-Universit\u00e4t M\u00fcnchen, Scheinerstrasse 1, 81679, M\u00fcnchen, Germany"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "F.",
"surname": "Grupp"
}
@@ -626,7 +870,12 @@
"affPubRaw": "Institute of Theoretical Astrophysics, University of Oslo, PO Box 1029, Blindern, 0315, Oslo, Norway"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-9648-7260"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S. V. H.",
"surname": "Haugan"
}
@@ -637,7 +886,11 @@
"affPubRaw": "Jet Propulsion Laboratory, California Institute of Technology, 4800 Oak Grove Drive, Pasadena, CA, 91109, USA"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "W.",
"surname": "Holmes"
}
@@ -648,7 +901,12 @@
"affPubRaw": "Department of Physics, Lancaster University, Lancaster, LA1 4YB, UK"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-2960-978X"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "I.",
"surname": "Hook"
}
@@ -659,7 +917,12 @@
"affPubRaw": "Felix Hormuth Engineering, Goethestr. 17, 69181, Leimen, Germany"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0009-0000-2474-3130"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "F.",
"surname": "Hormuth"
}
@@ -673,7 +936,12 @@
"affPubRaw": "Cosmic Dawn Center (DAWN), Denmark"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-3363-0936"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "A.",
"surname": "Hornstrup"
}
@@ -684,7 +952,11 @@
"affPubRaw": "Institut d\u2019Astrophysique de Paris, UMR 7095, CNRS, and Sorbonne Universit\u00e9, 98 bis boulevard Arago, 75014, Paris, France"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "P.",
"surname": "Hudelot"
}
@@ -695,7 +967,12 @@
"affPubRaw": "Max-Planck-Institut f\u00fcr Astronomie, K\u00f6nigstuhl 17, 69117, Heidelberg, Germany"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-3804-2137"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "K.",
"surname": "Jahnke"
}
@@ -706,7 +983,12 @@
"affPubRaw": "Department of Physics and Helsinki Institute of Physics, Gustaf H\u00e4llstr\u00f6min katu 2, 00014 University of Helsinki, Finland"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-1804-7715"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "E.",
"surname": "Keih\u00e4nen"
}
@@ -717,7 +999,12 @@
"affPubRaw": "Aix-Marseille Universit\u00e9, CNRS/IN2P3, CPPM, Marseille, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-0302-5735"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Kermiche"
}
@@ -728,7 +1015,12 @@
"affPubRaw": "Jet Propulsion Laboratory, California Institute of Technology, 4800 Oak Grove Drive, Pasadena, CA, 91109, USA"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-2590-1273"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "A.",
"surname": "Kiessling"
}
@@ -739,7 +1031,12 @@
"affPubRaw": "AIM, CEA, CNRS, Universit\u00e9 Paris-Saclay, Universit\u00e9 de Paris, 91191, Gif-sur-Yvette, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-9513-7138"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "M.",
"surname": "Kilbinger"
}
@@ -750,7 +1047,12 @@
"affPubRaw": "Universit\u00e9 Claude Bernard Lyon 1, CNRS/IN2P3, IP2I Lyon, UMR 5822, 69100, Villeurbanne, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0009-0006-5823-4880"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "B.",
"surname": "Kubik"
}
@@ -761,7 +1063,12 @@
"affPubRaw": "Universit\u00e4ts-Sternwarte M\u00fcnchen, Fakult\u00e4t f\u00fcr Physik, Ludwig-Maximilians-Universit\u00e4t M\u00fcnchen, Scheinerstrasse 1, 81679, M\u00fcnchen, Germany"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-2791-2117"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "M.",
"surname": "K\u00fcmmel"
}
@@ -772,7 +1079,12 @@
"affPubRaw": "Universit\u00e9 de Gen\u00e8ve, D\u00e9partement de Physique Th\u00e9orique and Centre for Astroparticle Physics, 24 quai Ernest-Ansermet, 1211, Gen\u00e8ve 4, Switzerland"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-3052-7394"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "M.",
"surname": "Kunz"
}
@@ -786,7 +1098,12 @@
"affPubRaw": "Helsinki Institute of Physics, Gustaf H\u00e4llstr\u00f6min katu 2, University of Helsinki, Helsinki, Finland"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-4618-3063"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "H.",
"surname": "Kurki-Suonio"
}
@@ -797,7 +1114,12 @@
"affPubRaw": "INAF-Osservatorio Astrofisico di Torino, Via Osservatorio 20, 10025, Pino Torinese (TO), Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-4172-4606"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Ligori"
}
@@ -808,7 +1130,12 @@
"affPubRaw": "Institute of Theoretical Astrophysics, University of Oslo, PO Box 1029, Blindern, 0315, Oslo, Norway"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-4324-7794"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "P. B.",
"surname": "Lilje"
}
@@ -822,7 +1149,12 @@
"affPubRaw": "Helsinki Institute of Physics, Gustaf H\u00e4llstr\u00f6min katu 2, University of Helsinki, Helsinki, Finland"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-2317-5471"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "V.",
"surname": "Lindholm"
}
@@ -833,7 +1165,12 @@
"affPubRaw": "NOVA optical infrared instrumentation group at ASTRON, Oude Hoogeveensedijk 4, 7991PD, Dwingeloo, The Netherlands"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-5966-1434"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "I.",
"surname": "Lloro"
}
@@ -850,7 +1187,12 @@
"affPubRaw": "INFN-Sezione di Milano, Via Celoria 16, 20133, Milano, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-4761-1242"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "D.",
"surname": "Maino"
}
@@ -861,7 +1203,12 @@
"affPubRaw": "INAF-Osservatorio di Astrofisica e Scienza dello Spazio di Bologna, Via Piero Gobetti 93/3, 40129, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-2593-4355"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "E.",
"surname": "Maiorano"
}
@@ -872,7 +1219,12 @@
"affPubRaw": "INAF-Osservatorio Astronomico di Trieste, Via G. B. Tiepolo 11, 34143, Trieste, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-5758-4658"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "O.",
"surname": "Mansutti"
}
@@ -883,7 +1235,12 @@
"affPubRaw": "Universit\u00e4t Bonn, Argelander-Institut f\u00fcr Astronomie, Auf dem H\u00fcgel 71, 53121, Bonn, Germany"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-7242-3852"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "O.",
"surname": "Marggraf"
}
@@ -894,7 +1251,12 @@
"affPubRaw": "Jet Propulsion Laboratory, California Institute of Technology, 4800 Oak Grove Drive, Pasadena, CA, 91109, USA"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-6764-073X"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "K.",
"surname": "Markovic"
}
@@ -905,7 +1267,12 @@
"affPubRaw": "Aix-Marseille Universit\u00e9, CNRS, CNES, LAM, Marseille, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-2786-7790"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "N.",
"surname": "Martinet"
}
@@ -922,7 +1289,12 @@
"affPubRaw": "INFN-Sezione di Bologna, Viale Berti Pichat 6/2, 40127, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-8850-0303"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "F.",
"surname": "Marulli"
}
@@ -933,7 +1305,12 @@
"affPubRaw": "Department of Physics, Centre for Extragalactic Astronomy, Durham University, South Road, DH1 3LE, UK"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-6085-3780"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "R.",
"surname": "Massey"
}
@@ -944,7 +1321,11 @@
"affPubRaw": "Universit\u00e9 C\u00f4te d\u2019Azur, Observatoire de la C\u00f4te d\u2019Azur, CNRS, Laboratoire Lagrange, Bd de l\u2019Observatoire, CS 34229, 06304, Nice cedex 4, France"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Maurogordato"
}
@@ -955,7 +1336,12 @@
"affPubRaw": "INAF-Osservatorio di Astrofisica e Scienza dello Spazio di Bologna, Via Piero Gobetti 93/3, 40129, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-4040-7783"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "E.",
"surname": "Medinaceli"
}
@@ -966,7 +1352,12 @@
"affPubRaw": "Universit\u00e9 Paris Cit\u00e9, CNRS, Astroparticule et Cosmologie, 75013, Paris, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-2849-559X"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Mei"
}
@@ -980,7 +1371,11 @@
"affPubRaw": "Institut d\u2019Astrophysique de Paris, UMR 7095, CNRS, and Sorbonne Universit\u00e9, 98 bis boulevard Arago, 75014, Paris, France"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "Y.",
"surname": "Mellier"
}
@@ -994,7 +1389,12 @@
"affPubRaw": "INFN-Sezione di Bologna, Viale Berti Pichat 6/2, 40127, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-1225-7084"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "M.",
"surname": "Meneghetti"
}
@@ -1005,7 +1405,12 @@
"affPubRaw": "INAF-Osservatorio Astronomico di Roma, Via Frascati 33, 00078, Monteporzio Catone, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-6870-8900"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "E.",
"surname": "Merlin"
}
@@ -1016,7 +1421,11 @@
"affPubRaw": "Institute of Physics, Laboratory of Astrophysics, Ecole Polytechnique F\u00e9d\u00e9rale de Lausanne (EPFL), Observatoire de Sauverny, 1290, Versoix, Switzerland"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "G.",
"surname": "Meylan"
}
@@ -1030,7 +1439,12 @@
"affPubRaw": "INAF-Osservatorio di Astrofisica e Scienza dello Spazio di Bologna, Via Piero Gobetti 93/3, 40129, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-7616-7136"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "M.",
"surname": "Moresco"
}
@@ -1047,7 +1461,12 @@
"affPubRaw": "INFN-Sezione di Bologna, Viale Berti Pichat 6/2, 40127, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-3473-6716"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "L.",
"surname": "Moscardini"
}
@@ -1058,7 +1477,12 @@
"affPubRaw": "INAF-Osservatorio Astronomico di Trieste, Via G. B. Tiepolo 11, 34143, Trieste, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-1751-5946"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "E.",
"surname": "Munari"
}
@@ -1069,7 +1493,11 @@
"affPubRaw": "European Space Agency/ESTEC, Keplerlaan 1, 2201 AZ, Noordwijk, The Netherlands"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.-M.",
"surname": "Niemi"
}
@@ -1083,7 +1511,12 @@
"affPubRaw": "Department of Physics, Institute for Computational Cosmology, Durham University, South Road, DH1 3LE, UK"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-8987-7401"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "J. W.",
"surname": "Nightingale"
}
@@ -1094,7 +1527,12 @@
"affPubRaw": "Institut de F\u00edsica d\u2019Altes Energies (IFAE), The Barcelona Institute of Science and Technology, Campus UAB, 08193, Bellaterra (Barcelona), Spain"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-7951-0166"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "C.",
"surname": "Padilla"
}
@@ -1105,7 +1543,12 @@
"affPubRaw": "Department of Astronomy, University of Geneva, ch. d\u2019Ecogia 16, 1290, Versoix, Switzerland"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-8108-9179"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Paltani"
}
@@ -1116,7 +1559,12 @@
"affPubRaw": "INAF-Osservatorio Astronomico di Trieste, Via G. B. Tiepolo 11, 34143, Trieste, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-4869-3227"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "F.",
"surname": "Pasian"
}
@@ -1127,7 +1575,11 @@
"affPubRaw": "Department of Physics and Astronomy, University of Aarhus, Ny Munkegade 120, 8000, Aarhus C, Denmark"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "K.",
"surname": "Pedersen"
}
@@ -1144,7 +1596,12 @@
"affPubRaw": "Perimeter Institute for Theoretical Physics, Waterloo, Ontario, N2L 2Y5, Canada"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-0644-5727"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "W. J.",
"surname": "Percival"
}
@@ -1155,7 +1612,12 @@
"affPubRaw": "European Space Agency/ESTEC, Keplerlaan 1, 2201 AZ, Noordwijk, The Netherlands"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-4203-9320"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "V.",
"surname": "Pettorino"
}
@@ -1166,7 +1628,12 @@
"affPubRaw": "Universit\u00e9 Paris-Saclay, Universit\u00e9 Paris Cit\u00e9, CEA, CNRS, AIM, 91191, Gif-sur-Yvette, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-0249-2104"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Pires"
}
@@ -1177,7 +1644,12 @@
"affPubRaw": "Space Science Data Center, Italian Space Agency, via del Politecnico snc, 00133, Roma, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-4067-9196"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "G.",
"surname": "Polenta"
}
@@ -1188,7 +1660,11 @@
"affPubRaw": "Centre National d\u2019Etudes Spatiales \u2013 Centre spatial de Toulouse, 18 avenue Edouard Belin, 31401, Toulouse Cedex 9, France"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "M.",
"surname": "Poncet"
}
@@ -1199,7 +1675,12 @@
"affPubRaw": "Institute of Space Science, Str. Atomistilor, nr. 409 M\u0103gurele, Ilfov, 077125, Romania"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-9045-9154"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "L. A.",
"surname": "Popa"
}
@@ -1210,7 +1691,12 @@
"affPubRaw": "INAF-Osservatorio di Astrofisica e Scienza dello Spazio di Bologna, Via Piero Gobetti 93/3, 40129, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-7085-0412"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "L.",
"surname": "Pozzetti"
}
@@ -1221,7 +1707,12 @@
"affPubRaw": "Max Planck Institute for Extraterrestrial Physics, Giessenbachstr. 1, 85748, Garching, Germany"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-7819-6918"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "F.",
"surname": "Raison"
}
@@ -1235,7 +1726,11 @@
"affPubRaw": "Departamento de Astrof\u00edsica, Universidad de La Laguna, 38206, La Laguna, Tenerife, Spain"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "R.",
"surname": "Rebolo"
}
@@ -1249,7 +1744,12 @@
"affPubRaw": "INFN-Padova, Via Marzolo 8, 35131, Padova, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-9856-1970"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "A.",
"surname": "Renzi"
}
@@ -1260,7 +1760,12 @@
"affPubRaw": "Jet Propulsion Laboratory, California Institute of Technology, 4800 Oak Grove Drive, Pasadena, CA, 91109, USA"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-4485-8549"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "J.",
"surname": "Rhodes"
}
@@ -1271,7 +1776,12 @@
"affPubRaw": "INAF-Osservatorio Astronomico di Capodimonte, Via Moiariello 16, 80131, Napoli, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-7020-1172"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "G.",
"surname": "Riccio"
}
@@ -1282,7 +1792,12 @@
"affPubRaw": "INAF-Osservatorio Astronomico di Trieste, Via G. B. Tiepolo 11, 34143, Trieste, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-3069-9222"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "E.",
"surname": "Romelli"
}
@@ -1293,7 +1808,12 @@
"affPubRaw": "INAF-Osservatorio di Astrofisica e Scienza dello Spazio di Bologna, Via Piero Gobetti 93/3, 40129, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-9587-7822"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "M.",
"surname": "Roncarelli"
}
@@ -1304,7 +1824,11 @@
"affPubRaw": "Dipartimento di Fisica e Astronomia, Universit\u00e0 di Bologna, Via Gobetti 93/2, 40129, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "E.",
"surname": "Rossetti"
}
@@ -1318,7 +1842,12 @@
"affPubRaw": "Max Planck Institute for Extraterrestrial Physics, Giessenbachstr. 1, 85748, Garching, Germany"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-0378-7032"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "R.",
"surname": "Saglia"
}
@@ -1329,7 +1858,12 @@
"affPubRaw": "Departamento de F\u00edsica, FCFM, Universidad de Chile, Blanco Encalada 2008, Santiago, Chile"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-7089-4503"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "D.",
"surname": "Sapone"
}
@@ -1340,7 +1874,11 @@
"affPubRaw": "Universit\u00e4t Bonn, Argelander-Institut f\u00fcr Astronomie, Auf dem H\u00fcgel 71, 53121, Bonn, Germany"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "P.",
"surname": "Schneider"
}
@@ -1351,7 +1889,12 @@
"affPubRaw": "Aix-Marseille Universit\u00e9, CNRS/IN2P3, CPPM, Marseille, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-0505-3710"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "A.",
"surname": "Secroun"
}
@@ -1362,7 +1905,12 @@
"affPubRaw": "Max-Planck-Institut f\u00fcr Astronomie, K\u00f6nigstuhl 17, 69117, Heidelberg, Germany"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-2907-353X"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "G.",
"surname": "Seidel"
}
@@ -1373,7 +1921,12 @@
"affPubRaw": "Jet Propulsion Laboratory, California Institute of Technology, 4800 Oak Grove Drive, Pasadena, CA, 91109, USA"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-7536-9393"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "M.",
"surname": "Seiffert"
}
@@ -1390,7 +1943,12 @@
"affPubRaw": "Satlantis, University Science Park, Sede Bld 48940, Leioa-Bilbao, Spain"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-0211-2861"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Serrano"
}
@@ -1404,7 +1962,12 @@
"affPubRaw": "INFN-Padova, Via Marzolo 8, 35131, Padova, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-0995-7146"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "C.",
"surname": "Sirignano"
}
@@ -1415,7 +1978,12 @@
"affPubRaw": "INFN-Sezione di Bologna, Viale Berti Pichat 6/2, 40127, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-2626-2853"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "G.",
"surname": "Sirri"
}
@@ -1426,7 +1994,12 @@
"affPubRaw": "INFN-Padova, Via Marzolo 8, 35131, Padova, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-9706-5104"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "L.",
"surname": "Stanco"
}
@@ -1437,7 +2010,12 @@
"affPubRaw": "Aix-Marseille Universit\u00e9, CNRS, CNES, LAM, Marseille, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-2592-0113"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "C.",
"surname": "Surace"
}
@@ -1451,7 +2029,12 @@
"affPubRaw": "Port d\u2019Informaci\u00f3 Cient\u00edfica, Campus UAB, C. Albareda s/n, 08193, Bellaterra (Barcelona), Spain"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-1336-8328"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "P.",
"surname": "Tallada-Cresp\u00ed"
}
@@ -1462,7 +2045,12 @@
"affPubRaw": "INAF-Osservatorio Astronomico di Trieste, Via G. B. Tiepolo 11, 34143, Trieste, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-7475-9894"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "D.",
"surname": "Tavagnacco"
}
@@ -1473,7 +2061,11 @@
"affPubRaw": "Institute for Astronomy, University of Edinburgh, Royal Observatory, Blackford Hill, Edinburgh, EH9 3HJ, UK"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "A. N.",
"surname": "Taylor"
}
@@ -1487,7 +2079,11 @@
"affPubRaw": "Instituto de Astrof\u00edsica e Ci\u00eancias do Espa\u00e7o, Faculdade de Ci\u00ean- cias, Universidade de Lisboa, Tapada da Ajuda, 1349-018, Lisboa, Portugal"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "I.",
"surname": "Tereno"
}
@@ -1498,7 +2094,12 @@
"affPubRaw": "Universidad Polit\u00e9cnica de Cartagena, Departamento de Electr\u00f3nica y Tecnolog\u00eda de Computadoras, Plaza del Hospital 1, 30202, Cartagena, Spain"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-2997-4859"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "R.",
"surname": "Toledo-Moreo"
}
@@ -1512,7 +2113,12 @@
"affPubRaw": "Centro de Investigaciones Energ\u00e9ticas, Medioambientales y Tec- nol\u00f3gicas (CIEMAT), Avenida Complutense 40, 28040, Madrid, Spain"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-1160-1517"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "F.",
"surname": "Torradeflot"
}
@@ -1523,7 +2129,11 @@
"affPubRaw": "Kapteyn Astronomical Institute, University of Groningen, PO Box 800, 9700 AV, Groningen, The Netherlands"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "E. A.",
"surname": "Valentijn"
}
@@ -1537,7 +2147,12 @@
"affPubRaw": "INFN-Bologna, Via Irnerio 46, 40126, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-1170-0104"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "L.",
"surname": "Valenziano"
}
@@ -1551,7 +2166,12 @@
"affPubRaw": "INAF-Osservatorio Astronomico di Trieste, Via G. B. Tiepolo 11, 34143, Trieste, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-6512-6358"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "T.",
"surname": "Vassallo"
}
@@ -1565,7 +2185,12 @@
"affPubRaw": "INFN-Sezione di Genova, Via Dodecaneso 33, 16146, Genova, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-2387-1194"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "A.",
"surname": "Veropalumbo"
}
@@ -1576,7 +2201,12 @@
"affPubRaw": "Infrared Processing and Analysis Center, California Institute of Technology, Pasadena, CA, 91125, USA"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-4749-2984"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "Y.",
"surname": "Wang"
}
@@ -1590,7 +2220,12 @@
"affPubRaw": "IFPU, Institute for Fundamental Physics of the Universe, via Beirut 2, 34151, Trieste, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-0396-1192"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "A.",
"surname": "Zacchei"
}
@@ -1601,7 +2236,12 @@
"affPubRaw": "INAF-Osservatorio di Astrofisica e Scienza dello Spazio di Bologna, Via Piero Gobetti 93/3, 40129, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-2318-301X"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "G.",
"surname": "Zamorani"
}
@@ -1612,7 +2252,12 @@
"affPubRaw": "Aix-Marseille Universit\u00e9, CNRS/IN2P3, CPPM, Marseille, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-1962-9805"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "J.",
"surname": "Zoubian"
}
@@ -1623,7 +2268,12 @@
"affPubRaw": "INAF-Osservatorio di Astrofisica e Scienza dello Spazio di Bologna, Via Piero Gobetti 93/3, 40129, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-5845-8132"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "E.",
"surname": "Zucca"
}
@@ -1637,7 +2287,12 @@
"affPubRaw": "IFPU, Institute for Fundamental Physics of the Universe, via Beirut 2, 34151, Trieste, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-0857-0732"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "A.",
"surname": "Biviano"
}
@@ -1648,7 +2303,12 @@
"affPubRaw": "INAF-Osservatorio di Astrofisica e Scienza dello Spazio di Bologna, Via Piero Gobetti 93/3, 40129, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-3278-4607"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "M.",
"surname": "Bolzonella"
}
@@ -1659,7 +2319,12 @@
"affPubRaw": "Universit\u00e9 Paris Cit\u00e9, CNRS, Astroparticule et Cosmologie, 75013, Paris, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-7387-2633"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "A.",
"surname": "Boucaud"
}
@@ -1670,7 +2335,12 @@
"affPubRaw": "Department of Astronomy, University of Geneva, ch. d\u2019Ecogia 16, 1290, Versoix, Switzerland"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-8201-1525"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "E.",
"surname": "Bozzo"
}
@@ -1684,7 +2354,12 @@
"affPubRaw": "INFN-Bologna, Via Irnerio 46, 40126, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-3005-5796"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "C.",
"surname": "Burigana"
}
@@ -1695,7 +2370,11 @@
"affPubRaw": "Instituto de Astrof\u00edsica de Canarias, Calle V\u00eda L\u00e1ctea s/n, 38204, San Crist\u00f3bal de La Laguna, Tenerife, Spain"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "C.",
"surname": "Colodro-Conde"
}
@@ -1706,7 +2385,12 @@
"affPubRaw": "INAF-Osservatorio Astronomico di Trieste, Via G. B. Tiepolo 11, 34143, Trieste, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-6220-9104"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "G.",
"surname": "De Lucia"
}
@@ -1717,7 +2401,11 @@
"affPubRaw": "INFN-Sezione di Bologna, Viale Berti Pichat 6/2, 40127, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "D.",
"surname": "Di Ferdinando"
}
@@ -1728,7 +2416,11 @@
"affPubRaw": "Max Planck Institute for Extraterrestrial Physics, Giessenbachstr. 1, 85748, Garching, Germany"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "J. A.",
"surname": "Escartin Vigo"
}
@@ -1739,7 +2431,12 @@
"affPubRaw": "INAF-Osservatorio di Astrofisica e Scienza dello Spazio di Bologna, Via Piero Gobetti 93/3, 40129, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-2212-367X"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "R.",
"surname": "Farinelli"
}
@@ -1750,7 +2447,12 @@
"affPubRaw": "Max Planck Institute for Extraterrestrial Physics, Giessenbachstr. 1, 85748, Garching, Germany"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-4689-3134"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "J.",
"surname": "Gracia-Carpio"
}
@@ -1761,7 +2463,12 @@
"affPubRaw": "Centre de Calcul de l\u2019IN2P3/CNRS, 21 avenue Pierre de Coubertin, 69627, Villeurbanne Cedex, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-2384-2377"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "G.",
"surname": "Mainetti"
}
@@ -1775,7 +2482,12 @@
"affPubRaw": "INFN-Sezione di Roma, Piazzale Aldo Moro, 2 - c/o Dipartimento di Fisica, Edificio G. Marconi, 00185, Roma, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-6943-7732"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "M.",
"surname": "Martinelli"
}
@@ -1789,7 +2501,12 @@
"affPubRaw": "INFN-Sezione di Bologna, Viale Berti Pichat 6/2, 40127, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-8196-1548"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "N.",
"surname": "Mauri"
}
@@ -1803,7 +2520,12 @@
"affPubRaw": "Port d\u2019Informaci\u00f3 Cient\u00edfica, Campus UAB, C. Albareda s/n, 08193, Bellaterra (Barcelona), Spain"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-8524-4968"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "C.",
"surname": "Neissner"
}
@@ -1820,7 +2542,12 @@
"affPubRaw": "Universit\u00e9 St Joseph; Faculty of Sciences, Beirut, Lebanon"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-4823-3757"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "Z.",
"surname": "Sakr"
}
@@ -1834,7 +2561,12 @@
"affPubRaw": "Junia, EPA department, 41 Bd Vauban, 59800, Lille, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0009-0008-3864-940X"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "V.",
"surname": "Scottez"
}
@@ -1845,7 +2577,12 @@
"affPubRaw": "INFN-Sezione di Bologna, Viale Berti Pichat 6/2, 40127, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-4254-5901"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "M.",
"surname": "Tenti"
}
@@ -1868,7 +2605,12 @@
"affPubRaw": "ICSC - Centro Nazionale di Ricerca in High Performance Computing, Big Data e Quantum Computing, Via Magnanelli 2, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-2642-5707"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "M.",
"surname": "Viel"
}
@@ -1879,7 +2621,12 @@
"affPubRaw": "Institute of Theoretical Astrophysics, University of Oslo, PO Box 1029, Blindern, 0315, Oslo, Norway"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0009-0000-8199-5860"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "M.",
"surname": "Wiesmann"
}
@@ -1893,7 +2640,12 @@
"affPubRaw": "CERCA/ISO, Department of Physics, Case Western Reserve University, 10900 Euclid Avenue, Cleveland, OH, 44106, USA"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-2407-7956"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "Y.",
"surname": "Akrami"
}
@@ -1904,7 +2656,12 @@
"affPubRaw": "INAF-Osservatorio Astronomico di Capodimonte, Via Moiariello 16, 80131, Napoli, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-7232-5152"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "V.",
"surname": "Allevato"
}
@@ -1921,7 +2678,12 @@
"affPubRaw": "Laboratoire Univers et Th\u00e9orie, Observatoire de Paris, Universit\u00e9 PSL, Universit\u00e9 Paris Cit\u00e9, CNRS, 92190, Meudon, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-3579-9583"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Anselmi"
}
@@ -1941,7 +2703,12 @@
"affPubRaw": "IFPU, Institute for Fundamental Physics of the Universe, via Beirut 2, 34151, Trieste, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-8211-1630"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "C.",
"surname": "Baccigalupi"
}
@@ -1955,7 +2722,12 @@
"affPubRaw": "Departamento de Astrof\u00edsica, Universidad de La Laguna, 38206, La Laguna, Tenerife, Spain"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-5028-3035"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "A.",
"surname": "Balaguera-Antolinez"
}
@@ -1972,7 +2744,12 @@
"affPubRaw": "Istituto Nazionale di Fisica Nucleare, Sezione di Ferrara, Via Giuseppe Saragat 1, 44122, Ferrara, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-4481-3559"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "M.",
"surname": "Ballardini"
}
@@ -1986,7 +2763,12 @@
"affPubRaw": "Laboratoire Univers et Th\u00e9orie, Observatoire de Paris, Universit\u00e9 PSL, Universit\u00e9 Paris Cit\u00e9, CNRS, 92190, Meudon, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-9622-7167"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "L.",
"surname": "Blot"
}
@@ -2006,7 +2788,12 @@
"affPubRaw": "INFN, Sezione di Trieste, Via Valerio 2, 34127, Trieste TS, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-6151-6439"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Borgani"
}
@@ -2017,7 +2804,12 @@
"affPubRaw": "Minnesota Institute for Astrophysics, University of Minnesota, 116 Church St SE, Minneapolis, MN, 55455, USA"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-6503-5218"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Bruton"
}
@@ -2028,7 +2820,12 @@
"affPubRaw": "Institut de Recherche en Astrophysique et Plan\u00e9tologie (IRAP), Universit\u00e9 de Toulouse, CNRS, UPS, CNES, 14 Av. Edouard Belin, 31400, Toulouse, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-6679-2600"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "R.",
"surname": "Cabanac"
}
@@ -2039,7 +2836,11 @@
"affPubRaw": "INAF-Osservatorio Astronomico di Roma, Via Frascati 33, 00078, Monteporzio Catone, Italy"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "A.",
"surname": "Calabro"
}
@@ -2053,7 +2854,12 @@
"affPubRaw": "Institute Lorentz, Leiden University, Niels Bohrweg 2, 2333 CA, Leiden, The Netherlands"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-2796-2149"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "G.",
"surname": "Canas-Herrera"
}
@@ -2067,7 +2873,12 @@
"affPubRaw": "Universit\u00e9 C\u00f4te d\u2019Azur, Observatoire de la C\u00f4te d\u2019Azur, CNRS, Laboratoire Lagrange, Bd de l\u2019Observatoire, CS 34229, 06304, Nice cedex 4, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-9200-7167"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "A.",
"surname": "Cappi"
}
@@ -2078,7 +2889,11 @@
"affPubRaw": "Instituto de Astrof\u00edsica e Ci\u00eancias do Espa\u00e7o, Faculdade de Ci\u00ean- cias, Universidade de Lisboa, Tapada da Ajuda, 1349-018, Lisboa, Portugal"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "C. S.",
"surname": "Carvalho"
}
@@ -2089,7 +2904,12 @@
"affPubRaw": "INAF-Osservatorio di Astrofisica e Scienza dello Spazio di Bologna, Via Piero Gobetti 93/3, 40129, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-6831-0687"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "G.",
"surname": "Castignani"
}
@@ -2109,7 +2929,12 @@
"affPubRaw": "ICSC - Centro Nazionale di Ricerca in High Performance Computing, Big Data e Quantum Computing, Via Magnanelli 2, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-6292-3228"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "T.",
"surname": "Castro"
}
@@ -2120,7 +2945,12 @@
"affPubRaw": "Institute for Astronomy, University of Hawaii, 2680 Woodlawn Drive, Honolulu, HI, 96822, USA"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-6965-7789"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "K. C.",
"surname": "Chambers"
}
@@ -2134,7 +2964,12 @@
"affPubRaw": "Dipartimento di Fisica e Astronomia \u201cAugusto Righi\u201d - Alma Mater Studiorum Universit\u00e0 di Bologna, via Piero Gobetti 93/2, 40129, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-9843-723X"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Contarini"
}
@@ -2145,7 +2980,12 @@
"affPubRaw": "Department of Physics & Astronomy, University of California Irvine, Irvine, CA, 92697, USA"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-3892-0190"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "A. R.",
"surname": "Cooray"
}
@@ -2156,7 +2996,11 @@
"affPubRaw": "Department of Astronomy, University of Geneva, ch. d\u2019Ecogia 16, 1290, Versoix, Switzerland"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "J.",
"surname": "Coupon"
}
@@ -2167,7 +3011,12 @@
"affPubRaw": "INFN-Sezione di Genova, Via Dodecaneso 33, 16146, Genova, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-3269-1718"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Davini"
}
@@ -2181,7 +3030,11 @@
"affPubRaw": "Dipartimento di Fisica e Astronomia \u201cG. Galilei\u201d, Universit\u00e0 di Padova, Via Marzolo 8, 35131, Padova, Italy"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "B.",
"surname": "De Caro"
}
@@ -2192,7 +3045,11 @@
"affPubRaw": "Aix-Marseille Universit\u00e9, CNRS, CNES, LAM, Marseille, France"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "de la Torre"
}
@@ -2203,7 +3060,11 @@
"affPubRaw": "Department of Astronomy & Physics and Institute for Computational Astrophysics, Saint Mary\u2019s University, 923 Robie Street, Halifax, Nova Scotia, B3H 3C3, Canada"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "G.",
"surname": "Desprez"
}
@@ -2214,7 +3075,12 @@
"affPubRaw": "Departamento F\u00edsica Aplicada, Universidad Polit\u00e9cnica de Cartagena, Campus Muralla del Mar, 30202, Cartagena, Murcia, Spain"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-0748-4768"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "A.",
"surname": "D\u00edaz-S\u00e1nchez"
}
@@ -2228,7 +3094,12 @@
"affPubRaw": "INFN-Sezione di Genova, Via Dodecaneso 33, 16146, Genova, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-2863-5895"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Di Domizio"
}
@@ -2239,7 +3110,12 @@
"affPubRaw": "Universit\u00e9 Paris-Saclay, CNRS, Institut d\u2019astrophysique spatiale, 91405, Orsay, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-9767-3839"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "H.",
"surname": "Dole"
}
@@ -2250,7 +3126,12 @@
"affPubRaw": "Aix-Marseille Universit\u00e9, CNRS/IN2P3, CPPM, Marseille, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-2847-7498"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Escoffier"
}
@@ -2264,7 +3145,12 @@
"affPubRaw": "INFN-Sezione di Bologna, Viale Berti Pichat 6/2, 40127, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0009-0005-5266-4110"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "A. G.",
"surname": "Ferrari"
}
@@ -2275,7 +3161,12 @@
"affPubRaw": "Department of Physics, Oxford University, Keble Road, Oxford, OX1 3RH, UK"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-3021-2851"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "P. G.",
"surname": "Ferreira"
}
@@ -2286,7 +3177,12 @@
"affPubRaw": "Institute of Theoretical Astrophysics, University of Oslo, PO Box 1029, Blindern, 0315, Oslo, Norway"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-1295-1132"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "I.",
"surname": "Ferrero"
}
@@ -2300,7 +3196,12 @@
"affPubRaw": "INFN-Bologna, Via Irnerio 46, 40126, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-6694-3269"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "F.",
"surname": "Finelli"
}
@@ -2311,7 +3212,12 @@
"affPubRaw": "Department of Physics, Oxford University, Keble Road, Oxford, OX1 3RH, UK"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-8486-8856"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "L.",
"surname": "Gabarra"
}
@@ -2322,7 +3228,12 @@
"affPubRaw": "Universit\u00e9 Paris Cit\u00e9, CNRS, Astroparticule et Cosmologie, 75013, Paris, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-8159-8208"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "K.",
"surname": "Ganga"
}
@@ -2333,7 +3244,12 @@
"affPubRaw": "Instituto de F\u00edsica Te\u00f3rica UAM-CSIC, Campus de Cantoblanco, 28049, Madrid, Spain"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-9370-8360"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "J.",
"surname": "Garc\u00eda-Bellido"
}
@@ -2350,7 +3266,12 @@
"affPubRaw": "Institute of Cosmology and Gravitation, University of Portsmouth, Portsmouth, PO1 3FX, UK"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-9632-0815"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "E.",
"surname": "Gaztanaga"
}
@@ -2361,7 +3282,12 @@
"affPubRaw": "INFN-Sezione di Bologna, Viale Berti Pichat 6/2, 40127, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-3129-2814"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "F.",
"surname": "Giacomini"
}
@@ -2375,7 +3301,12 @@
"affPubRaw": "Department of Physics, P.O. Box 64, 00014, University of Helsinki, Finland"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-0236-919X"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "G.",
"surname": "Gozaliasl"
}
@@ -2386,7 +3317,12 @@
"affPubRaw": "Ruhr University Bochum, Faculty of Physics and Astronomy, Astronomical Institute (AIRUB), German Centre for Cosmological Lensing (GCCL), 44780, Bochum, Germany"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-9814-3338"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "H.",
"surname": "Hildebrandt"
}
@@ -2397,7 +3333,12 @@
"affPubRaw": "Univ. Grenoble Alpes, CNRS, Grenoble INP, LPSC-IN2P3, 53 Avenue des Martyrs, 38000, Grenoble, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0009-0004-5252-185X"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "A.",
"surname": "Jimenez Munoz"
}
@@ -2411,7 +3352,12 @@
"affPubRaw": "Serco for European Space Agency (ESA), Camino bajo del Castillo, s/n, Urbanizacion Villafranca del Castillo, Villanueva de la Ca\u00f1ada, 28692, Madrid, Spain"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-3010-8333"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "J. J. E.",
"surname": "Kajava"
}
@@ -2425,7 +3371,12 @@
"affPubRaw": "Centre for Astrophysics & Supercomputing, Swinburne University of Technology, Victoria, 3122, Australia"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-4008-6078"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "V.",
"surname": "Kansal"
}
@@ -2439,7 +3390,12 @@
"affPubRaw": "Department of Physics and Astronomy, University of the Western Cape, Bellville, Cape Town, 7535, South Africa"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-4927-0816"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "D.",
"surname": "Karagiannis"
}
@@ -2450,7 +3406,11 @@
"affPubRaw": "Department of Physics and Helsinki Institute of Physics, Gustaf H\u00e4llstr\u00f6min katu 2, 00014 University of Helsinki, Finland"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "C. C.",
"surname": "Kirkpatrick"
}
@@ -2461,7 +3421,12 @@
"affPubRaw": "ICTP South American Institute for Fundamental Research, Instituto de F\u00edsica Te\u00f3rica, Universidade Estadual Paulista, S\u00e3o Paulo, Brazil"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-0610-5252"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "L.",
"surname": "Legrand"
}
@@ -2472,7 +3437,11 @@
"affPubRaw": "Centre National d\u2019Etudes Spatiales \u2013 Centre spatial de Toulouse, 18 avenue Edouard Belin, 31401, Toulouse Cedex 9, France"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "G.",
"surname": "Libet"
}
@@ -2486,7 +3455,12 @@
"affPubRaw": "Astrophysics Group, Blackett Laboratory, Imperial College London, London, SW7 2AZ, UK"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-4371-0876"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "A.",
"surname": "Loureiro"
}
@@ -2497,7 +3471,12 @@
"affPubRaw": "Univ. Grenoble Alpes, CNRS, Grenoble INP, LPSC-IN2P3, 53 Avenue des Martyrs, 38000, Grenoble, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-5385-2763"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "J.",
"surname": "Macias-Perez"
}
@@ -2508,7 +3487,12 @@
"affPubRaw": "INAF-Osservatorio Astronomico di Trieste, Via G. B. Tiepolo 11, 34143, Trieste, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-4020-4836"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "G.",
"surname": "Maggio"
}
@@ -2519,7 +3503,12 @@
"affPubRaw": "INAF-Istituto di Astrofisica e Planetologia Spaziali, via del Fosso del Cavaliere, 100, 00100, Roma, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-9158-4838"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "M.",
"surname": "Magliocchetti"
}
@@ -2530,7 +3519,12 @@
"affPubRaw": "INAF-Osservatorio Astrofisico di Arcetri, Largo E. Fermi 5, 50125, Firenze, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-4803-2381"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "F.",
"surname": "Mannucci"
}
@@ -2544,7 +3538,12 @@
"affPubRaw": "INAF-Osservatorio Astronomico di Roma, Via Frascati 33, 00078, Monteporzio Catone, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-6065-3025"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "R.",
"surname": "Maoli"
}
@@ -2558,7 +3557,12 @@
"affPubRaw": "Instituto de Astrof\u00edsica e Ci\u00eancias do Espa\u00e7o, Universidade do Porto, CAUP, Rua das Estrelas, PT4150-762, Porto, Portugal"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-4886-9261"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "C. J. A. P.",
"surname": "Martins"
}
@@ -2569,7 +3573,11 @@
"affPubRaw": "Institute for Astronomy, University of Edinburgh, Royal Observatory, Blackford Hill, Edinburgh, EH9 3HJ, UK"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Matthew"
}
@@ -2580,7 +3588,12 @@
"affPubRaw": "Universit\u00e9 Paris-Saclay, CNRS, Institut d\u2019astrophysique spatiale, 91405, Orsay, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-8406-0857"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "L.",
"surname": "Maurin"
}
@@ -2594,7 +3607,12 @@
"affPubRaw": "INAF-Osservatorio di Astrofisica e Scienza dello Spazio di Bologna, Via Piero Gobetti 93/3, 40129, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-3167-2574"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "R. B.",
"surname": "Metcalf"
}
@@ -2608,7 +3626,11 @@
"affPubRaw": "INFN, Sezione di Roma 2, Via della Ricerca Scientifica 1, Roma, Italy"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "M.",
"surname": "Migliaccio"
}
@@ -2628,7 +3650,12 @@
"affPubRaw": "IFPU, Institute for Fundamental Physics of the Universe, via Beirut 2, 34151, Trieste, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-2083-7564"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "P.",
"surname": "Monaco"
}
@@ -2651,7 +3678,12 @@
"affPubRaw": "INFN, Sezione di Trieste, Via Valerio 2, 34127, Trieste TS, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-3314-8936"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "C.",
"surname": "Moretti"
}
@@ -2662,7 +3694,11 @@
"affPubRaw": "INAF-Osservatorio di Astrofisica e Scienza dello Spazio di Bologna, Via Piero Gobetti 93/3, 40129, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "G.",
"surname": "Morgante"
}
@@ -2673,7 +3709,12 @@
"affPubRaw": "Institute of Cosmology and Gravitation, University of Portsmouth, Portsmouth, PO1 3FX, UK"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-9070-3102"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Nadathur"
}
@@ -2684,7 +3725,12 @@
"affPubRaw": "Institute of Astronomy, University of Cambridge, Madingley Road, Cambridge, CB3 0HA, UK"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-3983-8778"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "N. A.",
"surname": "Walton"
}
@@ -2695,7 +3741,12 @@
"affPubRaw": "INFN-Sezione di Bologna, Viale Berti Pichat 6/2, 40127, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-9712-977X"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "L.",
"surname": "Patrizii"
}
@@ -2706,7 +3757,12 @@
"affPubRaw": "Max Planck Institute for Extraterrestrial Physics, Giessenbachstr. 1, 85748, Garching, Germany"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-0726-2268"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "A.",
"surname": "Pezzotta"
}
@@ -2717,7 +3773,12 @@
"affPubRaw": "Department of Physics, P.O. Box 64, 00014, University of Helsinki, Finland"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-5442-2530"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "M.",
"surname": "P\u00f6ntinen"
}
@@ -2728,7 +3789,11 @@
"affPubRaw": "Institute of Space Science, Str. Atomistilor, nr. 409 M\u0103gurele, Ilfov, 077125, Romania"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "V.",
"surname": "Popa"
}
@@ -2739,7 +3804,12 @@
"affPubRaw": "Universit\u00e4t Bonn, Argelander-Institut f\u00fcr Astronomie, Auf dem H\u00fcgel 71, 53121, Bonn, Germany"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-7797-2508"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "C.",
"surname": "Porciani"
}
@@ -2750,7 +3820,12 @@
"affPubRaw": "Department of Astrophysics, University of Zurich, Winterthur-erstrasse 190, 8057, Zurich, Switzerland"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-0757-5195"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "D.",
"surname": "Potter"
}
@@ -2761,7 +3836,12 @@
"affPubRaw": "Dipartimento di Fisica, Universit\u00e0 degli studi di Genova, and INFN-Sezione di Genova, via Dodecaneso 33, 16146, Genova, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-2525-7761"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "I.",
"surname": "Risso"
}
@@ -2772,7 +3852,12 @@
"affPubRaw": "Universit\u00e9 Paris-Saclay, CNRS, Institut d\u2019astrophysique spatiale, 91405, Orsay, France"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-8106-2702"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "P.-F.",
"surname": "Rocci"
}
@@ -2783,7 +3868,12 @@
"affPubRaw": "Theoretical astrophysics, Department of Physics and Astronomy, Uppsala University, Box 515, 751 20, Uppsala, Sweden"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-0973-4804"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "M.",
"surname": "Sahl\u00e9n"
}
@@ -2794,7 +3884,12 @@
"affPubRaw": "Max Planck Institute for Extraterrestrial Physics, Giessenbachstr. 1, 85748, Garching, Germany"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-1198-831X"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "A. G.",
"surname": "S\u00e1nchez"
}
@@ -2805,7 +3900,11 @@
"affPubRaw": "Institute for Astronomy, University of Edinburgh, Royal Observatory, Blackford Hill, Edinburgh, EH9 3HJ, UK"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "J. A.",
"surname": "Schewtschenko"
}
@@ -2816,7 +3915,12 @@
"affPubRaw": "Department of Astrophysics, University of Zurich, Winterthur-erstrasse 190, 8057, Zurich, Switzerland"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-7055-8104"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "A.",
"surname": "Schneider"
}
@@ -2833,7 +3937,12 @@
"affPubRaw": "INFN, Sezione di Trieste, Via Valerio 2, 34127, Trieste TS, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-0473-1567"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "E.",
"surname": "Sefusatti"
}
@@ -2847,7 +3956,12 @@
"affPubRaw": "INFN-Sezione di Bologna, Viale Berti Pichat 6/2, 40127, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-0302-0325"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "M.",
"surname": "Sereno"
}
@@ -2858,7 +3972,12 @@
"affPubRaw": "Max Planck Institute for Extraterrestrial Physics, Giessenbachstr. 1, 85748, Garching, Germany"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-7443-1047"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "J.",
"surname": "Steinwagner"
}
@@ -2869,7 +3988,12 @@
"affPubRaw": "Department of Physics and Astronomy, University College London, Gower Street, London, WC1E 6BT, UK"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-9696-7931"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "N.",
"surname": "Tessore"
}
@@ -2880,7 +4004,11 @@
"affPubRaw": "INFN-Sezione di Genova, Via Dodecaneso 33, 16146, Genova, Italy"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "G.",
"surname": "Testera"
}
@@ -2891,7 +4019,12 @@
"affPubRaw": "Department of Astrophysical Sciences, Peyton Hall, Princeton University, Princeton, NJ, 08544, USA"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-7689-0933"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "R.",
"surname": "Teyssier"
}
@@ -2905,7 +4038,12 @@
"affPubRaw": "Niels Bohr Institute, University of Copenhagen, Jagtvej 128, 2200, Copenhagen, Denmark"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-3631-7176"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Toft"
}
@@ -2922,7 +4060,12 @@
"affPubRaw": "INFN-Sezione di Genova, Via Dodecaneso 33, 16146, Genova, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-7275-9193"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "S.",
"surname": "Tosi"
}
@@ -2936,7 +4079,12 @@
"affPubRaw": "INFN-Padova, Via Marzolo 8, 35131, Padova, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-0239-4595"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "A.",
"surname": "Troja"
}
@@ -2947,7 +4095,11 @@
"affPubRaw": "Department of Astronomy, University of Geneva, ch. d\u2019Ecogia 16, 1290, Versoix, Switzerland"
}
],
+ "attrib": {
+ "collab": true
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "M.",
"surname": "Tucci"
}
@@ -2961,7 +4113,12 @@
"affPubRaw": "Helsinki Institute of Physics, Gustaf H\u00e4llstr\u00f6min katu 2, University of Helsinki, Helsinki, Finland"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0001-6225-3693"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "J.",
"surname": "Valiviita"
}
@@ -2972,7 +4129,12 @@
"affPubRaw": "INAF-Osservatorio di Astrofisica e Scienza dello Spazio di Bologna, Via Piero Gobetti 93/3, 40129, Bologna, Italy"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0003-0898-2216"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "D.",
"surname": "Vergani"
}
@@ -2986,7 +4148,12 @@
"affPubRaw": "Center for Computational Astrophysics, Flatiron Institute, 162 5th Avenue, 10010, New York, NY, USA"
}
],
+ "attrib": {
+ "collab": true,
+ "orcid": "0000-0002-1886-8348"
+ },
"name": {
+ "collab": "Euclid Collaboration",
"given_name": "G.",
"surname": "Verza"
}
@@ -3079,50 +4246,50 @@
"recordOrigin": ""
},
"references": [
- "[ Abbott, \t\t\t\t\t\tT. M. C. , \t\t\t\t\t Aguena, \t\t\t\t\t\tM. , \t\t\t\t\t Alarcon, \t\t\t\t\t\tA. , et al. \t\t\t\t\t2022, \t\t\t\t\t, \t\t\t\t\t105, \t\t\t\t\t023520 ]",
- "[ Abramo, \t\t\t\t\t\tL. R. , \t\t\t\t\t Dinarte Ferri, \t\t\t\t\t\tJ. V. , \t\t\t\t\t Tashiro, \t\t\t\t\t\tI. L. , & \t\t\t\t\t Loureiro, \t\t\t\t\t\tA. 2022, \t\t\t\t\t, \t\t\t\t\t8, \t\t\t\t\t073 ]",
- "[ Albrecht, \t\t\t\t\t\tA. , \t\t\t\t\t Bernstein, \t\t\t\t\t\tG. , \t\t\t\t\t Cahn, \t\t\t\t\t\tR. , et al. \t\t\t\t\t2006, \t\t\t\t\t [ \t\t\t\t\tarXiv:astro-ph/0609591] \t\t\t\t ]",
- "[ Alcock, \t\t\t\t\t\tC. , & \t\t\t\t\t Paczynski, \t\t\t\t\t\tB. 1979, \t\t\t\t\t, \t\t\t\t\t281, \t\t\t\t\t358 ]",
- "[ Alimi, \t\t\t\t\t\tJ. M. , \t\t\t\t\t Valls-Gabaud, \t\t\t\t\t\tD. , & \t\t\t\t\t Blanchard, \t\t\t\t\t\tA. 1988, \t\t\t\t\t, \t\t\t\t\t206, \t\t\t\t\tL11 ]",
- "[ Amendola, \t\t\t\t\t\tL. , \t\t\t\t\t Appleby, \t\t\t\t\t\tS. , \t\t\t\t\t Avgoustidis, \t\t\t\t\t\tA. , et al. \t\t\t\t\t2018, \t\t\t\t\t, \t\t\t\t\t21, \t\t\t\t\t2 ]",
- "[ Aubourg, \t\t\t\t\t\t\u00c9. , \t\t\t\t\t Bailey, \t\t\t\t\t\tS. , \t\t\t\t\t Bautista, \t\t\t\t\t\tJ. E. , et al. \t\t\t\t\t2015, \t\t\t\t\t, \t\t\t\t\t92, \t\t\t\t\t123516 ]",
- "[ Blanchard, \t\t\t\t\t\tA. 2022, \t\t\t\t\t, \t\t\t\t\t8, \t\t\t\t\t479 ]",
- "[ Chevallier, \t\t\t\t\t\tM. , & \t\t\t\t\t Polarski, \t\t\t\t\t\tD. 2001, \t\t\t\t\t, \t\t\t\t\tD10, \t\t\t\t\t213 ]",
- "[ Cropper, \t\t\t\t\t\tM. , \t\t\t\t\t Pottinger, \t\t\t\t\t\tS. , \t\t\t\t\t Azzollini, \t\t\t\t\t\tR. , et al. \t\t\t\t\t2018, \t\t\t\t\t, \t\t\t\t\t10698, \t\t\t\t\t709 ]",
- "[ Eisenstein, \t\t\t\t\t\tD. J. , \t\t\t\t\t Zehavi, \t\t\t\t\t\tI. , \t\t\t\t\t Hogg, \t\t\t\t\t\tD. W. , et al. \t\t\t\t\t2005, \t\t\t\t\t, \t\t\t\t\t633, \t\t\t\t\t560 ]",
- "[ Euclid Collaboration ( \t\t\t\t\t Blanchard, \t\t\t\t\t\tA. , et al.) \t\t\t\t\t2020, \t\t\t\t\t, \t\t\t\t\t642, \t\t\t\t\tA191 ]",
- "[ Euclid Collaboration ( \t\t\t\t\t Cropper, \t\t\t\t\t\tM. , et al.) \t\t\t\t\t2024a, \t\t\t\t\t, submitted [ \t\t\t\t\tarXiv:2405.13492] \t\t\t\t ]",
- "[ Euclid Collaboration ( \t\t\t\t\t Jahnke, \t\t\t\t\t\tK. , et al.) \t\t\t\t\t2024b, \t\t\t\t\t, in press, \t\t\t\t\thttps://doi.org/10.1051/0004-6361/202450786 ]",
- "[ Euclid Collaboration ( \t\t\t\t\t Mellier, \t\t\t\t\t\tY. , et al.) \t\t\t\t\t2024c, \t\t\t\t\t, in press, \t\t\t\t\thttps://doi.org/10.1051/0004-6361/202450010 ]",
- "[ Hamaus, \t\t\t\t\t\tN. , \t\t\t\t\t Seljak, \t\t\t\t\t\tU. , \t\t\t\t\t Desjacques, \t\t\t\t\t\tV. , \t\t\t\t\t Smith, \t\t\t\t\t\tR. E. , & \t\t\t\t\t Baldauf, \t\t\t\t\t\tT. 2010, \t\t\t\t\t, \t\t\t\t\t82, \t\t\t\t\t043515 ]",
- "[ Heymans, \t\t\t\t\t\tC. , \t\t\t\t\t Tr\u00f6ster, \t\t\t\t\t\tT. , \t\t\t\t\t Asgari, \t\t\t\t\t\tM. , et al. \t\t\t\t\t2021, \t\t\t\t\t, \t\t\t\t\t646, \t\t\t\t\tA140 ]",
- "[ Hu, \t\t\t\t\t\tW. , & \t\t\t\t\t Sawicki, \t\t\t\t\t\tI. 2007, \t\t\t\t\t, \t\t\t\t\t76, \t\t\t\t\t104043 ]",
- "[ Kilbinger, \t\t\t\t\t\tM. 2015, \t\t\t\t\t, \t\t\t\t\t78, \t\t\t\t\t086901 ]",
- "[ Lahav, \t\t\t\t\t\tO. , \t\t\t\t\t Lilje, \t\t\t\t\t\tP. ?. , \t\t\t\t\t Primack, \t\t\t\t\t\tJ. R. , & \t\t\t\t\t Rees, \t\t\t\t\t\tM. J. 1991, \t\t\t\t\t, \t\t\t\t\t251, \t\t\t\t\t128 ]",
- "[ Laureijs, \t\t\t\t\t\tR. , \t\t\t\t\t Amiaux, \t\t\t\t\t\tJ. , \t\t\t\t\t Arduini, \t\t\t\t\t\tS. , et al. \t\t\t\t\t2011, \t\t\t\t\t [ \t\t\t\t\tarXiv:1110.3193] \t\t\t\t ]",
- "[ Lesgourgues, \t\t\t\t\t\tJ. 2011, \t\t\t\t\t [ \t\t\t\t\tarXiv:1104.2932] \t\t\t\t ]",
- "[ Lewis, \t\t\t\t\t\tA. , \t\t\t\t\t Challinor, \t\t\t\t\t\tA. , & \t\t\t\t\t Lasenby, \t\t\t\t\t\tA. 2000, \t\t\t\t\t, \t\t\t\t\t538, \t\t\t\t\t473 ]",
- "[ Linder, \t\t\t\t\t\tE. V. 2003, \t\t\t\t\t, \t\t\t\t\t90, \t\t\t\t\t091301 ]",
- "[ Linder, \t\t\t\t\t\tE. V. 2005, \t\t\t\t\t, \t\t\t\t\t72, \t\t\t\t\t043529 ]",
- "[ LoVerde, \t\t\t\t\t\tM. , & \t\t\t\t\t Afshordi, \t\t\t\t\t\tN. 2008, \t\t\t\t\t, \t\t\t\t\t78, \t\t\t\t\t123506 ]",
- "[ Ly, \t\t\t\t\t\tA. , \t\t\t\t\t Marsman, \t\t\t\t\t\tM. , \t\t\t\t\t Verhagen, \t\t\t\t\t\tJ. , \t\t\t\t\t Grasman, \t\t\t\t\t\tR. , & \t\t\t\t\t Wagenmakers, \t\t\t\t\t\tE.-J. 2017, \t\t\t\t\t [ \t\t\t\t\tarXiv: 1705.01064] \t\t\t\t ]",
- "[ Maciaszek, \t\t\t\t\t\tT. , \t\t\t\t\t Ealet, \t\t\t\t\t\tA. , \t\t\t\t\t Gillard, \t\t\t\t\t\tW. , et al. \t\t\t\t\t2022, \t\t\t\t\t, \t\t\t\t\t12180, \t\t\t\t\t121801K ]",
- "[ McDonald, \t\t\t\t\t\tP. , & \t\t\t\t\t Seljak, \t\t\t\t\t\tU. 2009, \t\t\t\t\t, \t\t\t\t\t10, \t\t\t\t\t007 ]",
- "[ Passaglia, \t\t\t\t\t\tS. , \t\t\t\t\t Manzotti, \t\t\t\t\t\tA. , & \t\t\t\t\t Dodelson, \t\t\t\t\t\tS. 2017, \t\t\t\t\t, \t\t\t\t\t95, \t\t\t\t\t123508 ]",
- "[ Percival, \t\t\t\t\t\tW. J. , & \t\t\t\t\t White, \t\t\t\t\t\tM. 2009, \t\t\t\t\t, \t\t\t\t\t393, \t\t\t\t\t297 ]",
- "[ Pozzetti, \t\t\t\t\t\tL. , \t\t\t\t\t Hirata, \t\t\t\t\t\tC. M. , \t\t\t\t\t Geach, \t\t\t\t\t\tJ. E. , et al. \t\t\t\t\t2016, \t\t\t\t\t, \t\t\t\t\t590, \t\t\t\t\tA3 ]",
- "[ Seljak, \t\t\t\t\t\tU. 2009, \t\t\t\t\t, \t\t\t\t\t102, \t\t\t\t\t021302 ]",
- "[ Seljak, \t\t\t\t\t\tU. , \t\t\t\t\t Hamaus, \t\t\t\t\t\tN. , & \t\t\t\t\t Desjacques, \t\t\t\t\t\tV. 2009, \t\t\t\t\t, \t\t\t\t\t103, \t\t\t\t\t091303 ]",
- "[ Sugiyama, \t\t\t\t\t\tS. , \t\t\t\t\t Miyatake, \t\t\t\t\t\tH. , \t\t\t\t\t More, \t\t\t\t\t\tS. , et al. \t\t\t\t\t2023, \t\t\t\t\t, \t\t\t\t\t108, \t\t\t\t\t123521 ]",
- "[ Tanidis, \t\t\t\t\t\tK. , & \t\t\t\t\t Camera, \t\t\t\t\t\tS. 2021, \t\t\t\t\t, \t\t\t\t\t502, \t\t\t\t\t2952 ]",
- "[ Tanidis, \t\t\t\t\t\tK. , \t\t\t\t\t Cardone, \t\t\t\t\t\tV. F. , \t\t\t\t\t Martinelli, \t\t\t\t\t\tM. , et al. \t\t\t\t\t2024, \t\t\t\t\t, \t\t\t\t\t683, \t\t\t\t\tA17 ]",
- "[ Taylor, \t\t\t\t\t\tP. L. , & \t\t\t\t\t Markovic, \t\t\t\t\t\tK. 2022, \t\t\t\t\t, \t\t\t\t\t106, \t\t\t\t\t063536 ]",
- "[ Tessore, \t\t\t\t\t\tN. 2017, \t\t\t\t\t, \t\t\t\t\t471, \t\t\t\t\tL57 ]",
- "[ Tutusaus, \t\t\t\t\t\tI. , \t\t\t\t\t Martinelli, \t\t\t\t\t\tM. , \t\t\t\t\t Cardone, \t\t\t\t\t\tV. F. , et al. \t\t\t\t\t2020, \t\t\t\t\t, \t\t\t\t\t643, \t\t\t\t\tA70 ]",
- "[ Wang, \t\t\t\t\t\tY. 2008, \t\t\t\t\t, \t\t\t\t\t77, \t\t\t\t\t123525 ]",
- "[ Wang, \t\t\t\t\t\tY. , & \t\t\t\t\t Zhao, \t\t\t\t\t\tG.-B. 2020, \t\t\t\t\t, \t\t\t\t\t20, \t\t\t\t\t158 ]",
- "[ Wang, \t\t\t\t\t\tM. S. , \t\t\t\t\t Avila, \t\t\t\t\t\tS. , \t\t\t\t\t Bianchi, \t\t\t\t\t\tD. , \t\t\t\t\t Crittenden, \t\t\t\t\t\tR. , & \t\t\t\t\t Percival, \t\t\t\t\t\tW. J. 2020, \t\t\t\t\t 10, \t\t\t\t\t022 ]",
- "[ Yahia-Cherif, \t\t\t\t\t\tS. , \t\t\t\t\t Blanchard, \t\t\t\t\t\tA. , \t\t\t\t\t Camera, \t\t\t\t\t\tS. , et al. \t\t\t\t\t2021, \t\t\t\t\t, \t\t\t\t\t649, \t\t\t\t\tA52 ]"
+ "[ Abbott, \t\t\t\t\t\tT. M. C. , \t\t\t\t\t Aguena, \t\t\t\t\t\tM. , \t\t\t\t\t Alarcon, \t\t\t\t\t\tA. , et al. \t\t\t\t\t2022, \t\t\t\t\t, \t\t\t\t\t105, \t\t\t\t\t023520 ]",
+ "[ Abramo, \t\t\t\t\t\tL. R. , \t\t\t\t\t Dinarte Ferri, \t\t\t\t\t\tJ. V. , \t\t\t\t\t Tashiro, \t\t\t\t\t\tI. L. , & \t\t\t\t\t Loureiro, \t\t\t\t\t\tA. 2022, \t\t\t\t\t, \t\t\t\t\t8, \t\t\t\t\t073 ]",
+ "[ Albrecht, \t\t\t\t\t\tA. , \t\t\t\t\t Bernstein, \t\t\t\t\t\tG. , \t\t\t\t\t Cahn, \t\t\t\t\t\tR. , et al. \t\t\t\t\t2006, \t\t\t\t\t [ \t\t\t\t\tarXiv:astro-ph/0609591] \t\t\t\t ]",
+ "[ Alcock, \t\t\t\t\t\tC. , & \t\t\t\t\t Paczynski, \t\t\t\t\t\tB. 1979, \t\t\t\t\t, \t\t\t\t\t281, \t\t\t\t\t358 ]",
+ "[ Alimi, \t\t\t\t\t\tJ. M. , \t\t\t\t\t Valls-Gabaud, \t\t\t\t\t\tD. , & \t\t\t\t\t Blanchard, \t\t\t\t\t\tA. 1988, \t\t\t\t\t, \t\t\t\t\t206, \t\t\t\t\tL11 ]",
+ "[ Amendola, \t\t\t\t\t\tL. , \t\t\t\t\t Appleby, \t\t\t\t\t\tS. , \t\t\t\t\t Avgoustidis, \t\t\t\t\t\tA. , et al. \t\t\t\t\t2018, \t\t\t\t\t, \t\t\t\t\t21, \t\t\t\t\t2 ]",
+ "[ Aubourg, \t\t\t\t\t\t\u00c9. , \t\t\t\t\t Bailey, \t\t\t\t\t\tS. , \t\t\t\t\t Bautista, \t\t\t\t\t\tJ. E. , et al. \t\t\t\t\t2015, \t\t\t\t\t, \t\t\t\t\t92, \t\t\t\t\t123516 ]",
+ "[ Blanchard, \t\t\t\t\t\tA. 2022, \t\t\t\t\t, \t\t\t\t\t8, \t\t\t\t\t479 ]",
+ "[ Chevallier, \t\t\t\t\t\tM. , & \t\t\t\t\t Polarski, \t\t\t\t\t\tD. 2001, \t\t\t\t\t, \t\t\t\t\tD10, \t\t\t\t\t213 ]",
+ "[ Cropper, \t\t\t\t\t\tM. , \t\t\t\t\t Pottinger, \t\t\t\t\t\tS. , \t\t\t\t\t Azzollini, \t\t\t\t\t\tR. , et al. \t\t\t\t\t2018, \t\t\t\t\t, \t\t\t\t\t10698, \t\t\t\t\t709 ]",
+ "[ Eisenstein, \t\t\t\t\t\tD. J. , \t\t\t\t\t Zehavi, \t\t\t\t\t\tI. , \t\t\t\t\t Hogg, \t\t\t\t\t\tD. W. , et al. \t\t\t\t\t2005, \t\t\t\t\t, \t\t\t\t\t633, \t\t\t\t\t560 ]",
+ "[ Euclid Collaboration ( \t\t\t\t\t Blanchard, \t\t\t\t\t\tA. , et al.) \t\t\t\t\t2020, \t\t\t\t\t, \t\t\t\t\t642, \t\t\t\t\tA191 ]",
+ "[ Euclid Collaboration ( \t\t\t\t\t Cropper, \t\t\t\t\t\tM. , et al.) \t\t\t\t\t2024a, \t\t\t\t\t, submitted [ \t\t\t\t\tarXiv:2405.13492] \t\t\t\t ]",
+ "[ Euclid Collaboration ( \t\t\t\t\t Jahnke, \t\t\t\t\t\tK. , et al.) \t\t\t\t\t2024b, \t\t\t\t\t, in press, \t\t\t\t\thttps://doi.org/10.1051/0004-6361/202450786 ]",
+ "[ Euclid Collaboration ( \t\t\t\t\t Mellier, \t\t\t\t\t\tY. , et al.) \t\t\t\t\t2024c, \t\t\t\t\t, in press, \t\t\t\t\thttps://doi.org/10.1051/0004-6361/202450010 ]",
+ "[ Hamaus, \t\t\t\t\t\tN. , \t\t\t\t\t Seljak, \t\t\t\t\t\tU. , \t\t\t\t\t Desjacques, \t\t\t\t\t\tV. , \t\t\t\t\t Smith, \t\t\t\t\t\tR. E. , & \t\t\t\t\t Baldauf, \t\t\t\t\t\tT. 2010, \t\t\t\t\t, \t\t\t\t\t82, \t\t\t\t\t043515 ]",
+ "[ Heymans, \t\t\t\t\t\tC. , \t\t\t\t\t Tr\u00f6ster, \t\t\t\t\t\tT. , \t\t\t\t\t Asgari, \t\t\t\t\t\tM. , et al. \t\t\t\t\t2021, \t\t\t\t\t, \t\t\t\t\t646, \t\t\t\t\tA140 ]",
+ "[ Hu, \t\t\t\t\t\tW. , & \t\t\t\t\t Sawicki, \t\t\t\t\t\tI. 2007, \t\t\t\t\t, \t\t\t\t\t76, \t\t\t\t\t104043 ]",
+ "[ Kilbinger, \t\t\t\t\t\tM. 2015, \t\t\t\t\t, \t\t\t\t\t78, \t\t\t\t\t086901 ]",
+ "[ Lahav, \t\t\t\t\t\tO. , \t\t\t\t\t Lilje, \t\t\t\t\t\tP. ?. , \t\t\t\t\t Primack, \t\t\t\t\t\tJ. R. , & \t\t\t\t\t Rees, \t\t\t\t\t\tM. J. 1991, \t\t\t\t\t, \t\t\t\t\t251, \t\t\t\t\t128 ]",
+ "[ Laureijs, \t\t\t\t\t\tR. , \t\t\t\t\t Amiaux, \t\t\t\t\t\tJ. , \t\t\t\t\t Arduini, \t\t\t\t\t\tS. , et al. \t\t\t\t\t2011, \t\t\t\t\t [ \t\t\t\t\tarXiv:1110.3193] \t\t\t\t ]",
+ "[ Lesgourgues, \t\t\t\t\t\tJ. 2011, \t\t\t\t\t [ \t\t\t\t\tarXiv:1104.2932] \t\t\t\t ]",
+ "[ Lewis, \t\t\t\t\t\tA. , \t\t\t\t\t Challinor, \t\t\t\t\t\tA. , & \t\t\t\t\t Lasenby, \t\t\t\t\t\tA. 2000, \t\t\t\t\t, \t\t\t\t\t538, \t\t\t\t\t473 ]",
+ "[ Linder, \t\t\t\t\t\tE. V. 2003, \t\t\t\t\t, \t\t\t\t\t90, \t\t\t\t\t091301 ]",
+ "[ Linder, \t\t\t\t\t\tE. V. 2005, \t\t\t\t\t, \t\t\t\t\t72, \t\t\t\t\t043529 ]",
+ "[ LoVerde, \t\t\t\t\t\tM. , & \t\t\t\t\t Afshordi, \t\t\t\t\t\tN. 2008, \t\t\t\t\t, \t\t\t\t\t78, \t\t\t\t\t123506 ]",
+ "[ Ly, \t\t\t\t\t\tA. , \t\t\t\t\t Marsman, \t\t\t\t\t\tM. , \t\t\t\t\t Verhagen, \t\t\t\t\t\tJ. , \t\t\t\t\t Grasman, \t\t\t\t\t\tR. , & \t\t\t\t\t Wagenmakers, \t\t\t\t\t\tE.-J. 2017, \t\t\t\t\t [ \t\t\t\t\tarXiv: 1705.01064] \t\t\t\t ]",
+ "[ Maciaszek, \t\t\t\t\t\tT. , \t\t\t\t\t Ealet, \t\t\t\t\t\tA. , \t\t\t\t\t Gillard, \t\t\t\t\t\tW. , et al. \t\t\t\t\t2022, \t\t\t\t\t, \t\t\t\t\t12180, \t\t\t\t\t121801K ]",
+ "[ McDonald, \t\t\t\t\t\tP. , & \t\t\t\t\t Seljak, \t\t\t\t\t\tU. 2009, \t\t\t\t\t, \t\t\t\t\t10, \t\t\t\t\t007 ]",
+ "[ Passaglia, \t\t\t\t\t\tS. , \t\t\t\t\t Manzotti, \t\t\t\t\t\tA. , & \t\t\t\t\t Dodelson, \t\t\t\t\t\tS. 2017, \t\t\t\t\t, \t\t\t\t\t95, \t\t\t\t\t123508 ]",
+ "[ Percival, \t\t\t\t\t\tW. J. , & \t\t\t\t\t White, \t\t\t\t\t\tM. 2009, \t\t\t\t\t, \t\t\t\t\t393, \t\t\t\t\t297 ]",
+ "[ Pozzetti, \t\t\t\t\t\tL. , \t\t\t\t\t Hirata, \t\t\t\t\t\tC. M. , \t\t\t\t\t Geach, \t\t\t\t\t\tJ. E. , et al. \t\t\t\t\t2016, \t\t\t\t\t, \t\t\t\t\t590, \t\t\t\t\tA3 ]",
+ "[ Seljak, \t\t\t\t\t\tU. 2009, \t\t\t\t\t, \t\t\t\t\t102, \t\t\t\t\t021302 ]",
+ "[ Seljak, \t\t\t\t\t\tU. , \t\t\t\t\t Hamaus, \t\t\t\t\t\tN. , & \t\t\t\t\t Desjacques, \t\t\t\t\t\tV. 2009, \t\t\t\t\t, \t\t\t\t\t103, \t\t\t\t\t091303 ]",
+ "[ Sugiyama, \t\t\t\t\t\tS. , \t\t\t\t\t Miyatake, \t\t\t\t\t\tH. , \t\t\t\t\t More, \t\t\t\t\t\tS. , et al. \t\t\t\t\t2023, \t\t\t\t\t, \t\t\t\t\t108, \t\t\t\t\t123521 ]",
+ "[ Tanidis, \t\t\t\t\t\tK. , & \t\t\t\t\t Camera, \t\t\t\t\t\tS. 2021, \t\t\t\t\t, \t\t\t\t\t502, \t\t\t\t\t2952 ]",
+ "[ Tanidis, \t\t\t\t\t\tK. , \t\t\t\t\t Cardone, \t\t\t\t\t\tV. F. , \t\t\t\t\t Martinelli, \t\t\t\t\t\tM. , et al. \t\t\t\t\t2024, \t\t\t\t\t, \t\t\t\t\t683, \t\t\t\t\tA17 ]",
+ "[ Taylor, \t\t\t\t\t\tP. L. , & \t\t\t\t\t Markovic, \t\t\t\t\t\tK. 2022, \t\t\t\t\t, \t\t\t\t\t106, \t\t\t\t\t063536 ]",
+ "[ Tessore, \t\t\t\t\t\tN. 2017, \t\t\t\t\t, \t\t\t\t\t471, \t\t\t\t\tL57 ]",
+ "[ Tutusaus, \t\t\t\t\t\tI. , \t\t\t\t\t Martinelli, \t\t\t\t\t\tM. , \t\t\t\t\t Cardone, \t\t\t\t\t\tV. F. , et al. \t\t\t\t\t2020, \t\t\t\t\t, \t\t\t\t\t643, \t\t\t\t\tA70 ]",
+ "[ Wang, \t\t\t\t\t\tY. 2008, \t\t\t\t\t, \t\t\t\t\t77, \t\t\t\t\t123525 ]",
+ "[ Wang, \t\t\t\t\t\tY. , & \t\t\t\t\t Zhao, \t\t\t\t\t\tG.-B. 2020, \t\t\t\t\t, \t\t\t\t\t20, \t\t\t\t\t158 ]",
+ "[ Wang, \t\t\t\t\t\tM. S. , \t\t\t\t\t Avila, \t\t\t\t\t\tS. , \t\t\t\t\t Bianchi, \t\t\t\t\t\tD. , \t\t\t\t\t Crittenden, \t\t\t\t\t\tR. , & \t\t\t\t\t Percival, \t\t\t\t\t\tW. J. 2020, \t\t\t\t\t 10, \t\t\t\t\t022 ]",
+ "[ Yahia-Cherif, \t\t\t\t\t\tS. , \t\t\t\t\t Blanchard, \t\t\t\t\t\tA. , \t\t\t\t\t Camera, \t\t\t\t\t\tS. , et al. \t\t\t\t\t2021, \t\t\t\t\t, \t\t\t\t\t649, \t\t\t\t\tA52 ]"
],
"subtitle": {
"textEnglish": "XLVII. Improving cosmological constraints using a new multi-tracer method with the spectroscopic and photometric samples"
diff --git a/tests/stubdata/output/jats_nature_natsd_12_7375.json b/tests/stubdata/output/jats_nature_natsd_12_7375.json
index 1244bda..4c8a83d 100644
--- a/tests/stubdata/output/jats_nature_natsd_12_7375.json
+++ b/tests/stubdata/output/jats_nature_natsd_12_7375.json
@@ -379,6 +379,23 @@
"collab": "The Diamater Study Group"
}
},
+ {
+ "affiliation": [
+ {
+ "affPubID": [
+ {
+ "affID": "grid.410543.7",
+ "affIDType": "GRID"
+ },
+ {
+ "affID": "0000 0001 2188 478X",
+ "affIDType": "ISNI"
+ }
+ ],
+ "affPubRaw": "Postgraduate Program on Tocogynecology, Department of Gynecology and Obstetrics, Botucatu Medical School, S\u00e3o Paulo State University (UNESP), Botucatu, S\u00e3o Paulo, Brazil"
+ }
+ ]
+ },
{
"affiliation": [
{
diff --git a/tests/stubdata/output/jats_sci_376_521.json b/tests/stubdata/output/jats_sci_376_521.json
index 2c43d28..68fae7e 100644
--- a/tests/stubdata/output/jats_sci_376_521.json
+++ b/tests/stubdata/output/jats_sci_376_521.json
@@ -8,7 +8,7 @@
"collab": true
},
"name": {
- "collab": "The Fermi-LAT Collaboration*\u2020"
+ "collab": "The Fermi-LAT Collaboration"
}
}
],
diff --git a/tests/stubdata/output/jats_springer_EPJC_s10052-023-11699-1.json b/tests/stubdata/output/jats_springer_EPJC_s10052-023-11699-1.json
index ae4600b..ca681a7 100644
--- a/tests/stubdata/output/jats_springer_EPJC_s10052-023-11699-1.json
+++ b/tests/stubdata/output/jats_springer_EPJC_s10052-023-11699-1.json
@@ -73016,6 +73016,139 @@
"name": {
"collab": "ATLAS Collaboration"
}
+ },
+ {
+ "affiliation": [
+ {
+ "affPubID": [
+ {
+ "affID": "grid.47840.3f",
+ "affIDType": "GRID"
+ },
+ {
+ "affID": "0000 0001 2181 7878",
+ "affIDType": "ISNI"
+ }
+ ],
+ "affPubRaw": "University of California, Berkeley, CA, USA"
+ },
+ {
+ "affPubID": [
+ {
+ "affID": "grid.5100.4",
+ "affIDType": "GRID"
+ },
+ {
+ "affID": "0000 0001 2322 497X",
+ "affIDType": "ISNI"
+ }
+ ],
+ "affPubRaw": "Faculty of Physics, University of Bucharest, Bucharest, Romania"
+ },
+ {
+ "affPubID": [
+ {
+ "affID": "grid.462638.d",
+ "affIDType": "GRID"
+ },
+ {
+ "affID": "0000 0001 0696 719X",
+ "affIDType": "ISNI"
+ }
+ ],
+ "affPubRaw": "iThemba Labs, Western Cape, South Africa"
+ },
+ {
+ "affPubID": [
+ {
+ "affID": "grid.412801.e",
+ "affIDType": "GRID"
+ },
+ {
+ "affID": "0000 0004 0610 3238",
+ "affIDType": "ISNI"
+ }
+ ],
+ "affPubRaw": "Department of Physics, University of South Africa, Pretoria, South Africa"
+ },
+ {
+ "affPubID": [
+ {
+ "affID": "grid.442325.6",
+ "affIDType": "GRID"
+ }
+ ],
+ "affPubRaw": "University of Zululand, KwaDlangezwa, South Africa"
+ },
+ {
+ "affPubID": [
+ {
+ "affID": "grid.411840.8",
+ "affIDType": "GRID"
+ },
+ {
+ "affID": "0000 0001 0664 9298",
+ "affIDType": "ISNI"
+ }
+ ],
+ "affPubRaw": "Facult\u00e9 des Sciences Semlalia, Universit\u00e9 Cadi Ayyad, LPHEA-Marrakech, Marrakech, Morocco"
+ },
+ {
+ "affPubID": [
+ {
+ "affID": "grid.501615.6",
+ "affIDType": "GRID"
+ },
+ {
+ "affID": "0000 0004 6007 5493",
+ "affIDType": "ISNI"
+ }
+ ],
+ "affPubRaw": "Institute of Applied Physics, Mohammed VI Polytechnic University, Ben Guerir, Morocco"
+ },
+ {
+ "affPubID": [
+ {
+ "affID": "grid.440573.1",
+ "affIDType": "GRID"
+ },
+ {
+ "affID": "0000 0004 1755 5934",
+ "affIDType": "ISNI"
+ }
+ ],
+ "affPubRaw": "New York University Abu Dhabi, Abu Dhabi, United Arab Emirates"
+ },
+ {
+ "affPubID": [
+ {
+ "affID": "grid.264978.6",
+ "affIDType": "GRID"
+ },
+ {
+ "affID": "0000 0000 9564 9822",
+ "affIDType": "ISNI"
+ }
+ ],
+ "affPubRaw": "University of Georgia, Tbilisi, Georgia"
+ },
+ {
+ "affPubID": [
+ {
+ "affID": "grid.9132.9",
+ "affIDType": "GRID"
+ },
+ {
+ "affID": "0000 0001 2156 142X",
+ "affIDType": "ISNI"
+ }
+ ],
+ "affPubRaw": "CERN, 1211, Geneva 23, Switzerland"
+ }
+ ],
+ "attrib": {
+ "email": "atlas.publications@cern.ch"
+ }
}
],
"copyright": {
diff --git a/tests/stubdata/output/jats_springer_JHEP_JHEP07_2023_200.json b/tests/stubdata/output/jats_springer_JHEP_JHEP07_2023_200.json
index 0d7494a..74b260c 100644
--- a/tests/stubdata/output/jats_springer_JHEP_JHEP07_2023_200.json
+++ b/tests/stubdata/output/jats_springer_JHEP_JHEP07_2023_200.json
@@ -11,6 +11,26 @@
"collab": "The ALICE collaboration"
}
},
+ {
+ "affiliation": [
+ {
+ "affPubID": [
+ {
+ "affID": "grid.9132.9",
+ "affIDType": "GRID"
+ },
+ {
+ "affID": "0000 0001 2156 142X",
+ "affIDType": "ISNI"
+ }
+ ],
+ "affPubRaw": "CERN, CH-1211, Geneva 23, Switzerland"
+ }
+ ],
+ "attrib": {
+ "email": "ALICE-publications@cern.ch"
+ }
+ },
{
"affiliation": [
{
diff --git a/tests/stubdata/output/jats_springer_jhep_2022_05_05.json b/tests/stubdata/output/jats_springer_jhep_2022_05_05.json
index b4d62b1..c8ce4bf 100644
--- a/tests/stubdata/output/jats_springer_jhep_2022_05_05.json
+++ b/tests/stubdata/output/jats_springer_jhep_2022_05_05.json
@@ -11,6 +11,39 @@
"collab": "The CMS collaboration"
}
},
+ {
+ "affiliation": [
+ {
+ "affPubID": [
+ {
+ "affID": "grid.11696.39",
+ "affIDType": "GRID"
+ },
+ {
+ "affID": "0000 0004 1937 0351",
+ "affIDType": "ISNI"
+ }
+ ],
+ "affPubRaw": "Universit\u00e0 di Trento, Trento, Italy"
+ },
+ {
+ "affPubID": [
+ {
+ "affID": "grid.9132.9",
+ "affIDType": "GRID"
+ },
+ {
+ "affID": "0000 0001 2156 142X",
+ "affIDType": "ISNI"
+ }
+ ],
+ "affPubRaw": "CERN, CH-1211, Geneva 23, Switzerland"
+ }
+ ],
+ "attrib": {
+ "email": "cms-publication-committee-chair@cern.ch"
+ }
+ },
{
"affiliation": [
{
diff --git a/tests/test_jats.py b/tests/test_jats.py
index d4c3692..fde4c01 100644
--- a/tests/test_jats.py
+++ b/tests/test_jats.py
@@ -101,6 +101,7 @@ def test_jats(self):
"jats_liebert_no_journal_title",
"jats_liebert_atypon",
"jats_aip_native_strip",
+ "jats_a+a_nested_collab",
]
for f in filenames: