From 8698629d6aebbc015125452877b46a017f87ab33 Mon Sep 17 00:00:00 2001 From: Nathaniel Cook Date: Fri, 22 Sep 2023 12:21:40 -0600 Subject: [PATCH] feat: wait for pod ready Prior to this change keramik only checked the Ceramic API Now its checks the pod ready condition. --- operator/src/network/ceramic.rs | 4 + operator/src/network/controller.rs | 251 +- operator/src/network/stub.rs | 16 +- .../network/testdata/ceramic_pod_status-0-0 | 6 + .../network/testdata/ceramic_pod_status-0-1 | 6 + .../network/testdata/ceramic_ss_weighted_0 | 2 +- .../network/testdata/ceramic_ss_weighted_1 | 2 +- .../network/testdata/ceramic_ss_weighted_2 | 2 +- .../network/testdata/ceramic_ss_weighted_3 | 2 +- .../network/testdata/ceramic_ss_weighted_4 | 2 +- .../network/testdata/ceramic_ss_weighted_5 | 2 +- .../network/testdata/ceramic_ss_weighted_6 | 2 +- .../network/testdata/ceramic_ss_weighted_7 | 2 +- .../network/testdata/ceramic_ss_weighted_8 | 2 +- .../network/testdata/ceramic_weighted_peers | 2 +- .../network/testdata/ceramics_weighted_status | 8066 +---------------- .../ceramic_pod_status-0-0 | 6 + .../ceramic_pod_status-0-1 | 6 + .../ceramic_pod_status-0-2 | 6 + .../ceramic_pod_status-0-3 | 6 + .../ceramic_pod_status-0-4 | 6 + .../ceramic_pod_status-0-5 | 6 + .../ceramic_pod_status-0-6 | 6 + .../ceramic_pod_status-0-7 | 6 + .../ceramic_pod_status-0-8 | 6 + .../ceramic_pod_status-0-9 | 6 + .../ceramic_pod_status-1-0 | 6 + .../ceramic_pod_status-1-1 | 6 + .../ceramic_pod_status-2-0 | 6 + .../ceramic_pod_status-3-0 | 6 + .../ceramic_pod_status-4-0 | 6 + .../ceramic_pod_status-5-0 | 6 + .../ceramic_pod_status-6-0 | 6 + .../ceramic_pod_status-7-0 | 6 + .../ceramic_pod_status-8-0 | 6 + .../ceramic_pod_status-9-0 | 6 + operator/src/utils/mod.rs | 3 +- 37 files changed, 383 insertions(+), 8109 deletions(-) create mode 100644 operator/src/network/testdata/ceramic_pod_status-0-0 create mode 100644 operator/src/network/testdata/ceramic_pod_status-0-1 create mode 100644 operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-0 create mode 100644 operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-1 create mode 100644 operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-2 create mode 100644 operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-3 create mode 100644 operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-4 create mode 100644 operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-5 create mode 100644 operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-6 create mode 100644 operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-7 create mode 100644 operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-8 create mode 100644 operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-9 create mode 100644 operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-1-0 create mode 100644 operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-1-1 create mode 100644 operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-2-0 create mode 100644 operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-3-0 create mode 100644 operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-4-0 create mode 100644 operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-5-0 create mode 100644 operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-6-0 create mode 100644 operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-7-0 create mode 100644 operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-8-0 create mode 100644 operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-9-0 diff --git a/operator/src/network/ceramic.rs b/operator/src/network/ceramic.rs index b2cf0e51..93d0071c 100644 --- a/operator/src/network/ceramic.rs +++ b/operator/src/network/ceramic.rs @@ -212,6 +212,10 @@ impl CeramicInfo { pub fn new_name(&self, name: &str) -> String { format!("{name}-{}", self.suffix) } + /// Determine the pod name + pub fn pod_name(&self, peer: i32) -> String { + format!("{}-{peer}", self.stateful_set) + } /// Determine the IPFS RPC address of a Ceramic peer pub fn ipfs_rpc_addr(&self, ns: &str, peer: i32) -> String { format!( diff --git a/operator/src/network/controller.rs b/operator/src/network/controller.rs index 5c91070b..9c0970a0 100644 --- a/operator/src/network/controller.rs +++ b/operator/src/network/controller.rs @@ -572,9 +572,17 @@ async fn update_peer_status( // Forget all previous status status.peers.clear(); + let pods: Api = Api::namespaced(cx.k_client.clone(), ns); + // Check status of all ceramic peers first for ceramic in ceramics { for i in 0..ceramic.info.replicas { + let pod_name = ceramic.info.pod_name(i); + let pod = pods.get_status(&pod_name).await?; + if !is_pod_ready(&pod) { + debug!(pod_name, "peer is not ready skipping"); + continue; + } let ipfs_rpc_addr = ceramic.info.ipfs_rpc_addr(ns, i); let info = match cx.rpc_client.peer_info(&ipfs_rpc_addr).await { Ok(res) => res, @@ -640,6 +648,19 @@ async fn update_peer_status( Ok(min_connected_peers) } +fn is_pod_ready(pod: &Pod) -> bool { + if let Some(status) = &pod.status { + if let Some(conditions) = &status.conditions { + for condition in conditions { + if condition.type_ == "Ready" && condition.status == "True" { + return true; + } + } + } + } + false +} + async fn is_secret_missing( cx: Arc>, ns: &str, @@ -732,7 +753,7 @@ mod tests { use k8s_openapi::{ api::{ batch::v1::{Job, JobStatus}, - core::v1::Secret, + core::v1::{Pod, PodCondition, PodStatus, Secret}, }, apimachinery::pkg::api::resource::Quantity, ByteString, @@ -794,6 +815,26 @@ mod tests { }); } + fn not_ready_pod_status() -> Option { + Some(Pod { + status: None, + ..Default::default() + }) + } + fn ready_pod_status() -> Option { + Some(Pod { + status: Some(PodStatus { + conditions: Some(vec![PodCondition { + status: "True".to_string(), + type_: "Ready".to_string(), + ..Default::default() + }]), + ..Default::default() + }), + ..Default::default() + }) + } + // This tests defines the default stubs, // meaning the default stubs are the request response pairs // that occur when reconiling a default spec and status. @@ -813,7 +854,7 @@ mod tests { } #[tokio::test] #[traced_test] - async fn reconcile_two_peers() { + async fn reconcile_two_peers_simple() { // Setup network spec and status let network = Network::test() .with_spec(NetworkSpec { @@ -864,6 +905,14 @@ mod tests { "matchLabels": { "app": "ceramic" "#]]); + stub.ceramic_pod_status.push(( + expect_file!["./testdata/ceramic_pod_status-0-0"].into(), + ready_pod_status(), + )); + stub.ceramic_pod_status.push(( + expect_file!["./testdata/ceramic_pod_status-0-1"].into(), + ready_pod_status(), + )); stub.keramik_peers_configmap.patch(expect![[r#" --- original +++ modified @@ -938,6 +987,101 @@ mod tests { expect_file!["./testdata/bootstrap_job_two_peers_apply"], Some(Job::default()), )); + + let (testctx, api_handle) = Context::test(mock_rpc_client); + let fakeserver = ApiServerVerifier::new(api_handle); + let mocksrv = stub.run(fakeserver); + reconcile(Arc::new(network), testctx) + .await + .expect("reconciler"); + timeout_after_1s(mocksrv).await; + } + + #[tokio::test] + #[traced_test] + async fn reconcile_two_peers_not_ready() { + // Setup network spec and status + let network = Network::test() + .with_spec(NetworkSpec { + replicas: 2, + ..Default::default() + }) + .with_status(NetworkStatus { + replicas: 2, + ready_replicas: 0, + namespace: Some("keramik-test".to_owned()), + peers: vec![], + }); + // Setup peer info + let mut mock_rpc_client = MockIpfsRpcClientTest::new(); + // We expect only cas will be checked since both pods report they are not ready + mock_cas_peer_info_ready(&mut mock_rpc_client); + mock_connected_peer_status(&mut mock_rpc_client); + + let mut stub = Stub::default().with_network(network.clone()); + // Patch expected request values + stub.ceramics[0].stateful_set.patch(expect![[r#" + --- original + +++ modified + @@ -17,7 +17,7 @@ + }, + "spec": { + "podManagementPolicy": "Parallel", + - "replicas": 0, + + "replicas": 2, + "selector": { + "matchLabels": { + "app": "ceramic" + "#]]); + stub.ceramic_pod_status.push(( + expect_file!["./testdata/ceramic_pod_status-0-0"].into(), + not_ready_pod_status(), + )); + stub.ceramic_pod_status.push(( + expect_file!["./testdata/ceramic_pod_status-0-1"].into(), + not_ready_pod_status(), + )); + stub.keramik_peers_configmap.patch(expect![[r#" + --- original + +++ modified + @@ -9,7 +9,7 @@ + "apiVersion": "v1", + "kind": "ConfigMap", + "data": { + - "peers.json": "[]" + + "peers.json": "[{\"ipfs\":{\"peerId\":\"cas_peer_id\",\"ipfsRpcAddr\":\"http://cas-ipfs:5001\",\"p2pAddrs\":[\"/ip4/10.0.0.3/tcp/4001/p2p/cas_peer_id\"]}}]" + }, + "metadata": { + "labels": { + "#]]); + stub.status.patch(expect![[r#" + --- original + +++ modified + @@ -7,10 +7,20 @@ + }, + body: { + "status": { + - "replicas": 0, + + "replicas": 2, + "readyReplicas": 0, + - "namespace": null, + - "peers": [] + + "namespace": "keramik-test", + + "peers": [ + + { + + "ipfs": { + + "peerId": "cas_peer_id", + + "ipfsRpcAddr": "http://cas-ipfs:5001", + + "p2pAddrs": [ + + "/ip4/10.0.0.3/tcp/4001/p2p/cas_peer_id" + + ] + + } + + } + + ] + } + }, + } + "#]]); let (testctx, api_handle) = Context::test(mock_rpc_client); let fakeserver = ApiServerVerifier::new(api_handle); let mocksrv = stub.run(fakeserver); @@ -998,6 +1142,14 @@ mod tests { "matchLabels": { "app": "ceramic" "#]]); + stub.ceramic_pod_status.push(( + expect_file!["./testdata/ceramic_pod_status-0-0"].into(), + ready_pod_status(), + )); + stub.ceramic_pod_status.push(( + expect_file!["./testdata/ceramic_pod_status-0-1"].into(), + ready_pod_status(), + )); stub.keramik_peers_configmap.patch(expect![[r#" --- original +++ modified @@ -1135,6 +1287,14 @@ mod tests { "matchLabels": { "app": "ceramic" "#]]); + stub.ceramic_pod_status.push(( + expect_file!["./testdata/ceramic_pod_status-0-0"].into(), + ready_pod_status(), + )); + stub.ceramic_pod_status.push(( + expect_file!["./testdata/ceramic_pod_status-0-1"].into(), + ready_pod_status(), + )); stub.keramik_peers_configmap.patch(expect![[r#" --- original +++ modified @@ -1264,6 +1424,14 @@ mod tests { "matchLabels": { "app": "ceramic" "#]]); + stub.ceramic_pod_status.push(( + expect_file!["./testdata/ceramic_pod_status-0-0"].into(), + ready_pod_status(), + )); + stub.ceramic_pod_status.push(( + expect_file!["./testdata/ceramic_pod_status-0-1"].into(), + ready_pod_status(), + )); stub.keramik_peers_configmap.patch(expect![[r#" --- original +++ modified @@ -1386,6 +1554,14 @@ mod tests { "matchLabels": { "app": "ceramic" "#]]); + stub.ceramic_pod_status.push(( + expect_file!["./testdata/ceramic_pod_status-0-0"].into(), + ready_pod_status(), + )); + stub.ceramic_pod_status.push(( + expect_file!["./testdata/ceramic_pod_status-0-1"].into(), + ready_pod_status(), + )); stub.keramik_peers_configmap.patch(expect![[r#" --- original +++ modified @@ -2736,59 +2912,31 @@ mod tests { #[tokio::test] async fn multiple_weighted_ceramics() { // Setup network spec and status + let weights = [10, 2, 1, 1, 1, 1, 1, 1, 1, 1]; + let replicas = 20; + // To keep it simple we want weights to be the replica counts + // Assert this is true. + assert_eq!(weights.iter().sum::(), replicas); let network = Network::test().with_spec(NetworkSpec { - replicas: 1024, - ceramic: vec![ - CeramicSpec { - weight: Some(512), - ..Default::default() - }, - CeramicSpec { - weight: Some(256), - ..Default::default() - }, - CeramicSpec { - weight: Some(128), - ..Default::default() - }, - CeramicSpec { - weight: Some(64), - ..Default::default() - }, - CeramicSpec { - weight: Some(32), - ..Default::default() - }, - CeramicSpec { - weight: Some(16), + replicas, + ceramic: weights + .iter() + .map(|w| CeramicSpec { + weight: Some(*w), ..Default::default() - }, - CeramicSpec { - weight: Some(8), - ..Default::default() - }, - CeramicSpec { - weight: Some(4), - ..Default::default() - }, - CeramicSpec { - weight: Some(2), - ..Default::default() - }, - CeramicSpec { - weight: Some(1), - ..Default::default() - }, - ], + }) + .collect(), + ..Default::default() }); - let mock_rpc_client = ipfs_rpc_mock_n(1025); + // + 1 for cas + let mock_rpc_client = ipfs_rpc_mock_n(replicas as usize + 1); let mut stub = Stub::default().with_network(network.clone()); // Remove first deletes stub.ceramic_deletes = Vec::new(); // Expect new ceramics stub.ceramics = Vec::new(); - for i in 0..10 { + for i in 0..weights.len() { stub.ceramics.push(CeramicStub { configmaps: vec![ expect_file!["./testdata/default_stubs/ceramic_init_configmap"].into(), @@ -2797,6 +2945,17 @@ mod tests { service: expect_file![format!("./testdata/ceramic_svc_weighted_{i}")].into(), }); } + for (i, w) in weights.iter().enumerate() { + for j in 0..*w { + stub.ceramic_pod_status.push(( + expect_file![format!( + "./testdata/multiple_weighted_ceramics/ceramic_pod_status-{i}-{j}" + )] + .into(), + ready_pod_status(), + )); + } + } stub.keramik_peers_configmap = expect_file!["./testdata/ceramic_weighted_peers"].into(); // Bootstrap is applied if we have at least two peers. // However we do not expect to see any GET/DELETE for the bootstrap job as all peers report diff --git a/operator/src/network/stub.rs b/operator/src/network/stub.rs index 3d0f1631..c0f4193b 100644 --- a/operator/src/network/stub.rs +++ b/operator/src/network/stub.rs @@ -2,7 +2,11 @@ use expect_patch::ExpectPatch; use expect_test::{expect_file, ExpectFile}; -use k8s_openapi::api::{apps::v1::StatefulSetSpec, batch::v1::Job, core::v1::Secret}; +use k8s_openapi::api::{ + apps::v1::StatefulSet, + batch::v1::Job, + core::v1::{Pod, Secret}, +}; use crate::{ labels::managed_labels, @@ -54,6 +58,7 @@ pub struct Stub { pub ceramic_admin_secret_source: Option<(ExpectPatch, Option, bool)>, pub ceramic_admin_secret: Option<(ExpectPatch, Option)>, pub ceramic_deletes: Vec>, + pub ceramic_pod_status: Vec<(ExpectPatch, Option)>, pub keramik_peers_configmap: ExpectPatch, pub ceramics: Vec, pub cas_service: ExpectPatch, @@ -127,6 +132,7 @@ impl Default for Stub { expect_file!["./testdata/default_stubs/delete_ceramic_ss_9"].into(), expect_file!["./testdata/default_stubs/delete_ceramic_svc_9"].into(), ], + ceramic_pod_status: vec![], ceramics: vec![CeramicStub { configmaps: vec![ expect_file!["./testdata/default_stubs/ceramic_init_configmap"].into(), @@ -261,7 +267,7 @@ impl Stub { } for ceramic_delete in self.ceramic_deletes { fakeserver - .handle_request_response(ceramic_delete, None::<&StatefulSetSpec>) + .handle_request_response(ceramic_delete, None::<&StatefulSet>) .await .expect("ceramic should delete"); } @@ -281,6 +287,12 @@ impl Stub { .await .expect("ceramic stateful set should apply"); } + for ceramic_pod_status in self.ceramic_pod_status { + fakeserver + .handle_request_response(ceramic_pod_status.0, ceramic_pod_status.1.as_ref()) + .await + .expect("ceramic pod status should exist"); + } fakeserver .handle_apply(self.keramik_peers_configmap) .await diff --git a/operator/src/network/testdata/ceramic_pod_status-0-0 b/operator/src/network/testdata/ceramic_pod_status-0-0 new file mode 100644 index 00000000..9ed905e5 --- /dev/null +++ b/operator/src/network/testdata/ceramic_pod_status-0-0 @@ -0,0 +1,6 @@ +Request { + method: "GET", + uri: "/api/v1/namespaces/keramik-test/pods/ceramic-0-0/status", + headers: {}, + body: , +} diff --git a/operator/src/network/testdata/ceramic_pod_status-0-1 b/operator/src/network/testdata/ceramic_pod_status-0-1 new file mode 100644 index 00000000..a6d0ef51 --- /dev/null +++ b/operator/src/network/testdata/ceramic_pod_status-0-1 @@ -0,0 +1,6 @@ +Request { + method: "GET", + uri: "/api/v1/namespaces/keramik-test/pods/ceramic-0-1/status", + headers: {}, + body: , +} diff --git a/operator/src/network/testdata/ceramic_ss_weighted_0 b/operator/src/network/testdata/ceramic_ss_weighted_0 index da2ae373..84be3706 100644 --- a/operator/src/network/testdata/ceramic_ss_weighted_0 +++ b/operator/src/network/testdata/ceramic_ss_weighted_0 @@ -17,7 +17,7 @@ Request { }, "spec": { "podManagementPolicy": "Parallel", - "replicas": 513, + "replicas": 10, "selector": { "matchLabels": { "app": "ceramic" diff --git a/operator/src/network/testdata/ceramic_ss_weighted_1 b/operator/src/network/testdata/ceramic_ss_weighted_1 index 17ee9974..a4e25477 100644 --- a/operator/src/network/testdata/ceramic_ss_weighted_1 +++ b/operator/src/network/testdata/ceramic_ss_weighted_1 @@ -17,7 +17,7 @@ Request { }, "spec": { "podManagementPolicy": "Parallel", - "replicas": 256, + "replicas": 2, "selector": { "matchLabels": { "app": "ceramic" diff --git a/operator/src/network/testdata/ceramic_ss_weighted_2 b/operator/src/network/testdata/ceramic_ss_weighted_2 index 02973db3..d05de693 100644 --- a/operator/src/network/testdata/ceramic_ss_weighted_2 +++ b/operator/src/network/testdata/ceramic_ss_weighted_2 @@ -17,7 +17,7 @@ Request { }, "spec": { "podManagementPolicy": "Parallel", - "replicas": 128, + "replicas": 1, "selector": { "matchLabels": { "app": "ceramic" diff --git a/operator/src/network/testdata/ceramic_ss_weighted_3 b/operator/src/network/testdata/ceramic_ss_weighted_3 index 76efe3ea..2ff48183 100644 --- a/operator/src/network/testdata/ceramic_ss_weighted_3 +++ b/operator/src/network/testdata/ceramic_ss_weighted_3 @@ -17,7 +17,7 @@ Request { }, "spec": { "podManagementPolicy": "Parallel", - "replicas": 64, + "replicas": 1, "selector": { "matchLabels": { "app": "ceramic" diff --git a/operator/src/network/testdata/ceramic_ss_weighted_4 b/operator/src/network/testdata/ceramic_ss_weighted_4 index 9dda2beb..a6a67c75 100644 --- a/operator/src/network/testdata/ceramic_ss_weighted_4 +++ b/operator/src/network/testdata/ceramic_ss_weighted_4 @@ -17,7 +17,7 @@ Request { }, "spec": { "podManagementPolicy": "Parallel", - "replicas": 32, + "replicas": 1, "selector": { "matchLabels": { "app": "ceramic" diff --git a/operator/src/network/testdata/ceramic_ss_weighted_5 b/operator/src/network/testdata/ceramic_ss_weighted_5 index daeb7dc4..8ffe246e 100644 --- a/operator/src/network/testdata/ceramic_ss_weighted_5 +++ b/operator/src/network/testdata/ceramic_ss_weighted_5 @@ -17,7 +17,7 @@ Request { }, "spec": { "podManagementPolicy": "Parallel", - "replicas": 16, + "replicas": 1, "selector": { "matchLabels": { "app": "ceramic" diff --git a/operator/src/network/testdata/ceramic_ss_weighted_6 b/operator/src/network/testdata/ceramic_ss_weighted_6 index 3a09c896..ff05f9c9 100644 --- a/operator/src/network/testdata/ceramic_ss_weighted_6 +++ b/operator/src/network/testdata/ceramic_ss_weighted_6 @@ -17,7 +17,7 @@ Request { }, "spec": { "podManagementPolicy": "Parallel", - "replicas": 8, + "replicas": 1, "selector": { "matchLabels": { "app": "ceramic" diff --git a/operator/src/network/testdata/ceramic_ss_weighted_7 b/operator/src/network/testdata/ceramic_ss_weighted_7 index 74261001..90037ae8 100644 --- a/operator/src/network/testdata/ceramic_ss_weighted_7 +++ b/operator/src/network/testdata/ceramic_ss_weighted_7 @@ -17,7 +17,7 @@ Request { }, "spec": { "podManagementPolicy": "Parallel", - "replicas": 4, + "replicas": 1, "selector": { "matchLabels": { "app": "ceramic" diff --git a/operator/src/network/testdata/ceramic_ss_weighted_8 b/operator/src/network/testdata/ceramic_ss_weighted_8 index 40d6d607..4751782b 100644 --- a/operator/src/network/testdata/ceramic_ss_weighted_8 +++ b/operator/src/network/testdata/ceramic_ss_weighted_8 @@ -17,7 +17,7 @@ Request { }, "spec": { "podManagementPolicy": "Parallel", - "replicas": 2, + "replicas": 1, "selector": { "matchLabels": { "app": "ceramic" diff --git a/operator/src/network/testdata/ceramic_weighted_peers b/operator/src/network/testdata/ceramic_weighted_peers index 10c8ab8d..34a1e93d 100644 --- a/operator/src/network/testdata/ceramic_weighted_peers +++ b/operator/src/network/testdata/ceramic_weighted_peers @@ -9,7 +9,7 @@ Request { "apiVersion": "v1", "kind": "ConfigMap", "data": { - "peers.json": "[{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-0.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-0.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-0.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-1.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-1.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-1.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-2.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-2.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-2.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-3.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-3.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-3.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-4.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-4.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-4.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-5.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-5.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-5.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-6.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-6.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-6.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-7.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-7.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-7.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-8.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-8.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-8.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-9.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-9.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-9.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-10.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-10.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-10.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-11.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-11.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-11.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-12.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-12.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-12.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-13.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-13.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-13.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-14.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-14.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-14.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-15.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-15.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-15.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-16.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-16.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-16.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-17.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-17.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-17.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-18.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-18.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-18.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-19.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-19.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-19.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-20.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-20.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-20.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-21.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-21.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-21.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-22.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-22.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-22.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-23.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-23.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-23.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-24.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-24.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-24.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-25.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-25.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-25.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-26.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-26.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-26.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-27.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-27.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-27.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-28.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-28.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-28.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-29.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-29.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-29.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-30.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-30.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-30.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-31.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-31.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-31.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-32.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-32.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-32.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-33.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-33.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-33.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-34.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-34.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-34.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-35.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-35.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-35.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-36.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-36.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-36.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-37.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-37.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-37.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-38.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-38.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-38.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-39.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-39.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-39.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-40.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-40.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-40.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-41.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-41.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-41.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-42.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-42.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-42.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-43.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-43.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-43.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-44.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-44.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-44.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-45.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-45.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-45.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-46.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-46.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-46.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-47.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-47.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-47.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-48.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-48.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-48.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-49.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-49.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-49.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-50.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-50.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-50.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-51.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-51.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-51.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-52.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-52.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-52.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-53.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-53.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-53.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-54.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-54.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-54.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-55.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-55.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-55.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-56.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-56.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-56.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-57.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-57.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-57.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-58.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-58.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-58.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-59.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-59.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-59.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-60.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-60.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-60.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-61.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-61.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-61.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-62.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-62.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-62.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-63.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-63.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-63.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-64.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-64.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-64.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-65.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-65.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-65.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-66.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-66.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-66.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-67.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-67.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-67.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-68.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-68.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-68.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-69.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-69.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-69.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-70.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-70.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-70.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-71.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-71.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-71.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-72.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-72.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-72.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-73.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-73.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-73.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-74.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-74.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-74.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-75.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-75.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-75.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-76.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-76.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-76.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-77.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-77.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-77.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-78.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-78.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-78.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-79.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-79.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-79.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-80.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-80.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-80.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-81.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-81.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-81.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-82.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-82.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-82.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-83.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-83.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-83.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-84.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-84.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-84.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-85.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-85.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-85.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-86.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-86.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-86.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-87.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-87.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-87.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-88.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-88.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-88.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-89.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-89.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-89.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-90.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-90.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-90.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-91.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-91.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-91.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-92.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-92.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-92.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-93.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-93.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-93.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-94.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-94.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-94.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-95.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-95.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-95.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-96.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-96.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-96.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-97.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-97.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-97.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-98.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-98.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-98.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-99.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-99.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-99.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-100.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-100.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-100.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-101.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-101.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-101.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-102.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-102.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-102.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-103.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-103.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-103.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-104.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-104.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-104.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-105.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-105.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-105.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-106.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-106.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-106.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-107.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-107.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-107.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-108.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-108.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-108.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-109.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-109.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-109.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-110.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-110.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-110.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-111.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-111.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-111.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-112.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-112.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-112.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-113.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-113.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-113.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-114.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-114.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-114.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-115.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-115.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-115.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-116.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-116.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-116.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-117.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-117.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-117.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-118.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-118.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-118.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-119.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-119.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-119.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-120.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-120.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-120.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-121.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-121.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-121.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-122.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-122.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-122.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-123.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-123.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-123.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-124.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-124.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-124.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-125.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-125.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-125.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-126.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-126.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-126.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-127.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-127.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-127.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-128.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-128.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-128.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-129.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-129.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-129.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-130.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-130.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-130.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-131.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-131.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-131.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-132.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-132.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-132.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-133.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-133.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-133.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-134.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-134.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-134.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-135.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-135.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-135.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-136.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-136.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-136.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-137.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-137.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-137.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-138.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-138.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-138.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-139.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-139.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-139.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-140.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-140.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-140.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-141.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-141.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-141.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-142.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-142.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-142.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-143.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-143.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-143.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-144.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-144.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-144.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-145.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-145.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-145.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-146.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-146.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-146.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-147.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-147.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-147.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-148.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-148.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-148.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-149.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-149.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-149.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-150.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-150.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-150.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-151.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-151.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-151.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-152.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-152.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-152.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-153.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-153.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-153.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-154.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-154.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-154.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-155.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-155.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-155.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-156.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-156.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-156.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-157.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-157.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-157.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-158.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-158.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-158.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-159.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-159.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-159.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-160.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-160.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-160.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-161.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-161.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-161.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-162.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-162.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-162.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-163.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-163.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-163.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-164.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-164.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-164.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-165.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-165.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-165.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-166.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-166.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-166.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-167.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-167.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-167.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-168.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-168.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-168.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-169.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-169.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-169.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-170.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-170.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-170.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-171.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-171.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-171.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-172.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-172.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-172.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-173.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-173.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-173.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-174.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-174.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-174.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-175.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-175.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-175.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-176.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-176.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-176.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-177.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-177.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-177.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-178.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-178.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-178.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-179.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-179.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-179.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-180.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-180.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-180.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-181.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-181.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-181.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-182.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-182.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-182.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-183.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-183.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-183.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-184.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-184.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-184.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-185.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-185.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-185.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-186.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-186.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-186.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-187.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-187.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-187.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-188.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-188.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-188.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-189.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-189.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-189.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-190.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-190.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-190.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-191.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-191.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-191.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-192.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-192.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-192.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-193.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-193.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-193.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-194.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-194.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-194.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-195.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-195.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-195.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-196.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-196.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-196.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-197.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-197.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-197.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-198.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-198.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-198.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-199.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-199.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-199.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-200.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-200.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-200.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-201.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-201.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-201.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-202.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-202.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-202.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-203.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-203.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-203.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-204.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-204.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-204.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-205.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-205.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-205.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-206.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-206.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-206.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-207.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-207.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-207.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-208.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-208.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-208.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-209.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-209.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-209.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-210.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-210.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-210.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-211.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-211.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-211.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-212.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-212.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-212.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-213.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-213.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-213.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-214.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-214.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-214.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-215.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-215.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-215.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-216.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-216.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-216.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-217.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-217.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-217.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-218.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-218.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-218.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-219.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-219.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-219.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-220.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-220.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-220.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-221.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-221.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-221.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-222.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-222.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-222.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-223.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-223.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-223.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-224.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-224.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-224.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-225.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-225.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-225.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-226.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-226.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-226.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-227.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-227.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-227.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-228.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-228.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-228.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-229.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-229.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-229.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-230.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-230.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-230.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-231.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-231.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-231.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-232.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-232.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-232.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-233.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-233.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-233.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-234.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-234.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-234.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-235.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-235.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-235.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-236.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-236.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-236.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-237.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-237.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-237.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-238.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-238.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-238.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-239.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-239.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-239.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-240.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-240.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-240.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-241.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-241.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-241.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-242.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-242.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-242.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-243.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-243.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-243.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-244.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-244.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-244.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-245.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-245.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-245.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-246.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-246.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-246.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-247.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-247.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-247.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-248.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-248.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-248.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-249.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-249.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-249.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-250.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-250.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-250.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-251.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-251.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-251.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-252.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-252.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-252.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-253.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-253.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-253.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-254.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-254.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-254.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-255.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-255.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-255.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-256.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-256.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-256.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-257.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-257.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-257.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-258.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-258.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-258.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-259.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-259.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-259.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-260.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-260.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-260.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-261.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-261.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-261.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-262.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-262.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-262.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-263.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-263.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-263.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-264.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-264.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-264.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-265.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-265.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-265.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-266.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-266.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-266.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-267.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-267.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-267.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-268.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-268.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-268.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-269.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-269.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-269.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-270.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-270.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-270.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-271.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-271.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-271.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-272.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-272.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-272.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-273.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-273.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-273.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-274.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-274.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-274.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-275.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-275.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-275.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-276.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-276.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-276.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-277.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-277.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-277.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-278.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-278.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-278.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-279.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-279.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-279.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-280.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-280.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-280.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-281.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-281.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-281.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-282.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-282.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-282.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-283.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-283.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-283.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-284.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-284.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-284.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-285.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-285.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-285.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-286.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-286.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-286.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-287.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-287.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-287.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-288.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-288.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-288.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-289.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-289.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-289.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-290.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-290.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-290.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-291.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-291.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-291.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-292.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-292.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-292.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-293.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-293.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-293.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-294.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-294.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-294.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-295.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-295.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-295.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-296.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-296.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-296.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-297.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-297.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-297.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-298.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-298.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-298.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-299.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-299.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-299.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-300.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-300.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-300.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-301.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-301.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-301.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-302.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-302.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-302.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-303.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-303.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-303.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-304.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-304.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-304.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-305.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-305.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-305.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-306.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-306.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-306.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-307.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-307.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-307.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-308.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-308.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-308.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-309.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-309.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-309.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-310.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-310.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-310.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-311.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-311.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-311.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-312.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-312.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-312.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-313.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-313.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-313.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-314.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-314.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-314.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-315.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-315.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-315.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-316.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-316.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-316.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-317.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-317.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-317.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-318.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-318.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-318.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-319.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-319.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-319.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-320.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-320.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-320.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-321.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-321.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-321.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-322.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-322.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-322.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-323.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-323.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-323.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-324.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-324.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-324.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-325.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-325.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-325.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-326.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-326.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-326.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-327.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-327.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-327.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-328.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-328.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-328.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-329.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-329.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-329.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-330.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-330.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-330.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-331.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-331.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-331.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-332.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-332.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-332.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-333.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-333.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-333.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-334.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-334.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-334.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-335.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-335.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-335.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-336.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-336.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-336.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-337.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-337.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-337.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-338.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-338.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-338.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-339.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-339.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-339.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-340.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-340.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-340.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-341.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-341.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-341.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-342.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-342.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-342.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-343.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-343.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-343.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-344.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-344.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-344.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-345.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-345.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-345.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-346.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-346.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-346.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-347.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-347.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-347.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-348.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-348.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-348.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-349.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-349.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-349.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-350.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-350.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-350.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-351.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-351.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-351.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-352.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-352.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-352.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-353.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-353.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-353.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-354.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-354.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-354.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-355.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-355.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-355.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-356.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-356.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-356.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-357.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-357.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-357.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-358.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-358.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-358.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-359.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-359.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-359.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-360.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-360.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-360.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-361.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-361.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-361.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-362.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-362.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-362.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-363.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-363.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-363.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-364.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-364.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-364.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-365.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-365.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-365.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-366.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-366.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-366.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-367.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-367.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-367.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-368.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-368.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-368.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-369.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-369.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-369.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-370.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-370.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-370.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-371.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-371.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-371.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-372.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-372.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-372.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-373.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-373.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-373.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-374.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-374.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-374.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-375.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-375.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-375.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-376.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-376.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-376.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-377.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-377.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-377.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-378.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-378.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-378.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-379.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-379.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-379.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-380.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-380.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-380.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-381.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-381.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-381.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-382.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-382.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-382.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-383.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-383.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-383.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-384.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-384.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-384.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-385.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-385.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-385.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-386.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-386.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-386.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-387.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-387.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-387.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-388.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-388.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-388.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-389.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-389.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-389.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-390.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-390.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-390.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-391.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-391.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-391.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-392.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-392.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-392.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-393.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-393.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-393.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-394.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-394.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-394.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-395.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-395.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-395.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-396.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-396.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-396.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-397.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-397.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-397.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-398.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-398.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-398.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-399.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-399.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-399.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-400.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-400.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-400.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-401.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-401.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-401.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-402.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-402.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-402.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-403.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-403.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-403.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-404.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-404.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-404.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-405.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-405.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-405.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-406.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-406.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-406.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-407.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-407.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-407.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-408.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-408.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-408.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-409.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-409.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-409.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-410.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-410.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-410.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-411.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-411.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-411.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-412.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-412.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-412.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-413.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-413.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-413.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-414.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-414.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-414.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-415.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-415.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-415.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-416.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-416.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-416.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-417.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-417.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-417.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-418.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-418.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-418.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-419.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-419.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-419.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-420.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-420.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-420.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-421.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-421.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-421.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-422.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-422.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-422.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-423.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-423.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-423.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-424.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-424.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-424.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-425.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-425.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-425.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-426.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-426.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-426.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-427.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-427.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-427.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-428.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-428.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-428.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-429.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-429.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-429.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-430.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-430.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-430.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-431.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-431.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-431.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-432.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-432.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-432.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-433.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-433.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-433.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-434.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-434.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-434.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-435.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-435.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-435.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-436.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-436.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-436.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-437.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-437.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-437.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-438.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-438.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-438.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-439.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-439.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-439.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-440.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-440.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-440.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-441.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-441.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-441.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-442.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-442.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-442.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-443.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-443.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-443.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-444.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-444.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-444.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-445.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-445.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-445.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-446.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-446.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-446.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-447.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-447.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-447.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-448.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-448.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-448.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-449.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-449.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-449.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-450.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-450.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-450.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-451.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-451.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-451.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-452.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-452.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-452.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-453.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-453.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-453.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-454.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-454.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-454.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-455.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-455.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-455.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-456.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-456.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-456.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-457.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-457.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-457.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-458.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-458.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-458.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-459.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-459.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-459.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-460.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-460.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-460.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-461.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-461.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-461.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-462.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-462.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-462.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-463.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-463.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-463.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-464.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-464.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-464.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-465.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-465.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-465.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-466.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-466.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-466.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-467.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-467.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-467.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-468.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-468.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-468.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-469.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-469.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-469.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-470.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-470.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-470.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-471.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-471.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-471.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-472.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-472.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-472.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-473.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-473.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-473.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-474.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-474.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-474.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-475.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-475.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-475.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-476.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-476.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-476.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-477.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-477.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-477.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-478.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-478.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-478.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-479.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-479.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-479.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-480.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-480.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-480.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-481.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-481.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-481.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-482.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-482.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-482.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-483.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-483.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-483.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-484.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-484.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-484.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-485.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-485.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-485.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-486.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-486.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-486.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-487.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-487.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-487.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-488.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-488.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-488.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-489.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-489.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-489.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-490.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-490.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-490.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-491.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-491.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-491.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-492.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-492.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-492.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-493.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-493.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-493.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-494.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-494.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-494.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-495.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-495.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-495.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-496.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-496.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-496.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-497.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-497.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-497.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-498.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-498.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-498.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-499.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-499.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-499.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-500.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-500.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-500.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-501.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-501.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-501.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-502.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-502.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-502.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-503.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-503.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-503.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-504.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-504.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-504.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-505.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-505.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-505.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-506.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-506.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-506.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-507.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-507.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-507.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-508.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-508.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-508.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-509.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-509.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-509.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-510.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-510.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-510.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-511.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-511.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-511.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-512.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-512.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-512.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-0.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-0.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-0.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-1.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-1.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-1.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-2.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-2.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-2.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-3.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-3.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-3.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-4.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-4.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-4.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-5.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-5.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-5.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-6.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-6.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-6.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-7.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-7.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-7.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-8.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-8.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-8.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-9.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-9.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-9.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-10.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-10.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-10.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-11.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-11.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-11.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-12.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-12.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-12.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-13.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-13.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-13.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-14.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-14.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-14.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-15.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-15.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-15.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-16.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-16.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-16.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-17.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-17.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-17.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-18.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-18.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-18.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-19.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-19.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-19.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-20.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-20.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-20.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-21.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-21.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-21.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-22.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-22.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-22.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-23.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-23.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-23.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-24.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-24.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-24.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-25.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-25.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-25.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-26.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-26.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-26.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-27.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-27.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-27.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-28.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-28.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-28.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-29.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-29.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-29.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-30.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-30.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-30.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-31.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-31.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-31.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-32.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-32.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-32.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-33.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-33.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-33.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-34.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-34.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-34.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-35.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-35.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-35.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-36.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-36.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-36.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-37.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-37.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-37.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-38.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-38.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-38.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-39.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-39.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-39.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-40.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-40.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-40.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-41.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-41.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-41.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-42.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-42.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-42.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-43.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-43.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-43.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-44.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-44.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-44.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-45.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-45.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-45.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-46.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-46.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-46.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-47.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-47.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-47.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-48.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-48.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-48.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-49.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-49.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-49.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-50.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-50.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-50.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-51.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-51.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-51.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-52.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-52.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-52.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-53.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-53.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-53.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-54.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-54.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-54.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-55.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-55.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-55.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-56.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-56.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-56.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-57.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-57.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-57.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-58.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-58.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-58.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-59.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-59.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-59.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-60.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-60.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-60.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-61.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-61.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-61.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-62.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-62.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-62.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-63.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-63.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-63.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-64.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-64.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-64.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-65.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-65.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-65.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-66.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-66.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-66.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-67.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-67.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-67.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-68.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-68.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-68.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-69.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-69.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-69.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-70.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-70.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-70.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-71.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-71.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-71.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-72.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-72.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-72.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-73.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-73.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-73.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-74.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-74.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-74.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-75.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-75.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-75.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-76.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-76.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-76.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-77.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-77.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-77.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-78.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-78.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-78.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-79.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-79.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-79.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-80.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-80.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-80.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-81.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-81.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-81.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-82.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-82.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-82.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-83.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-83.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-83.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-84.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-84.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-84.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-85.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-85.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-85.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-86.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-86.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-86.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-87.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-87.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-87.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-88.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-88.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-88.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-89.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-89.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-89.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-90.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-90.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-90.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-91.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-91.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-91.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-92.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-92.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-92.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-93.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-93.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-93.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-94.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-94.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-94.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-95.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-95.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-95.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-96.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-96.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-96.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-97.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-97.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-97.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-98.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-98.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-98.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-99.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-99.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-99.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-100.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-100.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-100.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-101.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-101.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-101.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-102.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-102.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-102.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-103.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-103.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-103.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-104.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-104.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-104.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-105.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-105.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-105.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-106.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-106.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-106.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-107.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-107.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-107.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-108.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-108.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-108.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-109.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-109.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-109.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-110.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-110.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-110.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-111.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-111.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-111.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-112.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-112.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-112.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-113.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-113.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-113.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-114.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-114.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-114.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-115.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-115.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-115.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-116.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-116.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-116.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-117.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-117.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-117.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-118.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-118.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-118.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-119.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-119.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-119.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-120.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-120.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-120.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-121.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-121.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-121.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-122.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-122.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-122.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-123.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-123.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-123.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-124.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-124.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-124.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-125.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-125.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-125.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-126.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-126.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-126.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-127.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-127.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-127.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-128.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-128.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-128.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-129.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-129.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-129.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-130.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-130.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-130.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-131.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-131.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-131.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-132.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-132.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-132.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-133.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-133.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-133.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-134.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-134.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-134.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-135.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-135.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-135.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-136.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-136.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-136.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-137.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-137.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-137.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-138.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-138.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-138.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-139.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-139.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-139.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-140.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-140.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-140.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-141.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-141.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-141.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-142.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-142.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-142.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-143.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-143.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-143.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-144.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-144.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-144.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-145.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-145.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-145.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-146.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-146.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-146.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-147.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-147.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-147.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-148.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-148.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-148.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-149.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-149.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-149.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-150.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-150.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-150.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-151.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-151.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-151.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-152.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-152.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-152.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-153.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-153.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-153.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-154.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-154.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-154.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-155.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-155.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-155.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-156.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-156.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-156.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-157.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-157.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-157.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-158.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-158.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-158.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-159.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-159.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-159.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-160.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-160.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-160.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-161.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-161.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-161.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-162.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-162.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-162.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-163.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-163.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-163.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-164.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-164.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-164.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-165.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-165.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-165.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-166.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-166.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-166.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-167.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-167.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-167.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-168.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-168.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-168.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-169.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-169.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-169.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-170.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-170.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-170.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-171.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-171.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-171.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-172.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-172.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-172.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-173.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-173.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-173.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-174.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-174.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-174.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-175.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-175.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-175.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-176.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-176.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-176.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-177.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-177.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-177.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-178.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-178.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-178.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-179.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-179.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-179.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-180.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-180.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-180.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-181.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-181.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-181.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-182.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-182.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-182.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-183.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-183.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-183.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-184.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-184.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-184.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-185.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-185.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-185.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-186.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-186.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-186.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-187.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-187.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-187.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-188.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-188.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-188.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-189.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-189.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-189.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-190.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-190.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-190.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-191.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-191.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-191.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-192.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-192.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-192.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-193.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-193.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-193.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-194.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-194.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-194.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-195.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-195.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-195.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-196.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-196.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-196.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-197.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-197.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-197.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-198.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-198.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-198.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-199.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-199.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-199.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-200.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-200.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-200.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-201.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-201.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-201.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-202.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-202.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-202.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-203.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-203.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-203.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-204.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-204.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-204.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-205.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-205.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-205.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-206.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-206.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-206.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-207.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-207.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-207.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-208.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-208.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-208.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-209.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-209.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-209.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-210.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-210.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-210.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-211.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-211.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-211.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-212.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-212.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-212.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-213.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-213.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-213.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-214.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-214.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-214.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-215.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-215.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-215.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-216.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-216.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-216.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-217.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-217.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-217.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-218.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-218.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-218.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-219.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-219.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-219.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-220.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-220.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-220.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-221.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-221.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-221.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-222.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-222.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-222.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-223.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-223.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-223.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-224.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-224.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-224.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-225.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-225.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-225.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-226.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-226.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-226.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-227.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-227.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-227.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-228.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-228.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-228.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-229.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-229.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-229.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-230.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-230.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-230.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-231.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-231.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-231.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-232.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-232.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-232.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-233.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-233.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-233.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-234.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-234.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-234.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-235.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-235.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-235.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-236.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-236.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-236.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-237.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-237.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-237.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-238.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-238.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-238.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-239.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-239.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-239.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-240.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-240.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-240.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-241.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-241.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-241.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-242.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-242.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-242.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-243.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-243.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-243.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-244.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-244.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-244.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-245.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-245.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-245.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-246.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-246.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-246.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-247.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-247.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-247.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-248.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-248.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-248.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-249.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-249.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-249.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-250.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-250.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-250.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-251.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-251.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-251.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-252.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-252.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-252.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-253.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-253.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-253.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-254.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-254.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-254.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-255.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-255.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-255.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-0.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-0.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-0.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-1.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-1.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-1.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-2.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-2.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-2.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-3.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-3.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-3.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-4.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-4.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-4.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-5.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-5.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-5.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-6.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-6.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-6.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-7.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-7.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-7.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-8.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-8.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-8.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-9.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-9.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-9.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-10.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-10.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-10.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-11.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-11.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-11.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-12.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-12.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-12.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-13.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-13.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-13.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-14.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-14.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-14.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-15.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-15.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-15.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-16.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-16.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-16.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-17.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-17.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-17.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-18.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-18.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-18.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-19.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-19.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-19.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-20.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-20.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-20.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-21.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-21.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-21.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-22.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-22.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-22.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-23.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-23.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-23.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-24.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-24.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-24.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-25.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-25.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-25.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-26.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-26.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-26.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-27.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-27.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-27.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-28.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-28.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-28.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-29.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-29.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-29.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-30.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-30.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-30.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-31.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-31.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-31.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-32.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-32.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-32.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-33.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-33.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-33.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-34.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-34.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-34.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-35.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-35.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-35.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-36.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-36.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-36.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-37.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-37.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-37.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-38.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-38.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-38.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-39.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-39.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-39.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-40.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-40.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-40.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-41.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-41.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-41.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-42.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-42.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-42.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-43.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-43.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-43.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-44.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-44.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-44.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-45.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-45.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-45.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-46.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-46.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-46.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-47.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-47.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-47.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-48.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-48.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-48.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-49.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-49.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-49.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-50.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-50.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-50.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-51.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-51.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-51.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-52.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-52.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-52.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-53.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-53.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-53.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-54.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-54.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-54.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-55.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-55.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-55.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-56.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-56.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-56.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-57.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-57.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-57.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-58.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-58.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-58.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-59.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-59.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-59.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-60.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-60.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-60.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-61.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-61.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-61.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-62.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-62.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-62.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-63.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-63.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-63.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-64.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-64.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-64.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-65.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-65.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-65.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-66.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-66.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-66.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-67.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-67.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-67.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-68.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-68.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-68.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-69.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-69.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-69.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-70.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-70.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-70.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-71.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-71.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-71.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-72.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-72.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-72.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-73.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-73.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-73.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-74.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-74.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-74.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-75.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-75.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-75.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-76.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-76.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-76.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-77.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-77.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-77.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-78.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-78.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-78.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-79.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-79.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-79.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-80.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-80.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-80.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-81.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-81.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-81.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-82.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-82.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-82.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-83.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-83.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-83.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-84.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-84.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-84.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-85.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-85.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-85.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-86.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-86.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-86.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-87.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-87.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-87.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-88.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-88.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-88.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-89.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-89.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-89.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-90.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-90.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-90.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-91.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-91.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-91.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-92.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-92.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-92.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-93.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-93.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-93.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-94.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-94.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-94.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-95.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-95.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-95.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-96.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-96.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-96.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-97.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-97.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-97.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-98.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-98.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-98.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-99.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-99.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-99.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-100.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-100.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-100.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-101.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-101.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-101.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-102.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-102.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-102.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-103.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-103.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-103.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-104.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-104.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-104.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-105.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-105.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-105.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-106.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-106.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-106.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-107.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-107.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-107.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-108.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-108.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-108.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-109.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-109.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-109.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-110.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-110.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-110.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-111.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-111.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-111.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-112.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-112.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-112.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-113.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-113.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-113.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-114.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-114.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-114.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-115.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-115.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-115.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-116.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-116.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-116.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-117.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-117.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-117.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-118.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-118.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-118.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-119.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-119.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-119.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-120.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-120.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-120.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-121.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-121.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-121.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-122.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-122.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-122.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-123.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-123.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-123.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-124.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-124.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-124.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-125.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-125.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-125.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-126.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-126.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-126.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-127.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-127.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-127.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-0.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-0.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-0.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-1.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-1.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-1.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-2.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-2.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-2.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-3.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-3.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-3.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-4.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-4.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-4.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-5.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-5.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-5.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-6.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-6.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-6.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-7.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-7.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-7.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-8.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-8.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-8.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-9.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-9.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-9.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-10.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-10.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-10.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-11.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-11.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-11.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-12.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-12.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-12.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-13.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-13.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-13.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-14.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-14.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-14.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-15.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-15.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-15.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-16.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-16.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-16.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-17.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-17.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-17.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-18.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-18.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-18.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-19.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-19.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-19.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-20.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-20.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-20.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-21.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-21.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-21.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-22.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-22.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-22.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-23.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-23.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-23.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-24.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-24.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-24.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-25.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-25.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-25.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-26.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-26.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-26.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-27.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-27.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-27.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-28.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-28.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-28.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-29.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-29.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-29.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-30.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-30.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-30.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-31.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-31.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-31.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-32.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-32.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-32.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-33.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-33.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-33.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-34.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-34.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-34.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-35.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-35.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-35.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-36.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-36.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-36.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-37.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-37.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-37.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-38.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-38.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-38.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-39.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-39.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-39.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-40.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-40.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-40.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-41.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-41.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-41.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-42.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-42.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-42.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-43.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-43.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-43.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-44.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-44.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-44.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-45.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-45.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-45.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-46.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-46.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-46.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-47.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-47.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-47.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-48.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-48.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-48.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-49.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-49.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-49.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-50.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-50.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-50.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-51.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-51.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-51.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-52.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-52.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-52.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-53.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-53.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-53.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-54.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-54.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-54.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-55.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-55.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-55.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-56.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-56.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-56.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-57.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-57.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-57.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-58.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-58.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-58.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-59.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-59.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-59.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-60.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-60.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-60.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-61.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-61.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-61.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-62.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-62.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-62.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-63.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-63.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-63.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-0.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-0.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-0.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-1.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-1.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-1.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-2.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-2.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-2.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-3.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-3.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-3.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-4.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-4.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-4.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-5.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-5.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-5.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-6.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-6.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-6.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-7.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-7.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-7.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-8.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-8.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-8.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-9.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-9.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-9.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-10.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-10.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-10.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-11.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-11.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-11.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-12.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-12.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-12.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-13.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-13.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-13.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-14.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-14.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-14.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-15.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-15.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-15.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-16.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-16.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-16.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-17.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-17.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-17.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-18.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-18.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-18.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-19.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-19.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-19.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-20.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-20.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-20.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-21.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-21.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-21.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-22.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-22.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-22.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-23.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-23.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-23.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-24.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-24.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-24.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-25.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-25.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-25.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-26.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-26.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-26.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-27.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-27.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-27.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-28.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-28.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-28.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-29.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-29.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-29.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-30.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-30.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-30.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-31.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-31.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-31.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-5-0.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-5-0.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-5-0.ceramic-5.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-5-1.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-5-1.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-5-1.ceramic-5.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-5-2.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-5-2.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-5-2.ceramic-5.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-5-3.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-5-3.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-5-3.ceramic-5.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-5-4.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-5-4.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-5-4.ceramic-5.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-5-5.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-5-5.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-5-5.ceramic-5.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-5-6.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-5-6.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-5-6.ceramic-5.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-5-7.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-5-7.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-5-7.ceramic-5.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-5-8.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-5-8.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-5-8.ceramic-5.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-5-9.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-5-9.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-5-9.ceramic-5.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-5-10.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-5-10.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-5-10.ceramic-5.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-5-11.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-5-11.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-5-11.ceramic-5.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-5-12.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-5-12.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-5-12.ceramic-5.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-5-13.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-5-13.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-5-13.ceramic-5.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-5-14.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-5-14.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-5-14.ceramic-5.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-5-15.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-5-15.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-5-15.ceramic-5.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-6-0.ceramic-6.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-6-0.ceramic-6.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-6-0.ceramic-6.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-6-1.ceramic-6.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-6-1.ceramic-6.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-6-1.ceramic-6.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-6-2.ceramic-6.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-6-2.ceramic-6.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-6-2.ceramic-6.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-6-3.ceramic-6.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-6-3.ceramic-6.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-6-3.ceramic-6.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-6-4.ceramic-6.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-6-4.ceramic-6.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-6-4.ceramic-6.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-6-5.ceramic-6.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-6-5.ceramic-6.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-6-5.ceramic-6.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-6-6.ceramic-6.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-6-6.ceramic-6.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-6-6.ceramic-6.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-6-7.ceramic-6.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-6-7.ceramic-6.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-6-7.ceramic-6.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-7-0.ceramic-7.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-7-0.ceramic-7.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-7-0.ceramic-7.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-7-1.ceramic-7.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-7-1.ceramic-7.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-7-1.ceramic-7.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-7-2.ceramic-7.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-7-2.ceramic-7.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-7-2.ceramic-7.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-7-3.ceramic-7.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-7-3.ceramic-7.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-7-3.ceramic-7.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-8-0.ceramic-8.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-8-0.ceramic-8.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-8-0.ceramic-8.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-8-1.ceramic-8.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-8-1.ceramic-8.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-8-1.ceramic-8.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-9-0.ceramic-9.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-9-0.ceramic-9.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-9-0.ceramic-9.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ipfs\":{\"peerId\":\"peer_id_http://cas-ipfs-0.cas-ipfs.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://cas-ipfs-0.cas-ipfs.keramik-test.svc.cluster.local:5001\",\"p2pAddrs\":[]}}]" + "peers.json": "[{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-0.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-0.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-0.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-1.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-1.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-1.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-2.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-2.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-2.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-3.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-3.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-3.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-4.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-4.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-4.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-5.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-5.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-5.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-6.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-6.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-6.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-7.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-7.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-7.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-8.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-8.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-8.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-0-9.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-0-9.ceramic-0.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-0-9.ceramic-0.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-0.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-0.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-0.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-1-1.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-1-1.ceramic-1.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-1-1.ceramic-1.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-2-0.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-2-0.ceramic-2.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-2-0.ceramic-2.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-3-0.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-3-0.ceramic-3.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-3-0.ceramic-3.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-4-0.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-4-0.ceramic-4.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-4-0.ceramic-4.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-5-0.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-5-0.ceramic-5.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-5-0.ceramic-5.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-6-0.ceramic-6.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-6-0.ceramic-6.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-6-0.ceramic-6.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-7-0.ceramic-7.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-7-0.ceramic-7.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-7-0.ceramic-7.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-8-0.ceramic-8.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-8-0.ceramic-8.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-8-0.ceramic-8.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ceramic\":{\"peerId\":\"peer_id_http://ceramic-9-0.ceramic-9.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://ceramic-9-0.ceramic-9.keramik-test.svc.cluster.local:5001\",\"ceramicAddr\":\"http://ceramic-9-0.ceramic-9.keramik-test.svc.cluster.local:7007\",\"p2pAddrs\":[]}},{\"ipfs\":{\"peerId\":\"peer_id_http://cas-ipfs-0.cas-ipfs.keramik-test.svc.cluster.local:5001\",\"ipfsRpcAddr\":\"http://cas-ipfs-0.cas-ipfs.keramik-test.svc.cluster.local:5001\",\"p2pAddrs\":[]}}]" }, "metadata": { "labels": { diff --git a/operator/src/network/testdata/ceramics_weighted_status b/operator/src/network/testdata/ceramics_weighted_status index fef2057a..ba6f7d3c 100644 --- a/operator/src/network/testdata/ceramics_weighted_status +++ b/operator/src/network/testdata/ceramics_weighted_status @@ -7,8 +7,8 @@ Request { }, body: { "status": { - "replicas": 1024, - "readyReplicas": 1024, + "replicas": 20, + "readyReplicas": 20, "namespace": null, "peers": [ { @@ -93,7865 +93,41 @@ Request { }, { "ceramic": { - "peerId": "peer_id_http://ceramic-0-10.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-10.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-10.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-11.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-11.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-11.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-12.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-12.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-12.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-13.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-13.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-13.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-14.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-14.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-14.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-15.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-15.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-15.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-16.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-16.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-16.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-17.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-17.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-17.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-18.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-18.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-18.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-19.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-19.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-19.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-20.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-20.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-20.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-21.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-21.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-21.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-22.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-22.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-22.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-23.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-23.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-23.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-24.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-24.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-24.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-25.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-25.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-25.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-26.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-26.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-26.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-27.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-27.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-27.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-28.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-28.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-28.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-29.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-29.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-29.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-30.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-30.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-30.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-31.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-31.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-31.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-32.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-32.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-32.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-33.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-33.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-33.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-34.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-34.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-34.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-35.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-35.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-35.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-36.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-36.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-36.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-37.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-37.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-37.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-38.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-38.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-38.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-39.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-39.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-39.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-40.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-40.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-40.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-41.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-41.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-41.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-42.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-42.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-42.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-43.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-43.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-43.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-44.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-44.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-44.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-45.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-45.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-45.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-46.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-46.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-46.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-47.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-47.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-47.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-48.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-48.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-48.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-49.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-49.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-49.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-50.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-50.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-50.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-51.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-51.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-51.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-52.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-52.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-52.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-53.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-53.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-53.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-54.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-54.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-54.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-55.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-55.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-55.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-56.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-56.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-56.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-57.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-57.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-57.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-58.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-58.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-58.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-59.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-59.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-59.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-60.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-60.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-60.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-61.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-61.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-61.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-62.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-62.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-62.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-63.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-63.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-63.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-64.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-64.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-64.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-65.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-65.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-65.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-66.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-66.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-66.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-67.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-67.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-67.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-68.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-68.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-68.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-69.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-69.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-69.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-70.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-70.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-70.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-71.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-71.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-71.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-72.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-72.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-72.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-73.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-73.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-73.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-74.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-74.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-74.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-75.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-75.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-75.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-76.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-76.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-76.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-77.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-77.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-77.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-78.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-78.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-78.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-79.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-79.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-79.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-80.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-80.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-80.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-81.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-81.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-81.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-82.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-82.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-82.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-83.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-83.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-83.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-84.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-84.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-84.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-85.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-85.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-85.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-86.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-86.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-86.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-87.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-87.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-87.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-88.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-88.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-88.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-89.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-89.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-89.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-90.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-90.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-90.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-91.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-91.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-91.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-92.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-92.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-92.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-93.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-93.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-93.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-94.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-94.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-94.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-95.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-95.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-95.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-96.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-96.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-96.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-97.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-97.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-97.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-98.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-98.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-98.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-99.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-99.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-99.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-100.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-100.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-100.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-101.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-101.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-101.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-102.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-102.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-102.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-103.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-103.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-103.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-104.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-104.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-104.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-105.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-105.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-105.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-106.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-106.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-106.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-107.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-107.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-107.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-108.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-108.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-108.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-109.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-109.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-109.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-110.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-110.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-110.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-111.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-111.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-111.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-112.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-112.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-112.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-113.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-113.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-113.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-114.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-114.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-114.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-115.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-115.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-115.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-116.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-116.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-116.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-117.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-117.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-117.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-118.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-118.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-118.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-119.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-119.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-119.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-120.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-120.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-120.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-121.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-121.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-121.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-122.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-122.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-122.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-123.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-123.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-123.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-124.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-124.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-124.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-125.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-125.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-125.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-126.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-126.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-126.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-127.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-127.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-127.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-128.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-128.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-128.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-129.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-129.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-129.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-130.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-130.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-130.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-131.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-131.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-131.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-132.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-132.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-132.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-133.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-133.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-133.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-134.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-134.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-134.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-135.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-135.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-135.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-136.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-136.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-136.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-137.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-137.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-137.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-138.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-138.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-138.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-139.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-139.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-139.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-140.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-140.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-140.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-141.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-141.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-141.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-142.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-142.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-142.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-143.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-143.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-143.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-144.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-144.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-144.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-145.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-145.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-145.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-146.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-146.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-146.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-147.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-147.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-147.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-148.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-148.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-148.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-149.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-149.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-149.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-150.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-150.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-150.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-151.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-151.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-151.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-152.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-152.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-152.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-153.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-153.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-153.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-154.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-154.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-154.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-155.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-155.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-155.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-156.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-156.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-156.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-157.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-157.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-157.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-158.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-158.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-158.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-159.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-159.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-159.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-160.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-160.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-160.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-161.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-161.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-161.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-162.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-162.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-162.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-163.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-163.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-163.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-164.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-164.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-164.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-165.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-165.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-165.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-166.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-166.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-166.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-167.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-167.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-167.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-168.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-168.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-168.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-169.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-169.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-169.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-170.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-170.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-170.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-171.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-171.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-171.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-172.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-172.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-172.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-173.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-173.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-173.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-174.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-174.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-174.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-175.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-175.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-175.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-176.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-176.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-176.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-177.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-177.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-177.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-178.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-178.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-178.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-179.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-179.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-179.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-180.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-180.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-180.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-181.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-181.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-181.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-182.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-182.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-182.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-183.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-183.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-183.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-184.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-184.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-184.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-185.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-185.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-185.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-186.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-186.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-186.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-187.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-187.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-187.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-188.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-188.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-188.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-189.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-189.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-189.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-190.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-190.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-190.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-191.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-191.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-191.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-192.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-192.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-192.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-193.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-193.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-193.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-194.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-194.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-194.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-195.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-195.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-195.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-196.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-196.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-196.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-197.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-197.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-197.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-198.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-198.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-198.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-199.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-199.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-199.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-200.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-200.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-200.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-201.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-201.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-201.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-202.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-202.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-202.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-203.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-203.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-203.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-204.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-204.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-204.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-205.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-205.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-205.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-206.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-206.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-206.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-207.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-207.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-207.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-208.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-208.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-208.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-209.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-209.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-209.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-210.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-210.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-210.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-211.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-211.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-211.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-212.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-212.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-212.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-213.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-213.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-213.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-214.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-214.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-214.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-215.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-215.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-215.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-216.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-216.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-216.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-217.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-217.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-217.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-218.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-218.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-218.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-219.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-219.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-219.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-220.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-220.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-220.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-221.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-221.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-221.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-222.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-222.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-222.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-223.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-223.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-223.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-224.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-224.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-224.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-225.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-225.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-225.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-226.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-226.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-226.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-227.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-227.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-227.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-228.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-228.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-228.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-229.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-229.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-229.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-230.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-230.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-230.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-231.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-231.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-231.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-232.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-232.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-232.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-233.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-233.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-233.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-234.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-234.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-234.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-235.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-235.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-235.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-236.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-236.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-236.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-237.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-237.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-237.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-238.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-238.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-238.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-239.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-239.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-239.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-240.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-240.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-240.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-241.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-241.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-241.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-242.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-242.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-242.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-243.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-243.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-243.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-244.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-244.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-244.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-245.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-245.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-245.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-246.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-246.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-246.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-247.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-247.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-247.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-248.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-248.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-248.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-249.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-249.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-249.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-250.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-250.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-250.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-251.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-251.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-251.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-252.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-252.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-252.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-253.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-253.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-253.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-254.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-254.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-254.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-255.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-255.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-255.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-256.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-256.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-256.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-257.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-257.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-257.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-258.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-258.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-258.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-259.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-259.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-259.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-260.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-260.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-260.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-261.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-261.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-261.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-262.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-262.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-262.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-263.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-263.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-263.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-264.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-264.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-264.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-265.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-265.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-265.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-266.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-266.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-266.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-267.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-267.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-267.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-268.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-268.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-268.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-269.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-269.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-269.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-270.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-270.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-270.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-271.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-271.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-271.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-272.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-272.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-272.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-273.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-273.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-273.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-274.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-274.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-274.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-275.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-275.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-275.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-276.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-276.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-276.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-277.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-277.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-277.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-278.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-278.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-278.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-279.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-279.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-279.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-280.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-280.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-280.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-281.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-281.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-281.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-282.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-282.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-282.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-283.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-283.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-283.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-284.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-284.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-284.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-285.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-285.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-285.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-286.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-286.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-286.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-287.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-287.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-287.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-288.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-288.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-288.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-289.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-289.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-289.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-290.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-290.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-290.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-291.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-291.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-291.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-292.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-292.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-292.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-293.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-293.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-293.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-294.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-294.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-294.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-295.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-295.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-295.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-296.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-296.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-296.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-297.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-297.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-297.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-298.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-298.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-298.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-299.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-299.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-299.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-300.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-300.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-300.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-301.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-301.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-301.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-302.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-302.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-302.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-303.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-303.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-303.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-304.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-304.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-304.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-305.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-305.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-305.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-306.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-306.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-306.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-307.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-307.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-307.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-308.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-308.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-308.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-309.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-309.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-309.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-310.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-310.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-310.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-311.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-311.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-311.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-312.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-312.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-312.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-313.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-313.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-313.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-314.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-314.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-314.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-315.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-315.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-315.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-316.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-316.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-316.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-317.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-317.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-317.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-318.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-318.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-318.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-319.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-319.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-319.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-320.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-320.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-320.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-321.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-321.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-321.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-322.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-322.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-322.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-323.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-323.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-323.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-324.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-324.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-324.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-325.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-325.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-325.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-326.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-326.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-326.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-327.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-327.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-327.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-328.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-328.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-328.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-329.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-329.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-329.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-330.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-330.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-330.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-331.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-331.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-331.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-332.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-332.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-332.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-333.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-333.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-333.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-334.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-334.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-334.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-335.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-335.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-335.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-336.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-336.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-336.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-337.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-337.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-337.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-338.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-338.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-338.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-339.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-339.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-339.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-340.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-340.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-340.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-341.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-341.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-341.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-342.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-342.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-342.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-343.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-343.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-343.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-344.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-344.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-344.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-345.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-345.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-345.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-346.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-346.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-346.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-347.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-347.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-347.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-348.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-348.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-348.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-349.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-349.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-349.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-350.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-350.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-350.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-351.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-351.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-351.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-352.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-352.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-352.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-353.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-353.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-353.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-354.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-354.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-354.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-355.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-355.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-355.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-356.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-356.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-356.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-357.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-357.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-357.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-358.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-358.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-358.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-359.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-359.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-359.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-360.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-360.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-360.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-361.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-361.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-361.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-362.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-362.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-362.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-363.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-363.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-363.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-364.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-364.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-364.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-365.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-365.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-365.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-366.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-366.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-366.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-367.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-367.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-367.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-368.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-368.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-368.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-369.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-369.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-369.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-370.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-370.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-370.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-371.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-371.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-371.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-372.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-372.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-372.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-373.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-373.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-373.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-374.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-374.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-374.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-375.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-375.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-375.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-376.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-376.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-376.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-377.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-377.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-377.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-378.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-378.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-378.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-379.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-379.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-379.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-380.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-380.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-380.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-381.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-381.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-381.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-382.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-382.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-382.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-383.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-383.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-383.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-384.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-384.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-384.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-385.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-385.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-385.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-386.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-386.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-386.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-387.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-387.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-387.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-388.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-388.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-388.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-389.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-389.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-389.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-390.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-390.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-390.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-391.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-391.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-391.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-392.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-392.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-392.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-393.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-393.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-393.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-394.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-394.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-394.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-395.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-395.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-395.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-396.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-396.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-396.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-397.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-397.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-397.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-398.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-398.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-398.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-399.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-399.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-399.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-400.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-400.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-400.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-401.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-401.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-401.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-402.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-402.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-402.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-403.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-403.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-403.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-404.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-404.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-404.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-405.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-405.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-405.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-406.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-406.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-406.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-407.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-407.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-407.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-408.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-408.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-408.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-409.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-409.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-409.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-410.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-410.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-410.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-411.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-411.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-411.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-412.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-412.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-412.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-413.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-413.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-413.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-414.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-414.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-414.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-415.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-415.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-415.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-416.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-416.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-416.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-417.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-417.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-417.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-418.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-418.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-418.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-419.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-419.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-419.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-420.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-420.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-420.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-421.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-421.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-421.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-422.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-422.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-422.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-423.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-423.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-423.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-424.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-424.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-424.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-425.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-425.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-425.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-426.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-426.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-426.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-427.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-427.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-427.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-428.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-428.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-428.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-429.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-429.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-429.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-430.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-430.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-430.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-431.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-431.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-431.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-432.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-432.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-432.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-433.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-433.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-433.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-434.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-434.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-434.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-435.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-435.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-435.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-436.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-436.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-436.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-437.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-437.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-437.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-438.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-438.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-438.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-439.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-439.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-439.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-440.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-440.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-440.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-441.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-441.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-441.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-442.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-442.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-442.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-443.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-443.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-443.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-444.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-444.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-444.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-445.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-445.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-445.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-446.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-446.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-446.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-447.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-447.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-447.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-448.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-448.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-448.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-449.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-449.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-449.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-450.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-450.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-450.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-451.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-451.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-451.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-452.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-452.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-452.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-453.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-453.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-453.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-454.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-454.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-454.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-455.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-455.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-455.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-456.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-456.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-456.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-457.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-457.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-457.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-458.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-458.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-458.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-459.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-459.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-459.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-460.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-460.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-460.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-461.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-461.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-461.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-462.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-462.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-462.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-463.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-463.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-463.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-464.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-464.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-464.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-465.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-465.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-465.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-466.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-466.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-466.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-467.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-467.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-467.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-468.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-468.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-468.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-469.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-469.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-469.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-470.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-470.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-470.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-471.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-471.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-471.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-472.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-472.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-472.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-473.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-473.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-473.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-474.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-474.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-474.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-475.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-475.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-475.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-476.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-476.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-476.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-477.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-477.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-477.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-478.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-478.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-478.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-479.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-479.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-479.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-480.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-480.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-480.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-481.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-481.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-481.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-482.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-482.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-482.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-483.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-483.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-483.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-484.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-484.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-484.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-485.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-485.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-485.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-486.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-486.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-486.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-487.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-487.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-487.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-488.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-488.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-488.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-489.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-489.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-489.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-490.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-490.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-490.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-491.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-491.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-491.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-492.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-492.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-492.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-493.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-493.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-493.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-494.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-494.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-494.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-495.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-495.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-495.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-496.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-496.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-496.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-497.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-497.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-497.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-498.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-498.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-498.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-499.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-499.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-499.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-500.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-500.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-500.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-501.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-501.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-501.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-502.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-502.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-502.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-503.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-503.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-503.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-504.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-504.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-504.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-505.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-505.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-505.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-506.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-506.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-506.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-507.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-507.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-507.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-508.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-508.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-508.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-509.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-509.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-509.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-510.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-510.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-510.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-511.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-511.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-511.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-0-512.ceramic-0.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-0-512.ceramic-0.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-0-512.ceramic-0.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-0.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-0.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-0.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-1.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-1.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-1.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-2.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-2.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-2.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-3.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-3.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-3.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-4.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-4.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-4.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-5.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-5.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-5.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-6.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-6.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-6.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-7.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-7.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-7.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-8.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-8.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-8.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-9.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-9.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-9.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-10.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-10.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-10.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-11.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-11.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-11.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-12.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-12.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-12.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-13.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-13.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-13.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-14.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-14.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-14.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-15.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-15.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-15.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-16.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-16.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-16.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-17.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-17.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-17.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-18.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-18.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-18.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-19.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-19.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-19.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-20.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-20.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-20.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-21.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-21.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-21.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-22.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-22.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-22.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-23.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-23.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-23.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-24.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-24.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-24.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-25.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-25.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-25.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-26.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-26.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-26.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-27.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-27.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-27.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-28.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-28.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-28.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-29.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-29.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-29.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-30.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-30.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-30.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-31.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-31.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-31.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-32.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-32.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-32.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-33.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-33.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-33.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-34.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-34.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-34.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-35.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-35.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-35.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-36.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-36.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-36.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-37.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-37.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-37.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-38.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-38.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-38.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-39.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-39.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-39.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-40.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-40.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-40.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-41.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-41.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-41.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-42.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-42.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-42.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-43.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-43.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-43.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-44.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-44.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-44.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-45.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-45.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-45.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-46.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-46.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-46.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-47.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-47.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-47.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-48.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-48.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-48.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-49.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-49.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-49.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-50.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-50.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-50.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-51.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-51.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-51.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-52.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-52.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-52.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-53.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-53.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-53.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-54.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-54.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-54.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-55.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-55.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-55.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-56.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-56.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-56.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-57.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-57.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-57.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-58.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-58.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-58.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-59.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-59.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-59.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-60.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-60.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-60.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-61.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-61.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-61.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-62.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-62.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-62.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-63.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-63.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-63.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-64.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-64.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-64.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-65.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-65.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-65.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-66.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-66.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-66.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-67.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-67.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-67.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-68.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-68.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-68.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-69.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-69.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-69.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-70.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-70.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-70.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-71.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-71.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-71.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-72.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-72.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-72.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-73.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-73.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-73.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-74.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-74.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-74.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-75.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-75.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-75.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-76.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-76.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-76.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-77.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-77.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-77.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-78.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-78.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-78.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-79.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-79.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-79.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-80.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-80.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-80.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-81.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-81.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-81.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-82.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-82.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-82.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-83.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-83.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-83.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-84.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-84.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-84.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-85.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-85.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-85.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-86.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-86.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-86.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-87.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-87.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-87.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-88.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-88.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-88.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-89.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-89.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-89.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-90.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-90.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-90.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-91.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-91.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-91.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-92.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-92.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-92.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-93.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-93.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-93.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-94.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-94.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-94.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-95.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-95.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-95.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-96.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-96.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-96.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-97.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-97.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-97.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-98.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-98.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-98.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-99.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-99.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-99.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-100.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-100.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-100.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-101.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-101.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-101.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-102.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-102.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-102.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-103.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-103.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-103.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-104.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-104.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-104.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-105.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-105.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-105.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-106.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-106.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-106.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-107.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-107.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-107.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-108.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-108.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-108.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-109.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-109.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-109.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-110.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-110.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-110.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-111.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-111.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-111.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-112.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-112.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-112.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-113.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-113.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-113.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-114.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-114.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-114.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-115.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-115.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-115.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-116.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-116.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-116.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-117.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-117.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-117.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-118.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-118.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-118.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-119.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-119.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-119.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-120.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-120.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-120.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-121.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-121.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-121.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-122.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-122.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-122.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-123.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-123.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-123.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-124.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-124.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-124.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-125.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-125.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-125.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-126.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-126.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-126.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-127.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-127.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-127.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-128.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-128.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-128.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-129.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-129.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-129.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-130.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-130.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-130.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-131.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-131.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-131.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-132.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-132.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-132.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-133.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-133.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-133.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-134.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-134.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-134.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-135.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-135.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-135.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-136.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-136.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-136.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-137.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-137.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-137.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-138.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-138.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-138.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-139.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-139.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-139.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-140.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-140.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-140.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-141.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-141.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-141.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-142.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-142.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-142.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-143.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-143.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-143.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-144.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-144.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-144.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-145.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-145.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-145.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-146.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-146.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-146.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-147.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-147.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-147.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-148.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-148.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-148.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-149.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-149.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-149.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-150.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-150.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-150.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-151.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-151.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-151.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-152.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-152.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-152.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-153.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-153.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-153.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-154.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-154.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-154.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-155.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-155.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-155.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-156.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-156.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-156.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-157.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-157.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-157.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-158.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-158.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-158.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-159.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-159.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-159.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-160.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-160.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-160.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-161.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-161.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-161.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-162.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-162.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-162.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-163.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-163.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-163.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-164.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-164.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-164.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-165.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-165.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-165.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-166.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-166.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-166.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-167.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-167.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-167.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-168.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-168.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-168.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-169.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-169.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-169.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-170.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-170.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-170.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-171.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-171.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-171.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-172.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-172.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-172.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-173.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-173.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-173.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-174.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-174.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-174.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-175.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-175.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-175.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-176.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-176.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-176.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-177.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-177.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-177.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-178.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-178.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-178.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-179.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-179.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-179.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-180.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-180.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-180.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-181.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-181.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-181.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-182.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-182.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-182.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-183.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-183.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-183.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-184.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-184.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-184.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-185.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-185.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-185.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-186.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-186.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-186.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-187.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-187.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-187.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-188.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-188.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-188.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-189.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-189.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-189.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-190.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-190.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-190.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-191.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-191.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-191.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-192.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-192.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-192.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-193.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-193.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-193.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-194.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-194.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-194.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-195.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-195.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-195.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-196.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-196.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-196.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-197.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-197.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-197.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-198.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-198.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-198.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-199.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-199.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-199.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-200.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-200.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-200.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-201.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-201.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-201.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-202.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-202.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-202.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-203.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-203.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-203.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-204.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-204.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-204.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-205.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-205.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-205.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-206.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-206.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-206.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-207.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-207.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-207.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-208.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-208.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-208.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-209.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-209.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-209.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-210.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-210.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-210.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-211.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-211.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-211.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-212.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-212.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-212.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-213.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-213.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-213.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-214.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-214.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-214.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-215.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-215.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-215.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-216.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-216.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-216.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-217.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-217.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-217.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-218.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-218.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-218.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-219.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-219.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-219.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-220.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-220.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-220.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-221.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-221.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-221.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-222.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-222.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-222.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-223.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-223.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-223.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-224.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-224.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-224.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-225.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-225.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-225.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-226.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-226.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-226.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-227.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-227.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-227.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-228.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-228.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-228.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-229.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-229.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-229.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-230.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-230.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-230.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-231.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-231.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-231.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-232.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-232.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-232.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-233.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-233.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-233.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-234.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-234.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-234.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-235.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-235.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-235.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-236.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-236.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-236.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-237.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-237.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-237.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-238.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-238.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-238.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-239.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-239.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-239.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-240.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-240.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-240.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-241.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-241.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-241.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-242.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-242.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-242.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-243.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-243.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-243.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-244.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-244.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-244.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-245.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-245.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-245.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-246.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-246.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-246.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-247.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-247.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-247.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-248.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-248.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-248.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-249.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-249.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-249.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-250.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-250.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-250.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-251.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-251.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-251.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-252.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-252.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-252.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-253.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-253.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-253.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-254.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-254.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-254.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-1-255.ceramic-1.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-1-255.ceramic-1.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-1-255.ceramic-1.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-0.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-0.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-0.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-1.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-1.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-1.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-2.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-2.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-2.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-3.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-3.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-3.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-4.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-4.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-4.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-5.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-5.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-5.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-6.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-6.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-6.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-7.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-7.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-7.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-8.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-8.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-8.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-9.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-9.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-9.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-10.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-10.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-10.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-11.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-11.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-11.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-12.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-12.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-12.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-13.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-13.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-13.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-14.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-14.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-14.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-15.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-15.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-15.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-16.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-16.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-16.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-17.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-17.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-17.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-18.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-18.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-18.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-19.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-19.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-19.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-20.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-20.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-20.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-21.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-21.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-21.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-22.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-22.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-22.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-23.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-23.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-23.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-24.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-24.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-24.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-25.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-25.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-25.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-26.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-26.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-26.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-27.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-27.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-27.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-28.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-28.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-28.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-29.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-29.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-29.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-30.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-30.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-30.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-31.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-31.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-31.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-32.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-32.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-32.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-33.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-33.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-33.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-34.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-34.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-34.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-35.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-35.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-35.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-36.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-36.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-36.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-37.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-37.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-37.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-38.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-38.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-38.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-39.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-39.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-39.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-40.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-40.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-40.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-41.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-41.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-41.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-42.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-42.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-42.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-43.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-43.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-43.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-44.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-44.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-44.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-45.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-45.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-45.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-46.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-46.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-46.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-47.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-47.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-47.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-48.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-48.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-48.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-49.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-49.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-49.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-50.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-50.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-50.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-51.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-51.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-51.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-52.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-52.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-52.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-53.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-53.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-53.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-54.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-54.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-54.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-55.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-55.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-55.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-56.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-56.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-56.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-57.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-57.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-57.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-58.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-58.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-58.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-59.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-59.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-59.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-60.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-60.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-60.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-61.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-61.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-61.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-62.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-62.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-62.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-63.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-63.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-63.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-64.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-64.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-64.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-65.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-65.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-65.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-66.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-66.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-66.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-67.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-67.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-67.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-68.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-68.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-68.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-69.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-69.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-69.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-70.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-70.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-70.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-71.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-71.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-71.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-72.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-72.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-72.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-73.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-73.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-73.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-74.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-74.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-74.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-75.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-75.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-75.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-76.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-76.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-76.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-77.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-77.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-77.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-78.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-78.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-78.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-79.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-79.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-79.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-80.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-80.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-80.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-81.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-81.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-81.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-82.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-82.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-82.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-83.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-83.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-83.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-84.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-84.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-84.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-85.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-85.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-85.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-86.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-86.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-86.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-87.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-87.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-87.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-88.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-88.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-88.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-89.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-89.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-89.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-90.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-90.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-90.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-91.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-91.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-91.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-92.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-92.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-92.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-93.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-93.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-93.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-94.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-94.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-94.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-95.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-95.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-95.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-96.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-96.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-96.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-97.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-97.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-97.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-98.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-98.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-98.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-99.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-99.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-99.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-100.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-100.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-100.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-101.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-101.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-101.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-102.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-102.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-102.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-103.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-103.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-103.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-104.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-104.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-104.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-105.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-105.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-105.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-106.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-106.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-106.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-107.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-107.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-107.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-108.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-108.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-108.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-109.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-109.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-109.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-110.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-110.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-110.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-111.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-111.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-111.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-112.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-112.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-112.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-113.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-113.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-113.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-114.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-114.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-114.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-115.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-115.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-115.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-116.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-116.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-116.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-117.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-117.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-117.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-118.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-118.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-118.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-119.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-119.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-119.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-120.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-120.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-120.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-121.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-121.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-121.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-122.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-122.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-122.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-123.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-123.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-123.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-124.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-124.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-124.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-125.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-125.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-125.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-126.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-126.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-126.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-2-127.ceramic-2.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-2-127.ceramic-2.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-2-127.ceramic-2.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-0.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-0.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-0.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-1.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-1.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-1.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-2.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-2.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-2.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-3.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-3.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-3.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-4.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-4.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-4.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-5.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-5.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-5.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-6.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-6.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-6.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-7.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-7.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-7.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-8.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-8.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-8.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-9.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-9.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-9.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-10.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-10.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-10.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-11.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-11.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-11.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-12.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-12.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-12.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-13.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-13.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-13.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-14.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-14.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-14.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-15.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-15.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-15.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-16.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-16.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-16.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-17.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-17.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-17.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-18.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-18.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-18.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-19.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-19.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-19.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-20.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-20.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-20.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-21.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-21.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-21.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-22.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-22.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-22.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-23.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-23.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-23.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-24.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-24.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-24.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-25.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-25.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-25.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-26.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-26.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-26.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-27.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-27.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-27.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-28.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-28.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-28.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-29.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-29.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-29.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-30.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-30.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-30.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-31.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-31.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-31.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-32.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-32.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-32.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-33.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-33.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-33.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-34.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-34.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-34.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-35.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-35.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-35.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-36.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-36.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-36.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-37.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-37.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-37.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-38.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-38.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-38.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-39.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-39.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-39.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-40.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-40.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-40.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-41.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-41.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-41.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-42.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-42.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-42.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-43.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-43.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-43.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-44.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-44.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-44.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-45.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-45.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-45.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-46.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-46.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-46.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-47.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-47.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-47.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-48.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-48.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-48.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-49.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-49.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-49.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-50.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-50.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-50.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-51.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-51.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-51.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-52.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-52.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-52.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-53.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-53.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-53.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-54.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-54.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-54.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-55.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-55.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-55.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-56.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-56.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-56.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-57.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-57.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-57.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-58.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-58.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-58.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-59.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-59.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-59.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-60.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-60.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-60.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-61.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-61.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-61.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-62.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-62.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-62.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-3-63.ceramic-3.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-3-63.ceramic-3.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-3-63.ceramic-3.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-4-0.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-0.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-0.ceramic-4.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-4-1.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-1.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-1.ceramic-4.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-4-2.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-2.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-2.ceramic-4.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-4-3.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-3.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-3.ceramic-4.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-4-4.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-4.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-4.ceramic-4.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-4-5.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-5.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-5.ceramic-4.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-4-6.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-6.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-6.ceramic-4.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-4-7.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-7.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-7.ceramic-4.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-4-8.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-8.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-8.ceramic-4.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-4-9.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-9.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-9.ceramic-4.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-4-10.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-10.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-10.ceramic-4.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-4-11.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-11.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-11.ceramic-4.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-4-12.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-12.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-12.ceramic-4.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-4-13.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-13.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-13.ceramic-4.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-4-14.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-14.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-14.ceramic-4.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-4-15.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-15.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-15.ceramic-4.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-4-16.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-16.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-16.ceramic-4.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-4-17.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-17.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-17.ceramic-4.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-4-18.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-18.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-18.ceramic-4.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-4-19.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-19.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-19.ceramic-4.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-4-20.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-20.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-20.ceramic-4.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-4-21.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-21.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-21.ceramic-4.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-4-22.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-22.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-22.ceramic-4.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-4-23.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-23.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-23.ceramic-4.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-4-24.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-24.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-24.ceramic-4.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-4-25.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-25.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-25.ceramic-4.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-4-26.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-26.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-26.ceramic-4.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-4-27.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-27.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-27.ceramic-4.keramik-test.svc.cluster.local:7007", + "peerId": "peer_id_http://ceramic-1-0.ceramic-1.keramik-test.svc.cluster.local:5001", + "ipfsRpcAddr": "http://ceramic-1-0.ceramic-1.keramik-test.svc.cluster.local:5001", + "ceramicAddr": "http://ceramic-1-0.ceramic-1.keramik-test.svc.cluster.local:7007", "p2pAddrs": [] } }, { "ceramic": { - "peerId": "peer_id_http://ceramic-4-28.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-28.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-28.ceramic-4.keramik-test.svc.cluster.local:7007", + "peerId": "peer_id_http://ceramic-1-1.ceramic-1.keramik-test.svc.cluster.local:5001", + "ipfsRpcAddr": "http://ceramic-1-1.ceramic-1.keramik-test.svc.cluster.local:5001", + "ceramicAddr": "http://ceramic-1-1.ceramic-1.keramik-test.svc.cluster.local:7007", "p2pAddrs": [] } }, { "ceramic": { - "peerId": "peer_id_http://ceramic-4-29.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-29.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-29.ceramic-4.keramik-test.svc.cluster.local:7007", + "peerId": "peer_id_http://ceramic-2-0.ceramic-2.keramik-test.svc.cluster.local:5001", + "ipfsRpcAddr": "http://ceramic-2-0.ceramic-2.keramik-test.svc.cluster.local:5001", + "ceramicAddr": "http://ceramic-2-0.ceramic-2.keramik-test.svc.cluster.local:7007", "p2pAddrs": [] } }, { "ceramic": { - "peerId": "peer_id_http://ceramic-4-30.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-30.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-30.ceramic-4.keramik-test.svc.cluster.local:7007", + "peerId": "peer_id_http://ceramic-3-0.ceramic-3.keramik-test.svc.cluster.local:5001", + "ipfsRpcAddr": "http://ceramic-3-0.ceramic-3.keramik-test.svc.cluster.local:5001", + "ceramicAddr": "http://ceramic-3-0.ceramic-3.keramik-test.svc.cluster.local:7007", "p2pAddrs": [] } }, { "ceramic": { - "peerId": "peer_id_http://ceramic-4-31.ceramic-4.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-4-31.ceramic-4.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-4-31.ceramic-4.keramik-test.svc.cluster.local:7007", + "peerId": "peer_id_http://ceramic-4-0.ceramic-4.keramik-test.svc.cluster.local:5001", + "ipfsRpcAddr": "http://ceramic-4-0.ceramic-4.keramik-test.svc.cluster.local:5001", + "ceramicAddr": "http://ceramic-4-0.ceramic-4.keramik-test.svc.cluster.local:7007", "p2pAddrs": [] } }, @@ -7963,126 +139,6 @@ Request { "p2pAddrs": [] } }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-5-1.ceramic-5.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-5-1.ceramic-5.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-5-1.ceramic-5.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-5-2.ceramic-5.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-5-2.ceramic-5.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-5-2.ceramic-5.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-5-3.ceramic-5.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-5-3.ceramic-5.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-5-3.ceramic-5.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-5-4.ceramic-5.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-5-4.ceramic-5.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-5-4.ceramic-5.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-5-5.ceramic-5.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-5-5.ceramic-5.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-5-5.ceramic-5.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-5-6.ceramic-5.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-5-6.ceramic-5.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-5-6.ceramic-5.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-5-7.ceramic-5.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-5-7.ceramic-5.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-5-7.ceramic-5.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-5-8.ceramic-5.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-5-8.ceramic-5.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-5-8.ceramic-5.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-5-9.ceramic-5.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-5-9.ceramic-5.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-5-9.ceramic-5.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-5-10.ceramic-5.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-5-10.ceramic-5.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-5-10.ceramic-5.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-5-11.ceramic-5.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-5-11.ceramic-5.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-5-11.ceramic-5.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-5-12.ceramic-5.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-5-12.ceramic-5.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-5-12.ceramic-5.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-5-13.ceramic-5.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-5-13.ceramic-5.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-5-13.ceramic-5.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-5-14.ceramic-5.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-5-14.ceramic-5.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-5-14.ceramic-5.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-5-15.ceramic-5.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-5-15.ceramic-5.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-5-15.ceramic-5.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, { "ceramic": { "peerId": "peer_id_http://ceramic-6-0.ceramic-6.keramik-test.svc.cluster.local:5001", @@ -8091,62 +147,6 @@ Request { "p2pAddrs": [] } }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-6-1.ceramic-6.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-6-1.ceramic-6.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-6-1.ceramic-6.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-6-2.ceramic-6.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-6-2.ceramic-6.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-6-2.ceramic-6.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-6-3.ceramic-6.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-6-3.ceramic-6.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-6-3.ceramic-6.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-6-4.ceramic-6.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-6-4.ceramic-6.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-6-4.ceramic-6.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-6-5.ceramic-6.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-6-5.ceramic-6.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-6-5.ceramic-6.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-6-6.ceramic-6.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-6-6.ceramic-6.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-6-6.ceramic-6.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-6-7.ceramic-6.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-6-7.ceramic-6.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-6-7.ceramic-6.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, { "ceramic": { "peerId": "peer_id_http://ceramic-7-0.ceramic-7.keramik-test.svc.cluster.local:5001", @@ -8155,30 +155,6 @@ Request { "p2pAddrs": [] } }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-7-1.ceramic-7.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-7-1.ceramic-7.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-7-1.ceramic-7.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-7-2.ceramic-7.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-7-2.ceramic-7.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-7-2.ceramic-7.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-7-3.ceramic-7.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-7-3.ceramic-7.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-7-3.ceramic-7.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, { "ceramic": { "peerId": "peer_id_http://ceramic-8-0.ceramic-8.keramik-test.svc.cluster.local:5001", @@ -8187,14 +163,6 @@ Request { "p2pAddrs": [] } }, - { - "ceramic": { - "peerId": "peer_id_http://ceramic-8-1.ceramic-8.keramik-test.svc.cluster.local:5001", - "ipfsRpcAddr": "http://ceramic-8-1.ceramic-8.keramik-test.svc.cluster.local:5001", - "ceramicAddr": "http://ceramic-8-1.ceramic-8.keramik-test.svc.cluster.local:7007", - "p2pAddrs": [] - } - }, { "ceramic": { "peerId": "peer_id_http://ceramic-9-0.ceramic-9.keramik-test.svc.cluster.local:5001", diff --git a/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-0 b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-0 new file mode 100644 index 00000000..9ed905e5 --- /dev/null +++ b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-0 @@ -0,0 +1,6 @@ +Request { + method: "GET", + uri: "/api/v1/namespaces/keramik-test/pods/ceramic-0-0/status", + headers: {}, + body: , +} diff --git a/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-1 b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-1 new file mode 100644 index 00000000..a6d0ef51 --- /dev/null +++ b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-1 @@ -0,0 +1,6 @@ +Request { + method: "GET", + uri: "/api/v1/namespaces/keramik-test/pods/ceramic-0-1/status", + headers: {}, + body: , +} diff --git a/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-2 b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-2 new file mode 100644 index 00000000..9850e3a4 --- /dev/null +++ b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-2 @@ -0,0 +1,6 @@ +Request { + method: "GET", + uri: "/api/v1/namespaces/keramik-test/pods/ceramic-0-2/status", + headers: {}, + body: , +} diff --git a/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-3 b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-3 new file mode 100644 index 00000000..cf75ab1c --- /dev/null +++ b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-3 @@ -0,0 +1,6 @@ +Request { + method: "GET", + uri: "/api/v1/namespaces/keramik-test/pods/ceramic-0-3/status", + headers: {}, + body: , +} diff --git a/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-4 b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-4 new file mode 100644 index 00000000..121ccc24 --- /dev/null +++ b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-4 @@ -0,0 +1,6 @@ +Request { + method: "GET", + uri: "/api/v1/namespaces/keramik-test/pods/ceramic-0-4/status", + headers: {}, + body: , +} diff --git a/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-5 b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-5 new file mode 100644 index 00000000..ee2d5c3e --- /dev/null +++ b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-5 @@ -0,0 +1,6 @@ +Request { + method: "GET", + uri: "/api/v1/namespaces/keramik-test/pods/ceramic-0-5/status", + headers: {}, + body: , +} diff --git a/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-6 b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-6 new file mode 100644 index 00000000..9e002370 --- /dev/null +++ b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-6 @@ -0,0 +1,6 @@ +Request { + method: "GET", + uri: "/api/v1/namespaces/keramik-test/pods/ceramic-0-6/status", + headers: {}, + body: , +} diff --git a/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-7 b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-7 new file mode 100644 index 00000000..4e5bf0d6 --- /dev/null +++ b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-7 @@ -0,0 +1,6 @@ +Request { + method: "GET", + uri: "/api/v1/namespaces/keramik-test/pods/ceramic-0-7/status", + headers: {}, + body: , +} diff --git a/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-8 b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-8 new file mode 100644 index 00000000..cf0e120a --- /dev/null +++ b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-8 @@ -0,0 +1,6 @@ +Request { + method: "GET", + uri: "/api/v1/namespaces/keramik-test/pods/ceramic-0-8/status", + headers: {}, + body: , +} diff --git a/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-9 b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-9 new file mode 100644 index 00000000..c0d36547 --- /dev/null +++ b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-0-9 @@ -0,0 +1,6 @@ +Request { + method: "GET", + uri: "/api/v1/namespaces/keramik-test/pods/ceramic-0-9/status", + headers: {}, + body: , +} diff --git a/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-1-0 b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-1-0 new file mode 100644 index 00000000..dfa75dac --- /dev/null +++ b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-1-0 @@ -0,0 +1,6 @@ +Request { + method: "GET", + uri: "/api/v1/namespaces/keramik-test/pods/ceramic-1-0/status", + headers: {}, + body: , +} diff --git a/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-1-1 b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-1-1 new file mode 100644 index 00000000..d4f81c24 --- /dev/null +++ b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-1-1 @@ -0,0 +1,6 @@ +Request { + method: "GET", + uri: "/api/v1/namespaces/keramik-test/pods/ceramic-1-1/status", + headers: {}, + body: , +} diff --git a/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-2-0 b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-2-0 new file mode 100644 index 00000000..b7920dae --- /dev/null +++ b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-2-0 @@ -0,0 +1,6 @@ +Request { + method: "GET", + uri: "/api/v1/namespaces/keramik-test/pods/ceramic-2-0/status", + headers: {}, + body: , +} diff --git a/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-3-0 b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-3-0 new file mode 100644 index 00000000..55c2727a --- /dev/null +++ b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-3-0 @@ -0,0 +1,6 @@ +Request { + method: "GET", + uri: "/api/v1/namespaces/keramik-test/pods/ceramic-3-0/status", + headers: {}, + body: , +} diff --git a/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-4-0 b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-4-0 new file mode 100644 index 00000000..72ea6b24 --- /dev/null +++ b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-4-0 @@ -0,0 +1,6 @@ +Request { + method: "GET", + uri: "/api/v1/namespaces/keramik-test/pods/ceramic-4-0/status", + headers: {}, + body: , +} diff --git a/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-5-0 b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-5-0 new file mode 100644 index 00000000..860bae9d --- /dev/null +++ b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-5-0 @@ -0,0 +1,6 @@ +Request { + method: "GET", + uri: "/api/v1/namespaces/keramik-test/pods/ceramic-5-0/status", + headers: {}, + body: , +} diff --git a/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-6-0 b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-6-0 new file mode 100644 index 00000000..8cb664e6 --- /dev/null +++ b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-6-0 @@ -0,0 +1,6 @@ +Request { + method: "GET", + uri: "/api/v1/namespaces/keramik-test/pods/ceramic-6-0/status", + headers: {}, + body: , +} diff --git a/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-7-0 b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-7-0 new file mode 100644 index 00000000..3d7c22fd --- /dev/null +++ b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-7-0 @@ -0,0 +1,6 @@ +Request { + method: "GET", + uri: "/api/v1/namespaces/keramik-test/pods/ceramic-7-0/status", + headers: {}, + body: , +} diff --git a/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-8-0 b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-8-0 new file mode 100644 index 00000000..9dc651a4 --- /dev/null +++ b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-8-0 @@ -0,0 +1,6 @@ +Request { + method: "GET", + uri: "/api/v1/namespaces/keramik-test/pods/ceramic-8-0/status", + headers: {}, + body: , +} diff --git a/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-9-0 b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-9-0 new file mode 100644 index 00000000..922e9f17 --- /dev/null +++ b/operator/src/network/testdata/multiple_weighted_ceramics/ceramic_pod_status-9-0 @@ -0,0 +1,6 @@ +Request { + method: "GET", + uri: "/api/v1/namespaces/keramik-test/pods/ceramic-9-0/status", + headers: {}, + body: , +} diff --git a/operator/src/utils/mod.rs b/operator/src/utils/mod.rs index b988ee11..f2992998 100644 --- a/operator/src/utils/mod.rs +++ b/operator/src/utils/mod.rs @@ -273,8 +273,7 @@ pub fn generate_random_secret( cx: Arc>, len: usize, ) -> String { - let mut secret_bytes: Vec = Vec::new(); - secret_bytes.resize(len, 0); + let mut secret_bytes: Vec = vec![0; len]; let mut rng = cx.rng.lock().expect("should be able to acquire lock"); rng.fill_bytes(&mut secret_bytes); hex::encode(secret_bytes)